Skip to content
This repository was archived by the owner on Jul 31, 2025. It is now read-only.

Commit 8c9d152

Browse files
Release v1.51.2 (2024-03-18) (#5200)
Release v1.51.2 (2024-03-18) === ### Service Client Updates * `service/cloudformation`: Updates service API and documentation * This release supports for a new API ListStackSetAutoDeploymentTargets, which provider auto-deployment configuration as a describable resource. Customers can now view the specific combinations of regions and OUs that are being auto-deployed. * `service/kms`: Updates service API and documentation * Adds the ability to use the default policy name by omitting the policyName parameter in calls to PutKeyPolicy and GetKeyPolicy * `service/mediatailor`: Updates service API and documentation * `service/rds`: Updates service API, documentation, waiters, paginators, and examples * This release launches the ModifyIntegration API and support for data filtering for zero-ETL Integrations. * `service/s3`: Updates service API and examples * Fix two issues with response root node names. * `service/timestream-query`: Updates service documentation
1 parent fdce8a5 commit 8c9d152

File tree

28 files changed

+2296
-291
lines changed

28 files changed

+2296
-291
lines changed

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
Release v1.51.2 (2024-03-18)
2+
===
3+
4+
### Service Client Updates
5+
* `service/cloudformation`: Updates service API and documentation
6+
* This release supports for a new API ListStackSetAutoDeploymentTargets, which provider auto-deployment configuration as a describable resource. Customers can now view the specific combinations of regions and OUs that are being auto-deployed.
7+
* `service/kms`: Updates service API and documentation
8+
* Adds the ability to use the default policy name by omitting the policyName parameter in calls to PutKeyPolicy and GetKeyPolicy
9+
* `service/mediatailor`: Updates service API and documentation
10+
* `service/rds`: Updates service API, documentation, waiters, paginators, and examples
11+
* This release launches the ModifyIntegration API and support for data filtering for zero-ETL Integrations.
12+
* `service/s3`: Updates service API and examples
13+
* Fix two issues with response root node names.
14+
* `service/timestream-query`: Updates service documentation
15+
116
Release v1.51.1 (2024-03-15)
217
===
318

aws/endpoints/defaults.go

Lines changed: 59 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

aws/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ package aws
55
const SDKName = "aws-sdk-go"
66

77
// SDKVersion is the version of this SDK
8-
const SDKVersion = "1.51.1"
8+
const SDKVersion = "1.51.2"

models/apis/cloudformation/2010-05-15/api-2.json

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -839,6 +839,21 @@
839839
"resultWrapper":"ListStackResourcesResult"
840840
}
841841
},
842+
"ListStackSetAutoDeploymentTargets":{
843+
"name":"ListStackSetAutoDeploymentTargets",
844+
"http":{
845+
"method":"POST",
846+
"requestUri":"/"
847+
},
848+
"input":{"shape":"ListStackSetAutoDeploymentTargetsInput"},
849+
"output":{
850+
"shape":"ListStackSetAutoDeploymentTargetsOutput",
851+
"resultWrapper":"ListStackSetAutoDeploymentTargetsResult"
852+
},
853+
"errors":[
854+
{"shape":"StackSetNotFoundException"}
855+
]
856+
},
842857
"ListStackSetOperationResults":{
843858
"name":"ListStackSetOperationResults",
844859
"http":{
@@ -2918,6 +2933,23 @@
29182933
"NextToken":{"shape":"NextToken"}
29192934
}
29202935
},
2936+
"ListStackSetAutoDeploymentTargetsInput":{
2937+
"type":"structure",
2938+
"required":["StackSetName"],
2939+
"members":{
2940+
"StackSetName":{"shape":"StackSetNameOrId"},
2941+
"NextToken":{"shape":"NextToken"},
2942+
"MaxResults":{"shape":"MaxResults"},
2943+
"CallAs":{"shape":"CallAs"}
2944+
}
2945+
},
2946+
"ListStackSetAutoDeploymentTargetsOutput":{
2947+
"type":"structure",
2948+
"members":{
2949+
"Summaries":{"shape":"StackSetAutoDeploymentTargetSummaries"},
2950+
"NextToken":{"shape":"NextToken"}
2951+
}
2952+
},
29212953
"ListStackSetOperationResultsInput":{
29222954
"type":"structure",
29232955
"required":[
@@ -4407,6 +4439,17 @@
44074439
}
44084440
},
44094441
"StackSetARN":{"type":"string"},
4442+
"StackSetAutoDeploymentTargetSummaries":{
4443+
"type":"list",
4444+
"member":{"shape":"StackSetAutoDeploymentTargetSummary"}
4445+
},
4446+
"StackSetAutoDeploymentTargetSummary":{
4447+
"type":"structure",
4448+
"members":{
4449+
"OrganizationalUnitId":{"shape":"OrganizationalUnitId"},
4450+
"Regions":{"shape":"RegionList"}
4451+
}
4452+
},
44104453
"StackSetDriftDetectionDetails":{
44114454
"type":"structure",
44124455
"members":{

models/apis/cloudformation/2010-05-15/docs-2.json

Lines changed: 32 additions & 2 deletions
Large diffs are not rendered by default.

models/apis/kms/2014-11-01/api-2.json

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1588,10 +1588,7 @@
15881588
},
15891589
"GetKeyPolicyRequest":{
15901590
"type":"structure",
1591-
"required":[
1592-
"KeyId",
1593-
"PolicyName"
1594-
],
1591+
"required":["KeyId"],
15951592
"members":{
15961593
"KeyId":{"shape":"KeyIdType"},
15971594
"PolicyName":{"shape":"PolicyNameType"}
@@ -1600,7 +1597,8 @@
16001597
"GetKeyPolicyResponse":{
16011598
"type":"structure",
16021599
"members":{
1603-
"Policy":{"shape":"PolicyType"}
1600+
"Policy":{"shape":"PolicyType"},
1601+
"PolicyName":{"shape":"PolicyNameType"}
16041602
}
16051603
},
16061604
"GetKeyRotationStatusRequest":{
@@ -2202,7 +2200,6 @@
22022200
"type":"structure",
22032201
"required":[
22042202
"KeyId",
2205-
"PolicyName",
22062203
"Policy"
22072204
],
22082205
"members":{

models/apis/kms/2014-11-01/docs-2.json

Lines changed: 5 additions & 4 deletions
Large diffs are not rendered by default.

models/apis/mediatailor/2018-04-23/api-2.json

Lines changed: 55 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -568,6 +568,29 @@
568568
"INFO"
569569
]
570570
},
571+
"AlternateMedia":{
572+
"type":"structure",
573+
"members":{
574+
"AdBreaks":{"shape":"__listOfAdBreak"},
575+
"ClipRange":{"shape":"ClipRange"},
576+
"DurationMillis":{"shape":"__long"},
577+
"LiveSourceName":{"shape":"__string"},
578+
"ScheduledStartTimeMillis":{"shape":"__long"},
579+
"SourceLocationName":{"shape":"__string"},
580+
"VodSourceName":{"shape":"__string"}
581+
}
582+
},
583+
"AudienceMedia":{
584+
"type":"structure",
585+
"members":{
586+
"AlternateMedia":{"shape":"__listOfAlternateMedia"},
587+
"Audience":{"shape":"__string"}
588+
}
589+
},
590+
"Audiences":{
591+
"type":"list",
592+
"member":{"shape":"String"}
593+
},
571594
"AvailMatchingCriteria":{
572595
"type":"structure",
573596
"required":[
@@ -625,6 +648,7 @@
625648
],
626649
"members":{
627650
"Arn":{"shape":"__string"},
651+
"Audiences":{"shape":"Audiences"},
628652
"ChannelName":{"shape":"__string"},
629653
"ChannelState":{"shape":"__string"},
630654
"CreationTime":{"shape":"__timestampUnix"},
@@ -649,9 +673,12 @@
649673
},
650674
"ClipRange":{
651675
"type":"structure",
652-
"required":["EndOffsetMillis"],
653676
"members":{
654-
"EndOffsetMillis":{"shape":"__long"}
677+
"EndOffsetMillis":{
678+
"shape":"__long",
679+
"box":true
680+
},
681+
"StartOffsetMillis":{"shape":"__long"}
655682
}
656683
},
657684
"ConfigurationAliasesRequest":{
@@ -709,6 +736,7 @@
709736
"PlaybackMode"
710737
],
711738
"members":{
739+
"Audiences":{"shape":"Audiences"},
712740
"ChannelName":{
713741
"shape":"__string",
714742
"location":"uri",
@@ -729,6 +757,7 @@
729757
"type":"structure",
730758
"members":{
731759
"Arn":{"shape":"__string"},
760+
"Audiences":{"shape":"Audiences"},
732761
"ChannelName":{"shape":"__string"},
733762
"ChannelState":{"shape":"ChannelState"},
734763
"CreationTime":{"shape":"__timestampUnix"},
@@ -829,6 +858,7 @@
829858
],
830859
"members":{
831860
"AdBreaks":{"shape":"__listOfAdBreak"},
861+
"AudienceMedia":{"shape":"__listOfAudienceMedia"},
832862
"ChannelName":{
833863
"shape":"__string",
834864
"location":"uri",
@@ -850,6 +880,7 @@
850880
"members":{
851881
"AdBreaks":{"shape":"__listOfAdBreak"},
852882
"Arn":{"shape":"__string"},
883+
"AudienceMedia":{"shape":"__listOfAudienceMedia"},
853884
"ChannelName":{"shape":"__string"},
854885
"ClipRange":{"shape":"ClipRange"},
855886
"CreationTime":{"shape":"__timestampUnix"},
@@ -1146,6 +1177,7 @@
11461177
"required":["LogConfiguration"],
11471178
"members":{
11481179
"Arn":{"shape":"__string"},
1180+
"Audiences":{"shape":"Audiences"},
11491181
"ChannelName":{"shape":"__string"},
11501182
"ChannelState":{"shape":"ChannelState"},
11511183
"CreationTime":{"shape":"__timestampUnix"},
@@ -1220,6 +1252,7 @@
12201252
"members":{
12211253
"AdBreaks":{"shape":"__listOfAdBreak"},
12221254
"Arn":{"shape":"__string"},
1255+
"AudienceMedia":{"shape":"__listOfAudienceMedia"},
12231256
"ChannelName":{"shape":"__string"},
12241257
"ClipRange":{"shape":"ClipRange"},
12251258
"CreationTime":{"shape":"__timestampUnix"},
@@ -1322,6 +1355,11 @@
13221355
"type":"structure",
13231356
"required":["ChannelName"],
13241357
"members":{
1358+
"Audience":{
1359+
"shape":"__string",
1360+
"location":"querystring",
1361+
"locationName":"audience"
1362+
},
13251363
"ChannelName":{
13261364
"shape":"__string",
13271365
"location":"uri",
@@ -1965,6 +2003,7 @@
19652003
"ApproximateDurationSeconds":{"shape":"__long"},
19662004
"ApproximateStartTime":{"shape":"__timestampUnix"},
19672005
"Arn":{"shape":"__string"},
2006+
"Audiences":{"shape":"Audiences"},
19682007
"ChannelName":{"shape":"__string"},
19692008
"LiveSourceName":{"shape":"__string"},
19702009
"ProgramName":{"shape":"__string"},
@@ -1978,7 +2017,8 @@
19782017
"type":"string",
19792018
"enum":[
19802019
"PROGRAM",
1981-
"FILLER_SLATE"
2020+
"FILLER_SLATE",
2021+
"ALTERNATE_MEDIA"
19822022
]
19832023
},
19842024
"SecretsManagerAccessTokenConfiguration":{
@@ -2169,6 +2209,7 @@
21692209
"Outputs"
21702210
],
21712211
"members":{
2212+
"Audiences":{"shape":"Audiences"},
21722213
"ChannelName":{
21732214
"shape":"__string",
21742215
"location":"uri",
@@ -2183,6 +2224,7 @@
21832224
"type":"structure",
21842225
"members":{
21852226
"Arn":{"shape":"__string"},
2227+
"Audiences":{"shape":"Audiences"},
21862228
"ChannelName":{"shape":"__string"},
21872229
"ChannelState":{"shape":"ChannelState"},
21882230
"CreationTime":{"shape":"__timestampUnix"},
@@ -2243,6 +2285,7 @@
22432285
],
22442286
"members":{
22452287
"AdBreaks":{"shape":"__listOfAdBreak"},
2288+
"AudienceMedia":{"shape":"__listOfAudienceMedia"},
22462289
"ChannelName":{
22472290
"shape":"__string",
22482291
"location":"uri",
@@ -2261,6 +2304,7 @@
22612304
"members":{
22622305
"AdBreaks":{"shape":"__listOfAdBreak"},
22632306
"Arn":{"shape":"__string"},
2307+
"AudienceMedia":{"shape":"__listOfAudienceMedia"},
22642308
"ChannelName":{"shape":"__string"},
22652309
"ClipRange":{"shape":"ClipRange"},
22662310
"CreationTime":{"shape":"__timestampUnix"},
@@ -2405,6 +2449,14 @@
24052449
"type":"list",
24062450
"member":{"shape":"Alert"}
24072451
},
2452+
"__listOfAlternateMedia":{
2453+
"type":"list",
2454+
"member":{"shape":"AlternateMedia"}
2455+
},
2456+
"__listOfAudienceMedia":{
2457+
"type":"list",
2458+
"member":{"shape":"AudienceMedia"}
2459+
},
24082460
"__listOfAvailMatchingCriteria":{
24092461
"type":"list",
24102462
"member":{"shape":"AvailMatchingCriteria"}

0 commit comments

Comments
 (0)