Skip to content

Commit fe33f4a

Browse files
committed
Update services based on release-2026-03-26 of AWS Go SDK
Reference: https://github.com/aws/aws-sdk-go-v2/releases/tag/release-2026-03-26
1 parent c16d778 commit fe33f4a

File tree

6 files changed

+55
-3
lines changed

6 files changed

+55
-3
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-03-25
1+
release-2026-03-26

src/aws_bcm_data_exports.erl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -198,6 +198,7 @@
198198
%% Example:
199199
%% s3_destination() :: #{
200200
%% <<"S3Bucket">> => string(),
201+
%% <<"S3BucketOwner">> => string(),
201202
%% <<"S3OutputConfigurations">> => s3_output_configurations(),
202203
%% <<"S3Prefix">> => string(),
203204
%% <<"S3Region">> => string()

src/aws_cloudwatch_logs.erl

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -646,6 +646,14 @@
646646
%% }
647647
-type delete_scheduled_query_request() :: #{binary() => any()}.
648648

649+
%% Example:
650+
%% query_parameter() :: #{
651+
%% <<"defaultValue">> => string(),
652+
%% <<"description">> => string(),
653+
%% <<"name">> => string()
654+
%% }
655+
-type query_parameter() :: #{binary() => any()}.
656+
649657
%% Example:
650658
%% put_log_events_request() :: #{
651659
%% <<"entity">> => entity(),
@@ -1905,6 +1913,7 @@
19051913
%% <<"clientToken">> => string(),
19061914
%% <<"logGroupNames">> => list(string()),
19071915
%% <<"name">> := string(),
1916+
%% <<"parameters">> => list(query_parameter()),
19081917
%% <<"queryDefinitionId">> => string(),
19091918
%% <<"queryLanguage">> => list(any()),
19101919
%% <<"queryString">> := string()
@@ -2349,6 +2358,8 @@
23492358
%% Example:
23502359
%% s3_configuration() :: #{
23512360
%% <<"destinationIdentifier">> => string(),
2361+
%% <<"kmsKeyId">> => string(),
2362+
%% <<"ownerAccountId">> => string(),
23522363
%% <<"roleArn">> => string()
23532364
%% }
23542365
-type s3_configuration() :: #{binary() => any()}.
@@ -2595,6 +2606,7 @@
25952606
%% <<"lastModified">> => float(),
25962607
%% <<"logGroupNames">> => list(string()),
25972608
%% <<"name">> => string(),
2609+
%% <<"parameters">> => list(query_parameter()),
25982610
%% <<"queryDefinitionId">> => string(),
25992611
%% <<"queryLanguage">> => list(any()),
26002612
%% <<"queryString">> => string()
@@ -7377,7 +7389,7 @@ start_live_tail(Client, Input, Options)
73777389
%% For a cross-account `StartQuery'
73787390
%% operation, the query definition must be defined in the monitoring account.
73797391
%%
7380-
%% You can have up to 30 concurrent CloudWatch Logs insights queries,
7392+
%% You can have up to 100 concurrent CloudWatch Logs insights queries,
73817393
%% including queries
73827394
%% that have been added to dashboards.
73837395
-spec start_query(aws_client:aws_client(), start_query_request()) ->

src/aws_emr.erl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2006,6 +2006,7 @@
20062006
%% <<"AdditionalInfo">> => string(),
20072007
%% <<"Instances">> := job_flow_instances_config(),
20082008
%% <<"AutoTerminationPolicy">> => auto_termination_policy(),
2009+
%% <<"StepExecutionRoleArn">> => string(),
20092010
%% <<"Configurations">> => list(configuration()),
20102011
%% <<"AmiVersion">> => string(),
20112012
%% <<"JobFlowRole">> => string(),

src/aws_sagemaker.erl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1051,7 +1051,7 @@
10511051
%% <<"EndpointName">> := string(),
10521052
%% <<"InferenceComponentName">> := string(),
10531053
%% <<"RuntimeConfig">> => inference_component_runtime_config(),
1054-
%% <<"Specification">> := inference_component_specification(),
1054+
%% <<"Specification">> => inference_component_specification(),
10551055
%% <<"Tags">> => list(tag()),
10561056
%% <<"VariantName">> => string()
10571057
%% }

src/aws_timestream_influxdb.erl

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,7 @@
140140
%% <<"dbParameterGroupIdentifier">> => string(),
141141
%% <<"failoverMode">> => list(any()),
142142
%% <<"logDeliveryConfiguration">> => log_delivery_configuration(),
143+
%% <<"maintenanceSchedule">> => maintenance_schedule(),
143144
%% <<"port">> => integer()
144145
%% }
145146
-type update_db_cluster_input() :: #{binary() => any()}.
@@ -159,9 +160,12 @@
159160
%% <<"influxAuthParametersSecretArn">> => [string()],
160161
%% <<"instanceMode">> => list(any()),
161162
%% <<"instanceModes">> => list(list(any())()),
163+
%% <<"lastMaintenanceTime">> => [non_neg_integer()],
162164
%% <<"logDeliveryConfiguration">> => log_delivery_configuration(),
165+
%% <<"maintenanceSchedule">> => maintenance_schedule(),
163166
%% <<"name">> => string(),
164167
%% <<"networkType">> => list(any()),
168+
%% <<"nextMaintenanceTime">> => [non_neg_integer()],
165169
%% <<"port">> => integer(),
166170
%% <<"publiclyAccessible">> => [boolean()],
167171
%% <<"secondaryAvailabilityZone">> => [string()],
@@ -193,6 +197,14 @@
193197
%% }
194198
-type untag_resource_request() :: #{binary() => any()}.
195199

200+
%% Example:
201+
%% cluster_configuration() :: #{
202+
%% <<"dedicatedCompactor">> => [boolean()],
203+
%% <<"ingestQueryInstances">> => [integer()],
204+
%% <<"queryOnlyInstances">> => [integer()]
205+
%% }
206+
-type cluster_configuration() :: #{binary() => any()}.
207+
196208
%% Example:
197209
%% delete_db_instance_input() :: #{
198210
%% <<"identifier">> := string()
@@ -260,9 +272,12 @@
260272
%% <<"influxAuthParametersSecretArn">> => [string()],
261273
%% <<"instanceMode">> => list(any()),
262274
%% <<"instanceModes">> => list(list(any())()),
275+
%% <<"lastMaintenanceTime">> => [non_neg_integer()],
263276
%% <<"logDeliveryConfiguration">> => log_delivery_configuration(),
277+
%% <<"maintenanceSchedule">> => maintenance_schedule(),
264278
%% <<"name">> => string(),
265279
%% <<"networkType">> => list(any()),
280+
%% <<"nextMaintenanceTime">> => [non_neg_integer()],
266281
%% <<"port">> => integer(),
267282
%% <<"publiclyAccessible">> => [boolean()],
268283
%% <<"secondaryAvailabilityZone">> => [string()],
@@ -314,6 +329,7 @@
314329
%% <<"deploymentType">> => list(any()),
315330
%% <<"failoverMode">> => list(any()),
316331
%% <<"logDeliveryConfiguration">> => log_delivery_configuration(),
332+
%% <<"maintenanceSchedule">> => maintenance_schedule(),
317333
%% <<"name">> := string(),
318334
%% <<"networkType">> => list(any()),
319335
%% <<"organization">> => string(),
@@ -359,6 +375,7 @@
359375
%% <<"deploymentType">> => list(any()),
360376
%% <<"identifier">> := string(),
361377
%% <<"logDeliveryConfiguration">> => log_delivery_configuration(),
378+
%% <<"maintenanceSchedule">> => maintenance_schedule(),
362379
%% <<"port">> => integer()
363380
%% }
364381
-type update_db_instance_input() :: #{binary() => any()}.
@@ -380,6 +397,7 @@
380397
%% get_db_cluster_output() :: #{
381398
%% <<"allocatedStorage">> => integer(),
382399
%% <<"arn">> => string(),
400+
%% <<"clusterConfiguration">> => cluster_configuration(),
383401
%% <<"dbInstanceType">> => list(any()),
384402
%% <<"dbParameterGroupIdentifier">> => string(),
385403
%% <<"dbStorageType">> => list(any()),
@@ -389,9 +407,12 @@
389407
%% <<"failoverMode">> => list(any()),
390408
%% <<"id">> => string(),
391409
%% <<"influxAuthParametersSecretArn">> => [string()],
410+
%% <<"lastMaintenanceTime">> => [non_neg_integer()],
392411
%% <<"logDeliveryConfiguration">> => log_delivery_configuration(),
412+
%% <<"maintenanceSchedule">> => maintenance_schedule(),
393413
%% <<"name">> => string(),
394414
%% <<"networkType">> => list(any()),
415+
%% <<"nextMaintenanceTime">> => [non_neg_integer()],
395416
%% <<"port">> => integer(),
396417
%% <<"publiclyAccessible">> => [boolean()],
397418
%% <<"readerEndpoint">> => [string()],
@@ -435,9 +456,12 @@
435456
%% <<"influxAuthParametersSecretArn">> => [string()],
436457
%% <<"instanceMode">> => list(any()),
437458
%% <<"instanceModes">> => list(list(any())()),
459+
%% <<"lastMaintenanceTime">> => [non_neg_integer()],
438460
%% <<"logDeliveryConfiguration">> => log_delivery_configuration(),
461+
%% <<"maintenanceSchedule">> => maintenance_schedule(),
439462
%% <<"name">> => string(),
440463
%% <<"networkType">> => list(any()),
464+
%% <<"nextMaintenanceTime">> => [non_neg_integer()],
441465
%% <<"port">> => integer(),
442466
%% <<"publiclyAccessible">> => [boolean()],
443467
%% <<"secondaryAvailabilityZone">> => [string()],
@@ -527,9 +551,12 @@
527551
%% <<"influxAuthParametersSecretArn">> => [string()],
528552
%% <<"instanceMode">> => list(any()),
529553
%% <<"instanceModes">> => list(list(any())()),
554+
%% <<"lastMaintenanceTime">> => [non_neg_integer()],
530555
%% <<"logDeliveryConfiguration">> => log_delivery_configuration(),
556+
%% <<"maintenanceSchedule">> => maintenance_schedule(),
531557
%% <<"name">> => string(),
532558
%% <<"networkType">> => list(any()),
559+
%% <<"nextMaintenanceTime">> => [non_neg_integer()],
533560
%% <<"port">> => integer(),
534561
%% <<"publiclyAccessible">> => [boolean()],
535562
%% <<"secondaryAvailabilityZone">> => [string()],
@@ -554,9 +581,12 @@
554581
%% <<"influxAuthParametersSecretArn">> => [string()],
555582
%% <<"instanceMode">> => list(any()),
556583
%% <<"instanceModes">> => list(list(any())()),
584+
%% <<"lastMaintenanceTime">> => [non_neg_integer()],
557585
%% <<"logDeliveryConfiguration">> => log_delivery_configuration(),
586+
%% <<"maintenanceSchedule">> => maintenance_schedule(),
558587
%% <<"name">> => string(),
559588
%% <<"networkType">> => list(any()),
589+
%% <<"nextMaintenanceTime">> => [non_neg_integer()],
560590
%% <<"port">> => integer(),
561591
%% <<"publiclyAccessible">> => [boolean()],
562592
%% <<"secondaryAvailabilityZone">> => [string()],
@@ -611,6 +641,13 @@
611641
%% }
612642
-type throttling_exception() :: #{binary() => any()}.
613643

644+
%% Example:
645+
%% maintenance_schedule() :: #{
646+
%% <<"preferredMaintenanceWindow">> => string(),
647+
%% <<"timezone">> => string()
648+
%% }
649+
-type maintenance_schedule() :: #{binary() => any()}.
650+
614651
%% Example:
615652
%% s3_configuration() :: #{
616653
%% <<"bucketName">> => [string()],
@@ -718,6 +755,7 @@
718755
%% <<"dbStorageType">> => list(any()),
719756
%% <<"deploymentType">> => list(any()),
720757
%% <<"logDeliveryConfiguration">> => log_delivery_configuration(),
758+
%% <<"maintenanceSchedule">> => maintenance_schedule(),
721759
%% <<"name">> := string(),
722760
%% <<"networkType">> => list(any()),
723761
%% <<"organization">> => string(),

0 commit comments

Comments
 (0)