Skip to content

Commit

Permalink
Update services based on release-2024-11-06 of AWS Go SDK
Browse files Browse the repository at this point in the history
  • Loading branch information
web-flow committed Nov 7, 2024
1 parent 10417d3 commit a8bdc1a
Show file tree
Hide file tree
Showing 6 changed files with 708 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .latest-tag-aws-sdk-go
Original file line number Diff line number Diff line change
@@ -1 +1 @@
release-2024-11-01
release-2024-11-06
13 changes: 13 additions & 0 deletions src/aws_codebuild.erl
Original file line number Diff line number Diff line change
Expand Up @@ -1056,6 +1056,7 @@
%% update_fleet_input() :: #{
%% <<"arn">> := string(),
%% <<"baseCapacity">> => integer(),
%% <<"computeConfiguration">> => compute_configuration(),
%% <<"computeType">> => list(any()),
%% <<"environmentType">> => list(any()),
%% <<"fleetServiceRole">> => string(),
Expand All @@ -1071,6 +1072,7 @@
%% Example:
%% create_fleet_input() :: #{
%% <<"baseCapacity">> := integer(),
%% <<"computeConfiguration">> => compute_configuration(),
%% <<"computeType">> := list(any()),
%% <<"environmentType">> := list(any()),
%% <<"fleetServiceRole">> => string(),
Expand Down Expand Up @@ -1531,6 +1533,7 @@
%% fleet() :: #{
%% <<"arn">> => string(),
%% <<"baseCapacity">> => integer(),
%% <<"computeConfiguration">> => compute_configuration(),
%% <<"computeType">> => list(any()),
%% <<"created">> => non_neg_integer(),
%% <<"environmentType">> => list(any()),
Expand Down Expand Up @@ -1572,6 +1575,7 @@
%% Example:
%% project_environment() :: #{
%% <<"certificate">> => string(),
%% <<"computeConfiguration">> => compute_configuration(),
%% <<"computeType">> => list(any()),
%% <<"environmentVariables">> => list(environment_variable()()),
%% <<"fleet">> => project_fleet(),
Expand All @@ -1596,6 +1600,15 @@
%% }
-type batch_get_report_groups_input() :: #{binary() => any()}.

%% Example:
%% compute_configuration() :: #{
%% <<"disk">> => float(),
%% <<"machineType">> => list(any()),
%% <<"memory">> => float(),
%% <<"vCpu">> => float()
%% }
-type compute_configuration() :: #{binary() => any()}.

%% Example:
%% report_group() :: #{
%% <<"arn">> => string(),
Expand Down
14 changes: 14 additions & 0 deletions src/aws_guardduty.erl
Original file line number Diff line number Diff line change
Expand Up @@ -781,6 +781,19 @@
-type lambda_details() :: #{binary() => any()}.


%% Example:
%% rds_limitless_db_details() :: #{
%% <<"DbClusterIdentifier">> => string(),
%% <<"DbShardGroupArn">> => string(),
%% <<"DbShardGroupIdentifier">> => string(),
%% <<"DbShardGroupResourceId">> => string(),
%% <<"Engine">> => string(),
%% <<"EngineVersion">> => string(),
%% <<"Tags">> => list(tag()())
%% }
-type rds_limitless_db_details() :: #{binary() => any()}.


%% Example:
%% describe_publishing_destination_response() :: #{
%% <<"DestinationId">> => string(),
Expand Down Expand Up @@ -3126,6 +3139,7 @@
%% <<"LambdaDetails">> => lambda_details(),
%% <<"RdsDbInstanceDetails">> => rds_db_instance_details(),
%% <<"RdsDbUserDetails">> => rds_db_user_details(),
%% <<"RdsLimitlessDbDetails">> => rds_limitless_db_details(),
%% <<"ResourceType">> => string(),
%% <<"S3BucketDetails">> => list(s3_bucket_detail()())
%% }
Expand Down
Loading

0 comments on commit a8bdc1a

Please sign in to comment.