Skip to content

Commit 7e24690

Browse files
committed
Update services based on release-2026-04-16 of AWS Go SDK
Reference: https://github.com/aws/aws-sdk-go-v2/releases/tag/release-2026-04-16
1 parent c5d2d55 commit 7e24690

11 files changed

+414
-73
lines changed

.latest-tag-aws-sdk-go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
release-2026-04-13
1+
release-2026-04-16

src/aws_appstream.erl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -441,6 +441,7 @@
441441
%% <<"AccessEndpoints">> => list(access_endpoint()),
442442
%% <<"ApplicationSettings">> => application_settings(),
443443
%% <<"AttributesToDelete">> => list(list(any())()),
444+
%% <<"ContentRedirection">> => content_redirection(),
444445
%% <<"DeleteStorageConnectors">> => boolean(),
445446
%% <<"Description">> => string(),
446447
%% <<"DisplayName">> => string(),

src/aws_auto_scaling.erl

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -996,6 +996,7 @@
996996
%% auto_scaling_instance_details() :: #{
997997
%% <<"AutoScalingGroupName">> => string(),
998998
%% <<"AvailabilityZone">> => string(),
999+
%% <<"AvailabilityZoneId">> => string(),
9991000
%% <<"HealthStatus">> => string(),
10001001
%% <<"ImageId">> => string(),
10011002
%% <<"InstanceId">> => string(),
@@ -1174,6 +1175,7 @@
11741175
%% <<"LoadBalancerNames">> => list(string()),
11751176
%% <<"Tags">> => list(tag()),
11761177
%% <<"CapacityRebalance">> => boolean(),
1178+
%% <<"AvailabilityZoneIds">> => list(string()),
11771179
%% <<"TrafficSources">> => list(traffic_source_identifier()),
11781180
%% <<"AvailabilityZoneImpairmentPolicy">> => availability_zone_impairment_policy(),
11791181
%% <<"InstanceMaintenancePolicy">> => instance_maintenance_policy(),
@@ -1324,6 +1326,7 @@
13241326
%% Example:
13251327
%% instance() :: #{
13261328
%% <<"AvailabilityZone">> => string(),
1329+
%% <<"AvailabilityZoneId">> => string(),
13271330
%% <<"HealthStatus">> => string(),
13281331
%% <<"ImageId">> => string(),
13291332
%% <<"InstanceId">> => string(),
@@ -1461,6 +1464,7 @@
14611464
%% <<"LoadBalancerNames">> => list(string()),
14621465
%% <<"Tags">> => list(tag_description()),
14631466
%% <<"CapacityRebalance">> => boolean(),
1467+
%% <<"AvailabilityZoneIds">> => list(string()),
14641468
%% <<"TrafficSources">> => list(traffic_source_identifier()),
14651469
%% <<"AvailabilityZoneImpairmentPolicy">> => availability_zone_impairment_policy(),
14661470
%% <<"InstanceMaintenancePolicy">> => instance_maintenance_policy(),
@@ -1545,6 +1549,7 @@
15451549
%% update_auto_scaling_group_type() :: #{
15461550
%% <<"AutoScalingGroupName">> := string(),
15471551
%% <<"AvailabilityZoneDistribution">> => availability_zone_distribution(),
1552+
%% <<"AvailabilityZoneIds">> => list(string()),
15481553
%% <<"AvailabilityZoneImpairmentPolicy">> => availability_zone_impairment_policy(),
15491554
%% <<"AvailabilityZones">> => list(string()),
15501555
%% <<"CapacityRebalance">> => boolean(),

src/aws_bedrock_agentcore.erl

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -692,7 +692,8 @@
692692
%% list_memory_records_input() :: #{
693693
%% <<"maxResults">> => integer(),
694694
%% <<"memoryStrategyId">> => string(),
695-
%% <<"namespace">> := string(),
695+
%% <<"namespace">> => string(),
696+
%% <<"namespacePath">> => string(),
696697
%% <<"nextToken">> => string()
697698
%% }
698699
-type list_memory_records_input() :: #{binary() => any()}.
@@ -900,7 +901,8 @@
900901
%% Example:
901902
%% retrieve_memory_records_input() :: #{
902903
%% <<"maxResults">> => integer(),
903-
%% <<"namespace">> := string(),
904+
%% <<"namespace">> => string(),
905+
%% <<"namespacePath">> => string(),
904906
%% <<"nextToken">> => string(),
905907
%% <<"searchCriteria">> := search_criteria()
906908
%% }

src/aws_cognito_identity_provider.erl

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -797,6 +797,7 @@
797797

798798
%% Example:
799799
%% web_authn_configuration_type() :: #{
800+
%% <<"FactorConfiguration">> => list(any()),
800801
%% <<"RelyingPartyId">> => string(),
801802
%% <<"UserVerification">> => list(any())
802803
%% }
@@ -2188,6 +2189,12 @@
21882189
%% }
21892190
-type describe_user_pool_request() :: #{binary() => any()}.
21902191

2192+
%% Example:
2193+
%% web_authn_mfa_settings_type() :: #{
2194+
%% <<"Enabled">> => boolean()
2195+
%% }
2196+
-type web_authn_mfa_settings_type() :: #{binary() => any()}.
2197+
21912198
%% Example:
21922199
%% delete_user_pool_domain_request() :: #{
21932200
%% <<"Domain">> := string(),
@@ -3047,7 +3054,8 @@
30473054
%% <<"SMSMfaSettings">> => sms_mfa_settings_type(),
30483055
%% <<"SoftwareTokenMfaSettings">> => software_token_mfa_settings_type(),
30493056
%% <<"UserPoolId">> := string(),
3050-
%% <<"Username">> := string()
3057+
%% <<"Username">> := string(),
3058+
%% <<"WebAuthnMfaSettings">> => web_authn_mfa_settings_type()
30513059
%% }
30523060
-type admin_set_user_mfa_preference_request() :: #{binary() => any()}.
30533061

@@ -3180,7 +3188,8 @@
31803188
%% <<"AccessToken">> := string(),
31813189
%% <<"EmailMfaSettings">> => email_mfa_settings_type(),
31823190
%% <<"SMSMfaSettings">> => sms_mfa_settings_type(),
3183-
%% <<"SoftwareTokenMfaSettings">> => software_token_mfa_settings_type()
3191+
%% <<"SoftwareTokenMfaSettings">> => software_token_mfa_settings_type(),
3192+
%% <<"WebAuthnMfaSettings">> => web_authn_mfa_settings_type()
31843193
%% }
31853194
-type set_user_mfa_preference_request() :: #{binary() => any()}.
31863195

src/aws_connectcases.erl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1636,6 +1636,7 @@
16361636
validation_exception() |
16371637
access_denied_exception() |
16381638
internal_server_exception() |
1639+
service_quota_exceeded_exception() |
16391640
resource_not_found_exception().
16401641

16411642
-type update_template_errors() ::

0 commit comments

Comments
 (0)