Skip to content

Commit a6c902e

Browse files
Release v1.36.11 (2020-12-17) (#3702)
Release v1.36.11 (2020-12-17) === ### Service Client Updates * `service/config`: Updates service API and documentation * `service/dlm`: Updates service API and documentation * `service/ec2`: Updates service API * C6gn instances are powered by AWS Graviton2 processors and offer 100 Gbps networking bandwidth. These instances deliver up to 40% better price-performance benefit versus comparable x86-based instances * `service/imagebuilder`: Updates service API, documentation, and paginators * `service/kms`: Updates service API, documentation, and examples * Added CreationDate and LastUpdatedDate timestamps to ListAliases API response * `service/route53`: Updates service API and documentation * This release adds support for DNSSEC signing in Amazon Route 53. * `service/route53resolver`: Updates service API, documentation, and paginators * `service/servicecatalog`: Updates service API, documentation, and paginators * Support TagOptions sharing with Service Catalog portfolio sharing. * `service/sqs`: Updates service API and documentation * Amazon SQS adds queue attributes to enable high throughput FIFO.
1 parent 1d64c61 commit a6c902e

File tree

42 files changed

+9547
-791
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+9547
-791
lines changed

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
Release v1.36.11 (2020-12-17)
2+
===
3+
4+
### Service Client Updates
5+
* `service/config`: Updates service API and documentation
6+
* `service/dlm`: Updates service API and documentation
7+
* `service/ec2`: Updates service API
8+
* C6gn instances are powered by AWS Graviton2 processors and offer 100 Gbps networking bandwidth. These instances deliver up to 40% better price-performance benefit versus comparable x86-based instances
9+
* `service/imagebuilder`: Updates service API, documentation, and paginators
10+
* `service/kms`: Updates service API, documentation, and examples
11+
* Added CreationDate and LastUpdatedDate timestamps to ListAliases API response
12+
* `service/route53`: Updates service API and documentation
13+
* This release adds support for DNSSEC signing in Amazon Route 53.
14+
* `service/route53resolver`: Updates service API, documentation, and paginators
15+
* `service/servicecatalog`: Updates service API, documentation, and paginators
16+
* Support TagOptions sharing with Service Catalog portfolio sharing.
17+
* `service/sqs`: Updates service API and documentation
18+
* Amazon SQS adds queue attributes to enable high throughput FIFO.
19+
120
Release v1.36.10 (2020-12-16)
221
===
322

aws/endpoints/defaults.go

Lines changed: 36 additions & 6 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.36.10"
8+
const SDKVersion = "1.36.11"

models/apis/config/2014-11-12/api-2.json

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -898,6 +898,19 @@
898898
{"shape":"NoSuchConfigRuleException"}
899899
]
900900
},
901+
"PutExternalEvaluation":{
902+
"name":"PutExternalEvaluation",
903+
"http":{
904+
"method":"POST",
905+
"requestUri":"/"
906+
},
907+
"input":{"shape":"PutExternalEvaluationRequest"},
908+
"output":{"shape":"PutExternalEvaluationResponse"},
909+
"errors":[
910+
{"shape":"NoSuchConfigRuleException"},
911+
{"shape":"InvalidParameterValueException"}
912+
]
913+
},
901914
"PutOrganizationConfigRule":{
902915
"name":"PutOrganizationConfigRule",
903916
"http":{
@@ -2483,6 +2496,22 @@
24832496
"max":4096,
24842497
"min":1
24852498
},
2499+
"ExternalEvaluation":{
2500+
"type":"structure",
2501+
"required":[
2502+
"ComplianceResourceType",
2503+
"ComplianceResourceId",
2504+
"ComplianceType",
2505+
"OrderingTimestamp"
2506+
],
2507+
"members":{
2508+
"ComplianceResourceType":{"shape":"StringWithCharLimit256"},
2509+
"ComplianceResourceId":{"shape":"BaseResourceId"},
2510+
"ComplianceType":{"shape":"ComplianceType"},
2511+
"Annotation":{"shape":"StringWithCharLimit256"},
2512+
"OrderingTimestamp":{"shape":"OrderingTimestamp"}
2513+
}
2514+
},
24862515
"FailedDeleteRemediationExceptionsBatch":{
24872516
"type":"structure",
24882517
"members":{
@@ -3532,6 +3561,22 @@
35323561
"FailedEvaluations":{"shape":"Evaluations"}
35333562
}
35343563
},
3564+
"PutExternalEvaluationRequest":{
3565+
"type":"structure",
3566+
"required":[
3567+
"ConfigRuleName",
3568+
"ExternalEvaluation"
3569+
],
3570+
"members":{
3571+
"ConfigRuleName":{"shape":"ConfigRuleName"},
3572+
"ExternalEvaluation":{"shape":"ExternalEvaluation"}
3573+
}
3574+
},
3575+
"PutExternalEvaluationResponse":{
3576+
"type":"structure",
3577+
"members":{
3578+
}
3579+
},
35353580
"PutOrganizationConfigRuleRequest":{
35363581
"type":"structure",
35373582
"required":["OrganizationConfigRuleName"],

models/apis/config/2014-11-12/docs-2.json

Lines changed: 44 additions & 21 deletions
Large diffs are not rendered by default.

models/apis/dlm/2018-01-12/api-2.json

Lines changed: 130 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,29 @@
129129
}
130130
},
131131
"shapes":{
132+
"Action":{
133+
"type":"structure",
134+
"required":[
135+
"Name",
136+
"CrossRegionCopy"
137+
],
138+
"members":{
139+
"Name":{"shape":"ActionName"},
140+
"CrossRegionCopy":{"shape":"CrossRegionCopyActionList"}
141+
}
142+
},
143+
"ActionList":{
144+
"type":"list",
145+
"member":{"shape":"Action"},
146+
"max":1,
147+
"min":1
148+
},
149+
"ActionName":{
150+
"type":"string",
151+
"max":120,
152+
"min":0,
153+
"pattern":"[0-9A-Za-z _-]+"
154+
},
132155
"AvailabilityZone":{
133156
"type":"string",
134157
"max":16,
@@ -141,6 +164,12 @@
141164
"max":10,
142165
"min":1
143166
},
167+
"AwsAccountId":{
168+
"type":"string",
169+
"max":12,
170+
"min":12,
171+
"pattern":"^[0-9]{12}$"
172+
},
144173
"CmkArn":{
145174
"type":"string",
146175
"max":2048,
@@ -191,6 +220,24 @@
191220
"min":17,
192221
"pattern":"cron\\([^\\n]{11,100}\\)"
193222
},
223+
"CrossRegionCopyAction":{
224+
"type":"structure",
225+
"required":[
226+
"Target",
227+
"EncryptionConfiguration"
228+
],
229+
"members":{
230+
"Target":{"shape":"Target"},
231+
"EncryptionConfiguration":{"shape":"EncryptionConfiguration"},
232+
"RetainRule":{"shape":"CrossRegionCopyRetainRule"}
233+
}
234+
},
235+
"CrossRegionCopyActionList":{
236+
"type":"list",
237+
"member":{"shape":"CrossRegionCopyAction"},
238+
"max":3,
239+
"min":0
240+
},
194241
"CrossRegionCopyRetainRule":{
195242
"type":"structure",
196243
"members":{
@@ -234,9 +281,52 @@
234281
"members":{
235282
}
236283
},
284+
"DescriptionRegex":{
285+
"type":"string",
286+
"max":1000,
287+
"min":0,
288+
"pattern":"[\\p{all}]*"
289+
},
237290
"Encrypted":{"type":"boolean"},
291+
"EncryptionConfiguration":{
292+
"type":"structure",
293+
"required":["Encrypted"],
294+
"members":{
295+
"Encrypted":{"shape":"Encrypted"},
296+
"CmkArn":{"shape":"CmkArn"}
297+
}
298+
},
238299
"ErrorCode":{"type":"string"},
239300
"ErrorMessage":{"type":"string"},
301+
"EventParameters":{
302+
"type":"structure",
303+
"required":[
304+
"EventType",
305+
"SnapshotOwner",
306+
"DescriptionRegex"
307+
],
308+
"members":{
309+
"EventType":{"shape":"EventTypeValues"},
310+
"SnapshotOwner":{"shape":"SnapshotOwnerList"},
311+
"DescriptionRegex":{"shape":"DescriptionRegex"}
312+
}
313+
},
314+
"EventSource":{
315+
"type":"structure",
316+
"required":["Type"],
317+
"members":{
318+
"Type":{"shape":"EventSourceValues"},
319+
"Parameters":{"shape":"EventParameters"}
320+
}
321+
},
322+
"EventSourceValues":{
323+
"type":"string",
324+
"enum":["MANAGED_CWE"]
325+
},
326+
"EventTypeValues":{
327+
"type":"string",
328+
"enum":["shareSnapshot"]
329+
},
240330
"ExcludeBootVolume":{"type":"boolean"},
241331
"ExecutionRoleArn":{
242332
"type":"string",
@@ -431,7 +521,9 @@
431521
"ResourceTypes":{"shape":"ResourceTypeValuesList"},
432522
"TargetTags":{"shape":"TargetTagList"},
433523
"Schedules":{"shape":"ScheduleList"},
434-
"Parameters":{"shape":"Parameters"}
524+
"Parameters":{"shape":"Parameters"},
525+
"EventSource":{"shape":"EventSource"},
526+
"Actions":{"shape":"ActionList"}
435527
}
436528
},
437529
"PolicyId":{
@@ -448,7 +540,8 @@
448540
"type":"string",
449541
"enum":[
450542
"EBS_SNAPSHOT_MANAGEMENT",
451-
"IMAGE_MANAGEMENT"
543+
"IMAGE_MANAGEMENT",
544+
"EVENT_BASED_POLICY"
452545
]
453546
},
454547
"ResourceNotFoundException":{
@@ -502,7 +595,8 @@
502595
"CreateRule":{"shape":"CreateRule"},
503596
"RetainRule":{"shape":"RetainRule"},
504597
"FastRestoreRule":{"shape":"FastRestoreRule"},
505-
"CrossRegionCopyRules":{"shape":"CrossRegionCopyRules"}
598+
"CrossRegionCopyRules":{"shape":"CrossRegionCopyRules"},
599+
"ShareRules":{"shape":"ShareRules"}
506600
}
507601
},
508602
"ScheduleList":{
@@ -515,7 +609,7 @@
515609
"type":"string",
516610
"max":120,
517611
"min":0,
518-
"pattern":"[\\p{all}]*"
612+
"pattern":"[0-9A-Za-z _-]+"
519613
},
520614
"SettablePolicyStateValues":{
521615
"type":"string",
@@ -524,6 +618,32 @@
524618
"DISABLED"
525619
]
526620
},
621+
"ShareRule":{
622+
"type":"structure",
623+
"required":["TargetAccounts"],
624+
"members":{
625+
"TargetAccounts":{"shape":"ShareTargetAccountList"},
626+
"UnshareInterval":{"shape":"Interval"},
627+
"UnshareIntervalUnit":{"shape":"RetentionIntervalUnitValues"}
628+
}
629+
},
630+
"ShareRules":{
631+
"type":"list",
632+
"member":{"shape":"ShareRule"},
633+
"max":1,
634+
"min":0
635+
},
636+
"ShareTargetAccountList":{
637+
"type":"list",
638+
"member":{"shape":"AwsAccountId"},
639+
"min":1
640+
},
641+
"SnapshotOwnerList":{
642+
"type":"list",
643+
"member":{"shape":"AwsAccountId"},
644+
"max":50,
645+
"min":0
646+
},
527647
"StatusMessage":{
528648
"type":"string",
529649
"max":500,
@@ -609,6 +729,12 @@
609729
"max":45,
610730
"min":0
611731
},
732+
"Target":{
733+
"type":"string",
734+
"max":16,
735+
"min":0,
736+
"pattern":"^[\\\\w:\\\\-\\\\/\\\\*]+$"
737+
},
612738
"TargetRegion":{
613739
"type":"string",
614740
"max":16,

0 commit comments

Comments
 (0)