aws-sdk-core 2.11.585 → 2.11.590

Sign up to get free protection for your applications and to get access to all the features.
@@ -528,6 +528,7 @@
528
528
  {"shape":"ConcurrentModificationException"},
529
529
  {"shape":"HandshakeConstraintViolationException"},
530
530
  {"shape":"DuplicateHandshakeException"},
531
+ {"shape":"ConstraintViolationException"},
531
532
  {"shape":"InvalidInputException"},
532
533
  {"shape":"FinalizingOrganizationException"},
533
534
  {"shape":"ServiceException"},
@@ -1223,7 +1224,8 @@
1223
1224
  "Email":{"shape":"Email"},
1224
1225
  "AccountName":{"shape":"AccountName"},
1225
1226
  "RoleName":{"shape":"RoleName"},
1226
- "IamUserAccessToBilling":{"shape":"IAMUserAccessToBilling"}
1227
+ "IamUserAccessToBilling":{"shape":"IAMUserAccessToBilling"},
1228
+ "Tags":{"shape":"Tags"}
1227
1229
  }
1228
1230
  },
1229
1231
  "CreateAccountRequestId":{
@@ -1283,7 +1285,8 @@
1283
1285
  "Email":{"shape":"Email"},
1284
1286
  "AccountName":{"shape":"AccountName"},
1285
1287
  "RoleName":{"shape":"RoleName"},
1286
- "IamUserAccessToBilling":{"shape":"IAMUserAccessToBilling"}
1288
+ "IamUserAccessToBilling":{"shape":"IAMUserAccessToBilling"},
1289
+ "Tags":{"shape":"Tags"}
1287
1290
  }
1288
1291
  },
1289
1292
  "CreateGovCloudAccountResponse":{
@@ -1312,7 +1315,8 @@
1312
1315
  ],
1313
1316
  "members":{
1314
1317
  "ParentId":{"shape":"ParentId"},
1315
- "Name":{"shape":"OrganizationalUnitName"}
1318
+ "Name":{"shape":"OrganizationalUnitName"},
1319
+ "Tags":{"shape":"Tags"}
1316
1320
  }
1317
1321
  },
1318
1322
  "CreateOrganizationalUnitResponse":{
@@ -1333,7 +1337,8 @@
1333
1337
  "Content":{"shape":"PolicyContent"},
1334
1338
  "Description":{"shape":"PolicyDescription"},
1335
1339
  "Name":{"shape":"PolicyName"},
1336
- "Type":{"shape":"PolicyType"}
1340
+ "Type":{"shape":"PolicyType"},
1341
+ "Tags":{"shape":"Tags"}
1337
1342
  }
1338
1343
  },
1339
1344
  "CreatePolicyResponse":{
@@ -1850,6 +1855,7 @@
1850
1855
  "UNRECOGNIZED_SERVICE_PRINCIPAL",
1851
1856
  "INVALID_ROLE_NAME",
1852
1857
  "INVALID_SYSTEM_TAGS_PARAMETER",
1858
+ "DUPLICATE_TAG_KEY",
1853
1859
  "TARGET_NOT_SUPPORTED"
1854
1860
  ]
1855
1861
  },
@@ -1858,7 +1864,8 @@
1858
1864
  "required":["Target"],
1859
1865
  "members":{
1860
1866
  "Target":{"shape":"HandshakeParty"},
1861
- "Notes":{"shape":"HandshakeNotes"}
1867
+ "Notes":{"shape":"HandshakeNotes"},
1868
+ "Tags":{"shape":"Tags"}
1862
1869
  }
1863
1870
  },
1864
1871
  "InviteAccountToOrganizationResponse":{
@@ -2523,8 +2530,8 @@
2523
2530
  },
2524
2531
  "TaggableResourceId":{
2525
2532
  "type":"string",
2526
- "max":12,
2527
- "pattern":"^\\d{12}$"
2533
+ "max":130,
2534
+ "pattern":"^(r-[0-9a-z]{4,32})|(\\d{12})|(ou-[0-9a-z]{4,32}-[a-z0-9]{8,32})|(^p-[0-9a-zA-Z_]{8,128})$"
2528
2535
  },
2529
2536
  "Tags":{
2530
2537
  "type":"list",
@@ -3,17 +3,20 @@
3
3
  "ListGroupResources": {
4
4
  "input_token": "NextToken",
5
5
  "output_token": "NextToken",
6
- "limit_key": "MaxResults"
6
+ "limit_key": "MaxResults",
7
+ "result_key": "ResourceIdentifiers"
7
8
  },
8
9
  "ListGroups": {
9
10
  "input_token": "NextToken",
10
11
  "output_token": "NextToken",
11
- "limit_key": "MaxResults"
12
+ "limit_key": "MaxResults",
13
+ "result_key": "GroupIdentifiers"
12
14
  },
13
15
  "SearchResources": {
14
16
  "input_token": "NextToken",
15
17
  "output_token": "NextToken",
16
- "limit_key": "MaxResults"
18
+ "limit_key": "MaxResults",
19
+ "result_key": "ResourceIdentifiers"
17
20
  }
18
21
  }
19
22
  }
@@ -5497,7 +5497,8 @@
5497
5497
  "LabelingJobDataSource":{
5498
5498
  "type":"structure",
5499
5499
  "members":{
5500
- "S3DataSource":{"shape":"LabelingJobS3DataSource"}
5500
+ "S3DataSource":{"shape":"LabelingJobS3DataSource"},
5501
+ "SnsDataSource":{"shape":"LabelingJobSnsDataSource"}
5501
5502
  }
5502
5503
  },
5503
5504
  "LabelingJobForWorkteamSummary":{
@@ -5547,7 +5548,8 @@
5547
5548
  "required":["S3OutputPath"],
5548
5549
  "members":{
5549
5550
  "S3OutputPath":{"shape":"S3Uri"},
5550
- "KmsKeyId":{"shape":"KmsKeyId"}
5551
+ "KmsKeyId":{"shape":"KmsKeyId"},
5552
+ "SnsTopicArn":{"shape":"SnsTopicArn"}
5551
5553
  }
5552
5554
  },
5553
5555
  "LabelingJobResourceConfig":{
@@ -5563,6 +5565,13 @@
5563
5565
  "ManifestS3Uri":{"shape":"S3Uri"}
5564
5566
  }
5565
5567
  },
5568
+ "LabelingJobSnsDataSource":{
5569
+ "type":"structure",
5570
+ "required":["SnsTopicArn"],
5571
+ "members":{
5572
+ "SnsTopicArn":{"shape":"SnsTopicArn"}
5573
+ }
5574
+ },
5566
5575
  "LabelingJobStatus":{
5567
5576
  "type":"string",
5568
5577
  "enum":[
@@ -8098,6 +8107,11 @@
8098
8107
  "type":"string",
8099
8108
  "pattern":"UserName"
8100
8109
  },
8110
+ "SnsTopicArn":{
8111
+ "type":"string",
8112
+ "max":2048,
8113
+ "pattern":"arn:aws[a-z\\-]*:sns:[a-z0-9\\-]*:[0-9]{12}:[a-zA-Z0-9_.-]*"
8114
+ },
8101
8115
  "SortBy":{
8102
8116
  "type":"string",
8103
8117
  "enum":[
@@ -461,7 +461,8 @@
461
461
  "input":{"shape":"DescribeProvisionedProductInput"},
462
462
  "output":{"shape":"DescribeProvisionedProductOutput"},
463
463
  "errors":[
464
- {"shape":"ResourceNotFoundException"}
464
+ {"shape":"ResourceNotFoundException"},
465
+ {"shape":"InvalidParametersException"}
465
466
  ]
466
467
  },
467
468
  "DescribeProvisionedProductPlan":{
@@ -1852,10 +1853,10 @@
1852
1853
  },
1853
1854
  "DescribeProvisionedProductInput":{
1854
1855
  "type":"structure",
1855
- "required":["Id"],
1856
1856
  "members":{
1857
1857
  "AcceptLanguage":{"shape":"AcceptLanguage"},
1858
- "Id":{"shape":"Id"}
1858
+ "Id":{"shape":"Id"},
1859
+ "Name":{"shape":"ProvisionedProductName"}
1859
1860
  }
1860
1861
  },
1861
1862
  "DescribeProvisionedProductOutput":{
@@ -136,6 +136,10 @@
136
136
  "max":48000,
137
137
  "min":8000
138
138
  },
139
+ "NumberOfChannels":{
140
+ "type":"integer",
141
+ "min":2
142
+ },
139
143
  "RequestId":{"type":"string"},
140
144
  "Result":{
141
145
  "type":"structure",
@@ -144,7 +148,8 @@
144
148
  "StartTime":{"shape":"Double"},
145
149
  "EndTime":{"shape":"Double"},
146
150
  "IsPartial":{"shape":"Boolean"},
147
- "Alternatives":{"shape":"AlternativeList"}
151
+ "Alternatives":{"shape":"AlternativeList"},
152
+ "ChannelId":{"shape":"String"}
148
153
  }
149
154
  },
150
155
  "ResultList":{
@@ -161,6 +166,8 @@
161
166
  },
162
167
  "SessionId":{
163
168
  "type":"string",
169
+ "max":36,
170
+ "min":36,
164
171
  "pattern":"[a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-[a-fA-F0-9]{12}"
165
172
  },
166
173
  "StartStreamTranscriptionRequest":{
@@ -212,6 +219,16 @@
212
219
  "shape":"Boolean",
213
220
  "location":"header",
214
221
  "locationName":"x-amzn-transcribe-show-speaker-label"
222
+ },
223
+ "EnableChannelIdentification":{
224
+ "shape":"Boolean",
225
+ "location":"header",
226
+ "locationName":"x-amzn-transcribe-enable-channel-identification"
227
+ },
228
+ "NumberOfChannels":{
229
+ "shape":"NumberOfChannels",
230
+ "location":"header",
231
+ "locationName":"x-amzn-transcribe-number-of-channels"
215
232
  }
216
233
  },
217
234
  "payload":"AudioStream"
@@ -264,6 +281,16 @@
264
281
  "shape":"Boolean",
265
282
  "location":"header",
266
283
  "locationName":"x-amzn-transcribe-show-speaker-label"
284
+ },
285
+ "EnableChannelIdentification":{
286
+ "shape":"Boolean",
287
+ "location":"header",
288
+ "locationName":"x-amzn-transcribe-enable-channel-identification"
289
+ },
290
+ "NumberOfChannels":{
291
+ "shape":"NumberOfChannels",
292
+ "location":"header",
293
+ "locationName":"x-amzn-transcribe-number-of-channels"
267
294
  }
268
295
  },
269
296
  "payload":"TranscriptResultStream"
@@ -677,6 +677,7 @@
677
677
  "DownloadUri":{"shape":"Uri"}
678
678
  }
679
679
  },
680
+ "IdentifiedLanguageScore":{"type":"float"},
680
681
  "InputDataConfig":{
681
682
  "type":"structure",
682
683
  "required":[
@@ -765,6 +766,11 @@
765
766
  "InputDataConfig":{"shape":"InputDataConfig"}
766
767
  }
767
768
  },
769
+ "LanguageOptions":{
770
+ "type":"list",
771
+ "member":{"shape":"LanguageCode"},
772
+ "min":2
773
+ },
768
774
  "LimitExceededException":{
769
775
  "type":"structure",
770
776
  "members":{
@@ -1080,7 +1086,6 @@
1080
1086
  "type":"structure",
1081
1087
  "required":[
1082
1088
  "TranscriptionJobName",
1083
- "LanguageCode",
1084
1089
  "Media"
1085
1090
  ],
1086
1091
  "members":{
@@ -1094,7 +1099,9 @@
1094
1099
  "Settings":{"shape":"Settings"},
1095
1100
  "ModelSettings":{"shape":"ModelSettings"},
1096
1101
  "JobExecutionSettings":{"shape":"JobExecutionSettings"},
1097
- "ContentRedaction":{"shape":"ContentRedaction"}
1102
+ "ContentRedaction":{"shape":"ContentRedaction"},
1103
+ "IdentifyLanguage":{"shape":"Boolean"},
1104
+ "LanguageOptions":{"shape":"LanguageOptions"}
1098
1105
  }
1099
1106
  },
1100
1107
  "StartTranscriptionJobResponse":{
@@ -1128,7 +1135,10 @@
1128
1135
  "Settings":{"shape":"Settings"},
1129
1136
  "ModelSettings":{"shape":"ModelSettings"},
1130
1137
  "JobExecutionSettings":{"shape":"JobExecutionSettings"},
1131
- "ContentRedaction":{"shape":"ContentRedaction"}
1138
+ "ContentRedaction":{"shape":"ContentRedaction"},
1139
+ "IdentifyLanguage":{"shape":"Boolean"},
1140
+ "LanguageOptions":{"shape":"LanguageOptions"},
1141
+ "IdentifiedLanguageScore":{"shape":"IdentifiedLanguageScore"}
1132
1142
  }
1133
1143
  },
1134
1144
  "TranscriptionJobName":{
@@ -1162,7 +1172,9 @@
1162
1172
  "FailureReason":{"shape":"FailureReason"},
1163
1173
  "OutputLocationType":{"shape":"OutputLocationType"},
1164
1174
  "ContentRedaction":{"shape":"ContentRedaction"},
1165
- "ModelSettings":{"shape":"ModelSettings"}
1175
+ "ModelSettings":{"shape":"ModelSettings"},
1176
+ "IdentifyLanguage":{"shape":"Boolean"},
1177
+ "IdentifiedLanguageScore":{"shape":"IdentifiedLanguageScore"}
1166
1178
  }
1167
1179
  },
1168
1180
  "Type":{
@@ -247,6 +247,7 @@
247
247
  "protocols" : [ "https" ]
248
248
  },
249
249
  "endpoints" : {
250
+ "af-south-1" : { },
250
251
  "ap-east-1" : { },
251
252
  "ap-northeast-1" : { },
252
253
  "ap-northeast-2" : { },
@@ -256,6 +257,7 @@
256
257
  "ca-central-1" : { },
257
258
  "eu-central-1" : { },
258
259
  "eu-north-1" : { },
260
+ "eu-south-1" : { },
259
261
  "eu-west-1" : { },
260
262
  "eu-west-2" : { },
261
263
  "eu-west-3" : { },
@@ -1125,6 +1127,7 @@
1125
1127
  "ca-central-1" : { },
1126
1128
  "eu-central-1" : { },
1127
1129
  "eu-north-1" : { },
1130
+ "eu-south-1" : { },
1128
1131
  "eu-west-1" : { },
1129
1132
  "eu-west-2" : { },
1130
1133
  "eu-west-3" : { },
@@ -2064,6 +2067,7 @@
2064
2067
  "sa-east-1" : { },
2065
2068
  "us-east-1" : { },
2066
2069
  "us-east-2" : { },
2070
+ "us-west-1" : { },
2067
2071
  "us-west-2" : { }
2068
2072
  }
2069
2073
  },
@@ -3272,6 +3276,7 @@
3272
3276
  "ca-central-1" : { },
3273
3277
  "eu-central-1" : { },
3274
3278
  "eu-north-1" : { },
3279
+ "eu-south-1" : { },
3275
3280
  "eu-west-1" : { },
3276
3281
  "eu-west-2" : { },
3277
3282
  "eu-west-3" : { },
@@ -4010,6 +4015,24 @@
4010
4015
  },
4011
4016
  "oidc" : {
4012
4017
  "endpoints" : {
4018
+ "ap-northeast-1" : {
4019
+ "credentialScope" : {
4020
+ "region" : "ap-northeast-1"
4021
+ },
4022
+ "hostname" : "oidc.ap-northeast-1.amazonaws.com"
4023
+ },
4024
+ "ap-northeast-2" : {
4025
+ "credentialScope" : {
4026
+ "region" : "ap-northeast-2"
4027
+ },
4028
+ "hostname" : "oidc.ap-northeast-2.amazonaws.com"
4029
+ },
4030
+ "ap-south-1" : {
4031
+ "credentialScope" : {
4032
+ "region" : "ap-south-1"
4033
+ },
4034
+ "hostname" : "oidc.ap-south-1.amazonaws.com"
4035
+ },
4013
4036
  "ap-southeast-1" : {
4014
4037
  "credentialScope" : {
4015
4038
  "region" : "ap-southeast-1"
@@ -4486,9 +4509,16 @@
4486
4509
  "ap-south-1" : { },
4487
4510
  "ap-southeast-1" : { },
4488
4511
  "ap-southeast-2" : { },
4512
+ "ca-central-1" : { },
4489
4513
  "eu-central-1" : { },
4490
4514
  "eu-west-1" : { },
4491
4515
  "eu-west-2" : { },
4516
+ "rekognition-fips.ca-central-1" : {
4517
+ "credentialScope" : {
4518
+ "region" : "ca-central-1"
4519
+ },
4520
+ "hostname" : "rekognition-fips.ca-central-1.amazonaws.com"
4521
+ },
4492
4522
  "rekognition-fips.us-east-1" : {
4493
4523
  "credentialScope" : {
4494
4524
  "region" : "us-east-1"
@@ -5322,6 +5352,12 @@
5322
5352
  },
5323
5353
  "hostname" : "snowball-fips.ap-northeast-2.amazonaws.com"
5324
5354
  },
5355
+ "fips-ap-northeast-3" : {
5356
+ "credentialScope" : {
5357
+ "region" : "ap-northeast-3"
5358
+ },
5359
+ "hostname" : "snowball-fips.ap-northeast-3.amazonaws.com"
5360
+ },
5325
5361
  "fips-ap-south-1" : {
5326
5362
  "credentialScope" : {
5327
5363
  "region" : "ap-south-1"
@@ -7526,6 +7562,12 @@
7526
7562
  }
7527
7563
  }
7528
7564
  },
7565
+ "ebs" : {
7566
+ "endpoints" : {
7567
+ "us-gov-east-1" : { },
7568
+ "us-gov-west-1" : { }
7569
+ }
7570
+ },
7529
7571
  "ec2" : {
7530
7572
  "endpoints" : {
7531
7573
  "us-gov-east-1" : {
@@ -7778,7 +7820,12 @@
7778
7820
  },
7779
7821
  "health" : {
7780
7822
  "endpoints" : {
7781
- "us-gov-west-1" : { }
7823
+ "fips-us-gov-west-1" : {
7824
+ "credentialScope" : {
7825
+ "region" : "us-gov-west-1"
7826
+ },
7827
+ "hostname" : "health-fips.us-gov-west-1.amazonaws.com"
7828
+ }
7782
7829
  }
7783
7830
  },
7784
7831
  "iam" : {
@@ -1,3 +1,3 @@
1
1
  module Aws
2
- VERSION = '2.11.585'
2
+ VERSION = '2.11.590'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-core
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.11.585
4
+ version: 2.11.590
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-09-14 00:00:00.000000000 Z
11
+ date: 2020-09-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jmespath