aws-sdk-core 2.11.418 → 2.11.419

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -631,7 +631,8 @@
631
631
  "botName":{"shape":"BotName"},
632
632
  "lastUpdatedDate":{"shape":"Timestamp"},
633
633
  "createdDate":{"shape":"Timestamp"},
634
- "checksum":{"shape":"String"}
634
+ "checksum":{"shape":"String"},
635
+ "conversationLogs":{"shape":"ConversationLogsResponse"}
635
636
  }
636
637
  },
637
638
  "BotAliasMetadataList":{
@@ -780,6 +781,24 @@
780
781
  "CustomPayload"
781
782
  ]
782
783
  },
784
+ "ConversationLogsRequest":{
785
+ "type":"structure",
786
+ "required":[
787
+ "logSettings",
788
+ "iamRoleArn"
789
+ ],
790
+ "members":{
791
+ "logSettings":{"shape":"LogSettingsRequestList"},
792
+ "iamRoleArn":{"shape":"IamRoleArn"}
793
+ }
794
+ },
795
+ "ConversationLogsResponse":{
796
+ "type":"structure",
797
+ "members":{
798
+ "logSettings":{"shape":"LogSettingsResponseList"},
799
+ "iamRoleArn":{"shape":"IamRoleArn"}
800
+ }
801
+ },
783
802
  "Count":{"type":"integer"},
784
803
  "CreateBotVersionRequest":{
785
804
  "type":"structure",
@@ -1035,6 +1054,13 @@
1035
1054
  "max":200,
1036
1055
  "min":0
1037
1056
  },
1057
+ "Destination":{
1058
+ "type":"string",
1059
+ "enum":[
1060
+ "CLOUDWATCH_LOGS",
1061
+ "S3"
1062
+ ]
1063
+ },
1038
1064
  "EnumerationValue":{
1039
1065
  "type":"structure",
1040
1066
  "required":["value"],
@@ -1118,7 +1144,8 @@
1118
1144
  "botName":{"shape":"BotName"},
1119
1145
  "lastUpdatedDate":{"shape":"Timestamp"},
1120
1146
  "createdDate":{"shape":"Timestamp"},
1121
- "checksum":{"shape":"String"}
1147
+ "checksum":{"shape":"String"},
1148
+ "conversationLogs":{"shape":"ConversationLogsResponse"}
1122
1149
  }
1123
1150
  },
1124
1151
  "GetBotAliasesRequest":{
@@ -1697,6 +1724,12 @@
1697
1724
  "max":5,
1698
1725
  "min":1
1699
1726
  },
1727
+ "IamRoleArn":{
1728
+ "type":"string",
1729
+ "max":2048,
1730
+ "min":20,
1731
+ "pattern":"^arn:[\\w\\-]+:iam::[\\d]{12}:role\\/[\\w+=,\\.@\\-]{1,64}$"
1732
+ },
1700
1733
  "ImportStatus":{
1701
1734
  "type":"string",
1702
1735
  "enum":[
@@ -1755,6 +1788,12 @@
1755
1788
  "exception":true,
1756
1789
  "fault":true
1757
1790
  },
1791
+ "KmsKeyArn":{
1792
+ "type":"string",
1793
+ "max":2048,
1794
+ "min":20,
1795
+ "pattern":"^arn:[\\w\\-]+:kms:[\\w\\-]+:[\\d]{12}:(?:key\\/[\\w\\-]+|alias\\/[a-zA-Z0-9:\\/_\\-]{1,256})$"
1796
+ },
1758
1797
  "LambdaARN":{
1759
1798
  "type":"string",
1760
1799
  "max":2048,
@@ -1794,6 +1833,45 @@
1794
1833
  "type":"list",
1795
1834
  "member":{"shape":"Locale"}
1796
1835
  },
1836
+ "LogSettingsRequest":{
1837
+ "type":"structure",
1838
+ "required":[
1839
+ "logType",
1840
+ "destination",
1841
+ "resourceArn"
1842
+ ],
1843
+ "members":{
1844
+ "logType":{"shape":"LogType"},
1845
+ "destination":{"shape":"Destination"},
1846
+ "kmsKeyArn":{"shape":"KmsKeyArn"},
1847
+ "resourceArn":{"shape":"ResourceArn"}
1848
+ }
1849
+ },
1850
+ "LogSettingsRequestList":{
1851
+ "type":"list",
1852
+ "member":{"shape":"LogSettingsRequest"}
1853
+ },
1854
+ "LogSettingsResponse":{
1855
+ "type":"structure",
1856
+ "members":{
1857
+ "logType":{"shape":"LogType"},
1858
+ "destination":{"shape":"Destination"},
1859
+ "kmsKeyArn":{"shape":"KmsKeyArn"},
1860
+ "resourceArn":{"shape":"ResourceArn"},
1861
+ "resourcePrefix":{"shape":"ResourcePrefix"}
1862
+ }
1863
+ },
1864
+ "LogSettingsResponseList":{
1865
+ "type":"list",
1866
+ "member":{"shape":"LogSettingsResponse"}
1867
+ },
1868
+ "LogType":{
1869
+ "type":"string",
1870
+ "enum":[
1871
+ "AUDIO",
1872
+ "TEXT"
1873
+ ]
1874
+ },
1797
1875
  "MaxResults":{
1798
1876
  "type":"integer",
1799
1877
  "box":true,
@@ -1851,6 +1929,13 @@
1851
1929
  "min":1,
1852
1930
  "pattern":"[0-9]+"
1853
1931
  },
1932
+ "ObfuscationSetting":{
1933
+ "type":"string",
1934
+ "enum":[
1935
+ "NONE",
1936
+ "DEFAULT_OBFUSCATION"
1937
+ ]
1938
+ },
1854
1939
  "PreconditionFailedException":{
1855
1940
  "type":"structure",
1856
1941
  "members":{
@@ -1908,7 +1993,8 @@
1908
1993
  "location":"uri",
1909
1994
  "locationName":"botName"
1910
1995
  },
1911
- "checksum":{"shape":"String"}
1996
+ "checksum":{"shape":"String"},
1997
+ "conversationLogs":{"shape":"ConversationLogsRequest"}
1912
1998
  }
1913
1999
  },
1914
2000
  "PutBotAliasResponse":{
@@ -1920,7 +2006,8 @@
1920
2006
  "botName":{"shape":"BotName"},
1921
2007
  "lastUpdatedDate":{"shape":"Timestamp"},
1922
2008
  "createdDate":{"shape":"Timestamp"},
1923
- "checksum":{"shape":"String"}
2009
+ "checksum":{"shape":"String"},
2010
+ "conversationLogs":{"shape":"ConversationLogsResponse"}
1924
2011
  }
1925
2012
  },
1926
2013
  "PutBotRequest":{
@@ -2055,6 +2142,12 @@
2055
2142
  "BotChannel"
2056
2143
  ]
2057
2144
  },
2145
+ "ResourceArn":{
2146
+ "type":"string",
2147
+ "max":2048,
2148
+ "min":1,
2149
+ "pattern":"^arn:[\\w\\-]+:(?:logs:[\\w\\-]+:[\\d]{12}:log-group:[\\.\\-_/#A-Za-z0-9]{1,512}(?::\\*)?|s3:::[a-z0-9][\\.\\-a-z0-9]{1,61}[a-z0-9])$"
2150
+ },
2058
2151
  "ResourceInUseException":{
2059
2152
  "type":"structure",
2060
2153
  "members":{
@@ -2064,6 +2157,10 @@
2064
2157
  "error":{"httpStatusCode":400},
2065
2158
  "exception":true
2066
2159
  },
2160
+ "ResourcePrefix":{
2161
+ "type":"string",
2162
+ "max":1024
2163
+ },
2067
2164
  "ResourceReference":{
2068
2165
  "type":"structure",
2069
2166
  "members":{
@@ -2104,7 +2201,8 @@
2104
2201
  "valueElicitationPrompt":{"shape":"Prompt"},
2105
2202
  "priority":{"shape":"Priority"},
2106
2203
  "sampleUtterances":{"shape":"SlotUtteranceList"},
2107
- "responseCard":{"shape":"ResponseCard"}
2204
+ "responseCard":{"shape":"ResponseCard"},
2205
+ "obfuscationSetting":{"shape":"ObfuscationSetting"}
2108
2206
  }
2109
2207
  },
2110
2208
  "SlotConstraint":{
@@ -178,6 +178,19 @@
178
178
  {"shape":"InvalidStateException"}
179
179
  ]
180
180
  },
181
+ "ListTagsForResource":{
182
+ "name":"ListTagsForResource",
183
+ "http":{
184
+ "method":"POST",
185
+ "requestUri":"/"
186
+ },
187
+ "input":{"shape":"ListTagsForResourceRequest"},
188
+ "output":{"shape":"ListTagsForResourceResponse"},
189
+ "errors":[
190
+ {"shape":"ResourceNotFoundException"},
191
+ {"shape":"ValidationException"}
192
+ ]
193
+ },
181
194
  "RestoreServer":{
182
195
  "name":"RestoreServer",
183
196
  "http":{
@@ -206,6 +219,34 @@
206
219
  {"shape":"ValidationException"}
207
220
  ]
208
221
  },
222
+ "TagResource":{
223
+ "name":"TagResource",
224
+ "http":{
225
+ "method":"POST",
226
+ "requestUri":"/"
227
+ },
228
+ "input":{"shape":"TagResourceRequest"},
229
+ "output":{"shape":"TagResourceResponse"},
230
+ "errors":[
231
+ {"shape":"ResourceNotFoundException"},
232
+ {"shape":"ValidationException"},
233
+ {"shape":"InvalidStateException"}
234
+ ]
235
+ },
236
+ "UntagResource":{
237
+ "name":"UntagResource",
238
+ "http":{
239
+ "method":"POST",
240
+ "requestUri":"/"
241
+ },
242
+ "input":{"shape":"UntagResourceRequest"},
243
+ "output":{"shape":"UntagResourceResponse"},
244
+ "errors":[
245
+ {"shape":"ResourceNotFoundException"},
246
+ {"shape":"ValidationException"},
247
+ {"shape":"InvalidStateException"}
248
+ ]
249
+ },
209
250
  "UpdateServer":{
210
251
  "name":"UpdateServer",
211
252
  "http":{
@@ -236,6 +277,10 @@
236
277
  }
237
278
  },
238
279
  "shapes":{
280
+ "AWSOpsWorksCMResourceArn":{
281
+ "type":"string",
282
+ "pattern":"arn:aws.*:opsworks-cm:.*:[0-9]{12}:.*"
283
+ },
239
284
  "AccountAttribute":{
240
285
  "type":"structure",
241
286
  "members":{
@@ -348,7 +393,8 @@
348
393
  "required":["ServerName"],
349
394
  "members":{
350
395
  "ServerName":{"shape":"ServerName"},
351
- "Description":{"shape":"String"}
396
+ "Description":{"shape":"String"},
397
+ "Tags":{"shape":"TagList"}
352
398
  }
353
399
  },
354
400
  "CreateBackupResponse":{
@@ -385,6 +431,7 @@
385
431
  "SecurityGroupIds":{"shape":"Strings"},
386
432
  "ServiceRoleArn":{"shape":"ServiceRoleArn"},
387
433
  "SubnetIds":{"shape":"Strings"},
434
+ "Tags":{"shape":"TagList"},
388
435
  "BackupId":{"shape":"BackupId"}
389
436
  }
390
437
  },
@@ -601,6 +648,22 @@
601
648
  },
602
649
  "exception":true
603
650
  },
651
+ "ListTagsForResourceRequest":{
652
+ "type":"structure",
653
+ "required":["ResourceArn"],
654
+ "members":{
655
+ "ResourceArn":{"shape":"AWSOpsWorksCMResourceArn"},
656
+ "NextToken":{"shape":"NextToken"},
657
+ "MaxResults":{"shape":"MaxResults"}
658
+ }
659
+ },
660
+ "ListTagsForResourceResponse":{
661
+ "type":"structure",
662
+ "members":{
663
+ "Tags":{"shape":"TagList"},
664
+ "NextToken":{"shape":"NextToken"}
665
+ }
666
+ },
604
667
  "MaintenanceStatus":{
605
668
  "type":"string",
606
669
  "enum":[
@@ -765,12 +828,79 @@
765
828
  "type":"list",
766
829
  "member":{"shape":"String"}
767
830
  },
831
+ "Tag":{
832
+ "type":"structure",
833
+ "required":[
834
+ "Key",
835
+ "Value"
836
+ ],
837
+ "members":{
838
+ "Key":{"shape":"TagKey"},
839
+ "Value":{"shape":"TagValue"}
840
+ }
841
+ },
842
+ "TagKey":{
843
+ "type":"string",
844
+ "max":128,
845
+ "min":1,
846
+ "pattern":"^([\\p{L}\\p{Z}\\p{N}_.:\\/=+\\\\\\-@]*)$"
847
+ },
848
+ "TagKeyList":{
849
+ "type":"list",
850
+ "member":{"shape":"TagKey"},
851
+ "max":200,
852
+ "min":0
853
+ },
854
+ "TagList":{
855
+ "type":"list",
856
+ "member":{"shape":"Tag"},
857
+ "max":200,
858
+ "min":0
859
+ },
860
+ "TagResourceRequest":{
861
+ "type":"structure",
862
+ "required":[
863
+ "ResourceArn",
864
+ "Tags"
865
+ ],
866
+ "members":{
867
+ "ResourceArn":{"shape":"AWSOpsWorksCMResourceArn"},
868
+ "Tags":{"shape":"TagList"}
869
+ }
870
+ },
871
+ "TagResourceResponse":{
872
+ "type":"structure",
873
+ "members":{
874
+ }
875
+ },
876
+ "TagValue":{
877
+ "type":"string",
878
+ "max":256,
879
+ "min":0,
880
+ "pattern":"^([\\p{L}\\p{Z}\\p{N}_.:\\/=+\\\\\\-@]*)$"
881
+ },
768
882
  "TimeWindowDefinition":{
769
883
  "type":"string",
770
884
  "max":10000,
771
885
  "pattern":"^((Mon|Tue|Wed|Thu|Fri|Sat|Sun):)?([0-1][0-9]|2[0-3]):[0-5][0-9]$"
772
886
  },
773
887
  "Timestamp":{"type":"timestamp"},
888
+ "UntagResourceRequest":{
889
+ "type":"structure",
890
+ "required":[
891
+ "ResourceArn",
892
+ "TagKeys"
893
+ ],
894
+ "members":{
895
+ "ResourceArn":{"shape":"AWSOpsWorksCMResourceArn"},
896
+ "TagKeys":{"shape":"TagKeyList"}
897
+ }
898
+ },
899
+ "UntagResourceResponse":{
900
+ "type":"structure",
901
+ "members":{
902
+ }
903
+ },
774
904
  "UpdateServerEngineAttributesRequest":{
775
905
  "type":"structure",
776
906
  "required":[
@@ -47,6 +47,22 @@
47
47
  "max":256,
48
48
  "pattern":"arn:([a-z\\d-]+):personalize:.*:.*:.+"
49
49
  },
50
+ "AttributeName":{
51
+ "type":"string",
52
+ "max":150,
53
+ "pattern":"[A-Za-z\\d_]+"
54
+ },
55
+ "AttributeValue":{
56
+ "type":"string",
57
+ "max":1000,
58
+ "sensitive":true
59
+ },
60
+ "Context":{
61
+ "type":"map",
62
+ "key":{"shape":"AttributeName"},
63
+ "value":{"shape":"AttributeValue"},
64
+ "max":150
65
+ },
50
66
  "ErrorMessage":{"type":"string"},
51
67
  "GetPersonalizedRankingRequest":{
52
68
  "type":"structure",
@@ -58,7 +74,8 @@
58
74
  "members":{
59
75
  "campaignArn":{"shape":"Arn"},
60
76
  "inputList":{"shape":"InputList"},
61
- "userId":{"shape":"UserID"}
77
+ "userId":{"shape":"UserID"},
78
+ "context":{"shape":"Context"}
62
79
  }
63
80
  },
64
81
  "GetPersonalizedRankingResponse":{
@@ -74,7 +91,8 @@
74
91
  "campaignArn":{"shape":"Arn"},
75
92
  "itemId":{"shape":"ItemID"},
76
93
  "userId":{"shape":"UserID"},
77
- "numResults":{"shape":"NumResults"}
94
+ "numResults":{"shape":"NumResults"},
95
+ "context":{"shape":"Context"}
78
96
  }
79
97
  },
80
98
  "GetRecommendationsResponse":{
@@ -2375,7 +2375,8 @@
2375
2375
  "CurrentAction",
2376
2376
  "StartTimeBefore",
2377
2377
  "StartTimeAfter",
2378
- "AutomationType"
2378
+ "AutomationType",
2379
+ "TagKey"
2379
2380
  ]
2380
2381
  },
2381
2382
  "AutomationExecutionFilterList":{
@@ -8461,7 +8462,8 @@
8461
8462
  "TargetLocations":{
8462
8463
  "shape":"TargetLocations",
8463
8464
  "box":true
8464
- }
8465
+ },
8466
+ "Tags":{"shape":"TagList"}
8465
8467
  }
8466
8468
  },
8467
8469
  "StartAutomationExecutionResult":{
@@ -184,6 +184,10 @@
184
184
  "FailureReason":{"shape":"FailureReason"}
185
185
  }
186
186
  },
187
+ "DataAccessRoleArn":{
188
+ "type":"string",
189
+ "pattern":"^arn:aws:iam::[0-9]{0,63}:role/[A-Za-z0-9:_/+=,@.-]{0,1023}$"
190
+ },
187
191
  "DateTime":{"type":"timestamp"},
188
192
  "DeleteTranscriptionJobRequest":{
189
193
  "type":"structure",
@@ -239,6 +243,13 @@
239
243
  "exception":true,
240
244
  "fault":true
241
245
  },
246
+ "JobExecutionSettings":{
247
+ "type":"structure",
248
+ "members":{
249
+ "AllowDeferredExecution":{"shape":"Boolean"},
250
+ "DataAccessRoleArn":{"shape":"DataAccessRoleArn"}
251
+ }
252
+ },
242
253
  "KMSKeyId":{
243
254
  "type":"string",
244
255
  "max":2048,
@@ -417,7 +428,8 @@
417
428
  "Media":{"shape":"Media"},
418
429
  "OutputBucketName":{"shape":"OutputBucketName"},
419
430
  "OutputEncryptionKMSKeyId":{"shape":"KMSKeyId"},
420
- "Settings":{"shape":"Settings"}
431
+ "Settings":{"shape":"Settings"},
432
+ "JobExecutionSettings":{"shape":"JobExecutionSettings"}
421
433
  }
422
434
  },
423
435
  "StartTranscriptionJobResponse":{
@@ -443,10 +455,12 @@
443
455
  "MediaFormat":{"shape":"MediaFormat"},
444
456
  "Media":{"shape":"Media"},
445
457
  "Transcript":{"shape":"Transcript"},
458
+ "StartTime":{"shape":"DateTime"},
446
459
  "CreationTime":{"shape":"DateTime"},
447
460
  "CompletionTime":{"shape":"DateTime"},
448
461
  "FailureReason":{"shape":"FailureReason"},
449
- "Settings":{"shape":"Settings"}
462
+ "Settings":{"shape":"Settings"},
463
+ "JobExecutionSettings":{"shape":"JobExecutionSettings"}
450
464
  }
451
465
  },
452
466
  "TranscriptionJobName":{
@@ -458,6 +472,7 @@
458
472
  "TranscriptionJobStatus":{
459
473
  "type":"string",
460
474
  "enum":[
475
+ "QUEUED",
461
476
  "IN_PROGRESS",
462
477
  "FAILED",
463
478
  "COMPLETED"
@@ -472,6 +487,7 @@
472
487
  "members":{
473
488
  "TranscriptionJobName":{"shape":"TranscriptionJobName"},
474
489
  "CreationTime":{"shape":"DateTime"},
490
+ "StartTime":{"shape":"DateTime"},
475
491
  "CompletionTime":{"shape":"DateTime"},
476
492
  "LanguageCode":{"shape":"LanguageCode"},
477
493
  "TranscriptionJobStatus":{"shape":"TranscriptionJobStatus"},