aws-sdk-core 2.11.525 → 2.11.530

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,5 @@
1
+ {
2
+ "version": "1.0",
3
+ "examples": {
4
+ }
5
+ }
@@ -0,0 +1,4 @@
1
+ {
2
+ "pagination": {
3
+ }
4
+ }
@@ -0,0 +1,13 @@
1
+ {
2
+ "version": 1,
3
+ "defaultRegion": "us-west-2",
4
+ "testCases": [
5
+ {
6
+ "operationName": "GetThingShadow",
7
+ "input": {
8
+ "thingName": "fake-thing"
9
+ },
10
+ "errorExpectedFromService": true
11
+ }
12
+ ]
13
+ }
@@ -4038,10 +4038,72 @@
4038
4038
  "AwsIotJobArn":{"type":"string"},
4039
4039
  "AwsIotJobId":{"type":"string"},
4040
4040
  "AwsIotSqlVersion":{"type":"string"},
4041
+ "AwsJobAbortConfig":{
4042
+ "type":"structure",
4043
+ "required":["abortCriteriaList"],
4044
+ "members":{
4045
+ "abortCriteriaList":{"shape":"AwsJobAbortCriteriaList"}
4046
+ }
4047
+ },
4048
+ "AwsJobAbortCriteria":{
4049
+ "type":"structure",
4050
+ "required":[
4051
+ "failureType",
4052
+ "action",
4053
+ "thresholdPercentage",
4054
+ "minNumberOfExecutedThings"
4055
+ ],
4056
+ "members":{
4057
+ "failureType":{"shape":"AwsJobAbortCriteriaFailureType"},
4058
+ "action":{"shape":"AwsJobAbortCriteriaAbortAction"},
4059
+ "thresholdPercentage":{"shape":"AwsJobAbortCriteriaAbortThresholdPercentage"},
4060
+ "minNumberOfExecutedThings":{"shape":"AwsJobAbortCriteriaMinimumNumberOfExecutedThings"}
4061
+ }
4062
+ },
4063
+ "AwsJobAbortCriteriaAbortAction":{
4064
+ "type":"string",
4065
+ "enum":["CANCEL"]
4066
+ },
4067
+ "AwsJobAbortCriteriaAbortThresholdPercentage":{
4068
+ "type":"double",
4069
+ "max":100
4070
+ },
4071
+ "AwsJobAbortCriteriaFailureType":{
4072
+ "type":"string",
4073
+ "enum":[
4074
+ "FAILED",
4075
+ "REJECTED",
4076
+ "TIMED_OUT",
4077
+ "ALL"
4078
+ ]
4079
+ },
4080
+ "AwsJobAbortCriteriaList":{
4081
+ "type":"list",
4082
+ "member":{"shape":"AwsJobAbortCriteria"},
4083
+ "min":1
4084
+ },
4085
+ "AwsJobAbortCriteriaMinimumNumberOfExecutedThings":{
4086
+ "type":"integer",
4087
+ "min":1
4088
+ },
4041
4089
  "AwsJobExecutionsRolloutConfig":{
4042
4090
  "type":"structure",
4043
4091
  "members":{
4044
- "maximumPerMinute":{"shape":"MaximumPerMinute"}
4092
+ "maximumPerMinute":{"shape":"MaximumPerMinute"},
4093
+ "exponentialRate":{"shape":"AwsJobExponentialRolloutRate"}
4094
+ }
4095
+ },
4096
+ "AwsJobExponentialRolloutRate":{
4097
+ "type":"structure",
4098
+ "required":[
4099
+ "baseRatePerMinute",
4100
+ "incrementFactor",
4101
+ "rateIncreaseCriteria"
4102
+ ],
4103
+ "members":{
4104
+ "baseRatePerMinute":{"shape":"AwsJobRolloutRatePerMinute"},
4105
+ "incrementFactor":{"shape":"AwsJobRolloutIncrementFactor"},
4106
+ "rateIncreaseCriteria":{"shape":"AwsJobRateIncreaseCriteria"}
4045
4107
  }
4046
4108
  },
4047
4109
  "AwsJobPresignedUrlConfig":{
@@ -4050,6 +4112,30 @@
4050
4112
  "expiresInSec":{"shape":"ExpiresInSeconds"}
4051
4113
  }
4052
4114
  },
4115
+ "AwsJobRateIncreaseCriteria":{
4116
+ "type":"structure",
4117
+ "members":{
4118
+ "numberOfNotifiedThings":{"shape":"AwsJobRateIncreaseCriteriaNumberOfThings"},
4119
+ "numberOfSucceededThings":{"shape":"AwsJobRateIncreaseCriteriaNumberOfThings"}
4120
+ }
4121
+ },
4122
+ "AwsJobRateIncreaseCriteriaNumberOfThings":{
4123
+ "type":"integer",
4124
+ "min":1
4125
+ },
4126
+ "AwsJobRolloutIncrementFactor":{"type":"double"},
4127
+ "AwsJobRolloutRatePerMinute":{
4128
+ "type":"integer",
4129
+ "max":1000,
4130
+ "min":1
4131
+ },
4132
+ "AwsJobTimeoutConfig":{
4133
+ "type":"structure",
4134
+ "members":{
4135
+ "inProgressTimeoutInMinutes":{"shape":"AwsJobTimeoutInProgressTimeoutInMinutes"}
4136
+ }
4137
+ },
4138
+ "AwsJobTimeoutInProgressTimeoutInMinutes":{"type":"long"},
4053
4139
  "Behavior":{
4054
4140
  "type":"structure",
4055
4141
  "required":["name"],
@@ -4781,6 +4867,8 @@
4781
4867
  "targetSelection":{"shape":"TargetSelection"},
4782
4868
  "awsJobExecutionsRolloutConfig":{"shape":"AwsJobExecutionsRolloutConfig"},
4783
4869
  "awsJobPresignedUrlConfig":{"shape":"AwsJobPresignedUrlConfig"},
4870
+ "awsJobAbortConfig":{"shape":"AwsJobAbortConfig"},
4871
+ "awsJobTimeoutConfig":{"shape":"AwsJobTimeoutConfig"},
4784
4872
  "files":{"shape":"OTAUpdateFiles"},
4785
4873
  "roleArn":{"shape":"RoleArn"},
4786
4874
  "additionalParameters":{"shape":"AdditionalParameterMap"},
@@ -418,6 +418,10 @@
418
418
  {"shape":"EC2UnexpectedException"},
419
419
  {"shape":"SubnetIPAddressLimitReachedException"},
420
420
  {"shape":"ENILimitReachedException"},
421
+ {"shape":"EFSMountConnectivityException"},
422
+ {"shape":"EFSMountFailureException"},
423
+ {"shape":"EFSMountTimeoutException"},
424
+ {"shape":"EFSIOException"},
421
425
  {"shape":"EC2ThrottledException"},
422
426
  {"shape":"EC2AccessDeniedException"},
423
427
  {"shape":"InvalidSubnetIDException"},
@@ -1067,7 +1071,8 @@
1067
1071
  "KMSKeyArn":{"shape":"KMSKeyArn"},
1068
1072
  "TracingConfig":{"shape":"TracingConfig"},
1069
1073
  "Tags":{"shape":"Tags"},
1070
- "Layers":{"shape":"LayerList"}
1074
+ "Layers":{"shape":"LayerList"},
1075
+ "FileSystemConfigs":{"shape":"FileSystemConfigList"}
1071
1076
  }
1072
1077
  },
1073
1078
  "Date":{"type":"timestamp"},
@@ -1234,6 +1239,42 @@
1234
1239
  "error":{"httpStatusCode":502},
1235
1240
  "exception":true
1236
1241
  },
1242
+ "EFSIOException":{
1243
+ "type":"structure",
1244
+ "members":{
1245
+ "Type":{"shape":"String"},
1246
+ "Message":{"shape":"String"}
1247
+ },
1248
+ "error":{"httpStatusCode":410},
1249
+ "exception":true
1250
+ },
1251
+ "EFSMountConnectivityException":{
1252
+ "type":"structure",
1253
+ "members":{
1254
+ "Type":{"shape":"String"},
1255
+ "Message":{"shape":"String"}
1256
+ },
1257
+ "error":{"httpStatusCode":408},
1258
+ "exception":true
1259
+ },
1260
+ "EFSMountFailureException":{
1261
+ "type":"structure",
1262
+ "members":{
1263
+ "Type":{"shape":"String"},
1264
+ "Message":{"shape":"String"}
1265
+ },
1266
+ "error":{"httpStatusCode":403},
1267
+ "exception":true
1268
+ },
1269
+ "EFSMountTimeoutException":{
1270
+ "type":"structure",
1271
+ "members":{
1272
+ "Type":{"shape":"String"},
1273
+ "Message":{"shape":"String"}
1274
+ },
1275
+ "error":{"httpStatusCode":408},
1276
+ "exception":true
1277
+ },
1237
1278
  "ENILimitReachedException":{
1238
1279
  "type":"structure",
1239
1280
  "members":{
@@ -1316,6 +1357,27 @@
1316
1357
  "min":0,
1317
1358
  "pattern":"[a-zA-Z0-9._\\-]+"
1318
1359
  },
1360
+ "FileSystemArn":{
1361
+ "type":"string",
1362
+ "max":200,
1363
+ "pattern":"arn:aws[a-zA-Z-]*:elasticfilesystem:[a-z]{2}((-gov)|(-iso(b?)))?-[a-z]+-\\d{1}:\\d{12}:access-point/fsap-[a-f0-9]{17}"
1364
+ },
1365
+ "FileSystemConfig":{
1366
+ "type":"structure",
1367
+ "required":[
1368
+ "Arn",
1369
+ "LocalMountPath"
1370
+ ],
1371
+ "members":{
1372
+ "Arn":{"shape":"FileSystemArn"},
1373
+ "LocalMountPath":{"shape":"LocalMountPath"}
1374
+ }
1375
+ },
1376
+ "FileSystemConfigList":{
1377
+ "type":"list",
1378
+ "member":{"shape":"FileSystemConfig"},
1379
+ "max":1
1380
+ },
1319
1381
  "FunctionArn":{
1320
1382
  "type":"string",
1321
1383
  "pattern":"arn:(aws[a-zA-Z-]*)?:lambda:[a-z]{2}(-gov)?-[a-z]+-\\d{1}:\\d{12}:function:[a-zA-Z0-9-_]+(:(\\$LATEST|[a-zA-Z0-9-_]+))?"
@@ -1364,7 +1426,8 @@
1364
1426
  "StateReasonCode":{"shape":"StateReasonCode"},
1365
1427
  "LastUpdateStatus":{"shape":"LastUpdateStatus"},
1366
1428
  "LastUpdateStatusReason":{"shape":"LastUpdateStatusReason"},
1367
- "LastUpdateStatusReasonCode":{"shape":"LastUpdateStatusReasonCode"}
1429
+ "LastUpdateStatusReasonCode":{"shape":"LastUpdateStatusReasonCode"},
1430
+ "FileSystemConfigs":{"shape":"FileSystemConfigList"}
1368
1431
  }
1369
1432
  },
1370
1433
  "FunctionEventInvokeConfig":{
@@ -2197,6 +2260,11 @@
2197
2260
  "Versions":{"shape":"FunctionList"}
2198
2261
  }
2199
2262
  },
2263
+ "LocalMountPath":{
2264
+ "type":"string",
2265
+ "max":160,
2266
+ "pattern":"^/mnt/[a-zA-Z0-9-_.]+$"
2267
+ },
2200
2268
  "LogType":{
2201
2269
  "type":"string",
2202
2270
  "enum":[
@@ -2893,7 +2961,8 @@
2893
2961
  "KMSKeyArn":{"shape":"KMSKeyArn"},
2894
2962
  "TracingConfig":{"shape":"TracingConfig"},
2895
2963
  "RevisionId":{"shape":"String"},
2896
- "Layers":{"shape":"LayerList"}
2964
+ "Layers":{"shape":"LayerList"},
2965
+ "FileSystemConfigs":{"shape":"FileSystemConfigList"}
2897
2966
  }
2898
2967
  },
2899
2968
  "UpdateFunctionEventInvokeConfigRequest":{
@@ -649,9 +649,9 @@
649
649
  "output": {
650
650
  }
651
651
  },
652
- "description": "The following example returns details for the provisioned concurrency configuration for the BLUE alias of the specified function.",
653
- "id": "to-get-a-provisioned-concurrency-configuration-1586490192690",
654
- "title": "To get a provisioned concurrency configuration"
652
+ "description": "The following example displays details for the provisioned concurrency configuration for the BLUE alias of the specified function.",
653
+ "id": "to-view-a-provisioned-concurrency-configuration-1586490192690",
654
+ "title": "To view a provisioned concurrency configuration"
655
655
  },
656
656
  {
657
657
  "input": {
@@ -671,9 +671,9 @@
671
671
  "output": {
672
672
  }
673
673
  },
674
- "description": "The following example displays details for the provisioned concurrency configuration for the BLUE alias of the specified function.",
675
- "id": "to-view-a-provisioned-concurrency-configuration-1586490192690",
676
- "title": "To view a provisioned concurrency configuration"
674
+ "description": "The following example returns details for the provisioned concurrency configuration for the BLUE alias of the specified function.",
675
+ "id": "to-get-a-provisioned-concurrency-configuration-1586490192690",
676
+ "title": "To get a provisioned concurrency configuration"
677
677
  }
678
678
  ],
679
679
  "Invoke": [
@@ -917,7 +917,8 @@
917
917
  "lastUpdatedDate":{"shape":"Timestamp"},
918
918
  "createdDate":{"shape":"Timestamp"},
919
919
  "version":{"shape":"Version"},
920
- "checksum":{"shape":"String"}
920
+ "checksum":{"shape":"String"},
921
+ "kendraConfiguration":{"shape":"KendraConfiguration"}
921
922
  }
922
923
  },
923
924
  "CreateSlotTypeVersionRequest":{
@@ -1598,7 +1599,8 @@
1598
1599
  "lastUpdatedDate":{"shape":"Timestamp"},
1599
1600
  "createdDate":{"shape":"Timestamp"},
1600
1601
  "version":{"shape":"Version"},
1601
- "checksum":{"shape":"String"}
1602
+ "checksum":{"shape":"String"},
1603
+ "kendraConfiguration":{"shape":"KendraConfiguration"}
1602
1604
  }
1603
1605
  },
1604
1606
  "GetIntentVersionsRequest":{
@@ -1787,7 +1789,7 @@
1787
1789
  "type":"string",
1788
1790
  "max":2048,
1789
1791
  "min":20,
1790
- "pattern":"^arn:[\\w\\-]+:iam::[\\d]{12}:role\\/[\\w+=,\\.@\\-]{1,64}$"
1792
+ "pattern":"^arn:[\\w\\-]+:iam::[\\d]{12}:role/.+$"
1791
1793
  },
1792
1794
  "ImportStatus":{
1793
1795
  "type":"string",
@@ -1847,6 +1849,24 @@
1847
1849
  "exception":true,
1848
1850
  "fault":true
1849
1851
  },
1852
+ "KendraConfiguration":{
1853
+ "type":"structure",
1854
+ "required":[
1855
+ "kendraIndex",
1856
+ "role"
1857
+ ],
1858
+ "members":{
1859
+ "kendraIndex":{"shape":"KendraIndexArn"},
1860
+ "queryFilterString":{"shape":"QueryFilterString"},
1861
+ "role":{"shape":"roleArn"}
1862
+ }
1863
+ },
1864
+ "KendraIndexArn":{
1865
+ "type":"string",
1866
+ "max":2048,
1867
+ "min":20,
1868
+ "pattern":"arn:aws:kendra:[a-z]+-[a-z]+-[0-9]:[0-9]{12}:index\\/[a-zA-Z0-9][a-zA-Z0-9_-]*"
1869
+ },
1850
1870
  "KmsKeyArn":{
1851
1871
  "type":"string",
1852
1872
  "max":2048,
@@ -2159,7 +2179,8 @@
2159
2179
  "fulfillmentActivity":{"shape":"FulfillmentActivity"},
2160
2180
  "parentIntentSignature":{"shape":"BuiltinIntentSignature"},
2161
2181
  "checksum":{"shape":"String"},
2162
- "createVersion":{"shape":"Boolean"}
2182
+ "createVersion":{"shape":"Boolean"},
2183
+ "kendraConfiguration":{"shape":"KendraConfiguration"}
2163
2184
  }
2164
2185
  },
2165
2186
  "PutIntentResponse":{
@@ -2180,7 +2201,8 @@
2180
2201
  "createdDate":{"shape":"Timestamp"},
2181
2202
  "version":{"shape":"Version"},
2182
2203
  "checksum":{"shape":"String"},
2183
- "createVersion":{"shape":"Boolean"}
2204
+ "createVersion":{"shape":"Boolean"},
2205
+ "kendraConfiguration":{"shape":"KendraConfiguration"}
2184
2206
  }
2185
2207
  },
2186
2208
  "PutSlotTypeRequest":{
@@ -2217,6 +2239,10 @@
2217
2239
  "slotTypeConfigurations":{"shape":"SlotTypeConfigurations"}
2218
2240
  }
2219
2241
  },
2242
+ "QueryFilterString":{
2243
+ "type":"string",
2244
+ "min":0
2245
+ },
2220
2246
  "ReferenceType":{
2221
2247
  "type":"string",
2222
2248
  "enum":[
@@ -2545,6 +2571,12 @@
2545
2571
  "max":64,
2546
2572
  "min":1,
2547
2573
  "pattern":"\\$LATEST|[0-9]+"
2574
+ },
2575
+ "roleArn":{
2576
+ "type":"string",
2577
+ "max":2048,
2578
+ "min":20,
2579
+ "pattern":"arn:aws:iam::[0-9]{12}:role/.*"
2548
2580
  }
2549
2581
  }
2550
2582
  }
@@ -791,6 +791,7 @@
791
791
  "Justin",
792
792
  "Karl",
793
793
  "Kendra",
794
+ "Kevin",
794
795
  "Kimberly",
795
796
  "Lea",
796
797
  "Liv",
@@ -31,7 +31,8 @@
31
31
  {"shape":"InvalidInput"},
32
32
  {"shape":"PublicZoneVPCAssociation"},
33
33
  {"shape":"ConflictingDomainExists"},
34
- {"shape":"LimitsExceeded"}
34
+ {"shape":"LimitsExceeded"},
35
+ {"shape":"PriorRequestNotComplete"}
35
36
  ]
36
37
  },
37
38
  "ChangeResourceRecordSets":{
@@ -450,7 +450,8 @@
450
450
  "ClusterId":{"shape":"ClusterId"},
451
451
  "SnowballType":{"shape":"SnowballType"},
452
452
  "ForwardingAddressId":{"shape":"AddressId"},
453
- "TaxDocuments":{"shape":"TaxDocuments"}
453
+ "TaxDocuments":{"shape":"TaxDocuments"},
454
+ "DeviceConfiguration":{"shape":"DeviceConfiguration"}
454
455
  }
455
456
  },
456
457
  "CreateJobResult":{
@@ -522,6 +523,12 @@
522
523
  "SubJobMetadata":{"shape":"JobMetadataList"}
523
524
  }
524
525
  },
526
+ "DeviceConfiguration":{
527
+ "type":"structure",
528
+ "members":{
529
+ "SnowconeDeviceConfiguration":{"shape":"SnowconeDeviceConfiguration"}
530
+ }
531
+ },
525
532
  "Ec2AmiResource":{
526
533
  "type":"structure",
527
534
  "required":["AmiId"],
@@ -699,7 +706,8 @@
699
706
  "JobLogInfo":{"shape":"JobLogs"},
700
707
  "ClusterId":{"shape":"String"},
701
708
  "ForwardingAddressId":{"shape":"AddressId"},
702
- "TaxDocuments":{"shape":"TaxDocuments"}
709
+ "TaxDocuments":{"shape":"TaxDocuments"},
710
+ "DeviceConfiguration":{"shape":"DeviceConfiguration"}
703
711
  }
704
712
  },
705
713
  "JobMetadataList":{
@@ -898,6 +906,7 @@
898
906
  "T100",
899
907
  "T42",
900
908
  "T98",
909
+ "T8",
901
910
  "NoPreference"
902
911
  ]
903
912
  },
@@ -908,9 +917,16 @@
908
917
  "EDGE",
909
918
  "EDGE_C",
910
919
  "EDGE_CG",
911
- "EDGE_S"
920
+ "EDGE_S",
921
+ "SNC1_HDD"
912
922
  ]
913
923
  },
924
+ "SnowconeDeviceConfiguration":{
925
+ "type":"structure",
926
+ "members":{
927
+ "WirelessConnection":{"shape":"WirelessConnection"}
928
+ }
929
+ },
914
930
  "SnsTopicARN":{
915
931
  "type":"string",
916
932
  "max":255,
@@ -972,6 +988,12 @@
972
988
  "type":"structure",
973
989
  "members":{
974
990
  }
991
+ },
992
+ "WirelessConnection":{
993
+ "type":"structure",
994
+ "members":{
995
+ "IsWifiEnabled":{"shape":"Boolean"}
996
+ }
975
997
  }
976
998
  }
977
999
  }