Skip to content

Commit

Permalink
Update services based on v1.50.28 of AWS Go SDK
Browse files Browse the repository at this point in the history
  • Loading branch information
web-flow committed Feb 29, 2024
1 parent 642ce2b commit aa5bbcc
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .latest-tag-aws-sdk-go
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v1.50.27
v1.50.28
11 changes: 11 additions & 0 deletions src/aws_cost_explorer.erl
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@
get_anomaly_monitors/3,
get_anomaly_subscriptions/2,
get_anomaly_subscriptions/3,
get_approximate_usage_records/2,
get_approximate_usage_records/3,
get_cost_and_usage/2,
get_cost_and_usage/3,
get_cost_and_usage_with_resources/2,
Expand Down Expand Up @@ -207,6 +209,15 @@ get_anomaly_subscriptions(Client, Input, Options)
when is_map(Client), is_map(Input), is_list(Options) ->
request(Client, <<"GetAnomalySubscriptions">>, Input, Options).

%% @doc Retrieves estimated usage records for hourly granularity or
%% resource-level data at daily granularity.
get_approximate_usage_records(Client, Input)
when is_map(Client), is_map(Input) ->
get_approximate_usage_records(Client, Input, []).
get_approximate_usage_records(Client, Input, Options)
when is_map(Client), is_map(Input), is_list(Options) ->
request(Client, <<"GetApproximateUsageRecords">>, Input, Options).

%% @doc Retrieves cost and usage metrics for your account.
%%
%% You can specify which cost and usage-related metric that you want the
Expand Down

0 comments on commit aa5bbcc

Please sign in to comment.