aws-sdk-core 2.11.527 → 2.11.532

Sign up to get free protection for your applications and to get access to all the features.
@@ -13514,6 +13514,10 @@
13514
13514
  "EbsOptimizedInfo":{
13515
13515
  "shape":"EbsOptimizedInfo",
13516
13516
  "locationName":"ebsOptimizedInfo"
13517
+ },
13518
+ "NvmeSupport":{
13519
+ "shape":"EbsNvmeSupport",
13520
+ "locationName":"nvmeSupport"
13517
13521
  }
13518
13522
  }
13519
13523
  },
@@ -13551,6 +13555,14 @@
13551
13555
  }
13552
13556
  }
13553
13557
  },
13558
+ "EbsNvmeSupport":{
13559
+ "type":"string",
13560
+ "enum":[
13561
+ "unsupported",
13562
+ "supported",
13563
+ "required"
13564
+ ]
13565
+ },
13554
13566
  "EbsOptimizedInfo":{
13555
13567
  "type":"structure",
13556
13568
  "members":{
@@ -24128,6 +24140,7 @@
24128
24140
  "dedicated-host",
24129
24141
  "dhcp-options",
24130
24142
  "elastic-ip",
24143
+ "elastic-gpu",
24131
24144
  "fleet",
24132
24145
  "fpga-image",
24133
24146
  "host-reservation",
@@ -29012,6 +29025,7 @@
29012
29025
  "enum":[
29013
29026
  "standard",
29014
29027
  "io1",
29028
+ "io2",
29015
29029
  "gp2",
29016
29030
  "sc1",
29017
29031
  "st1"
@@ -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": [
@@ -6721,6 +6721,27 @@
6721
6721
  }
6722
6722
  }
6723
6723
  },
6724
+ "NexGuardFileMarkerSettings": {
6725
+ "type": "structure",
6726
+ "members": {
6727
+ "License": {
6728
+ "shape": "__stringMin1Max100000",
6729
+ "locationName": "license"
6730
+ },
6731
+ "Payload": {
6732
+ "shape": "__integerMin0Max4194303",
6733
+ "locationName": "payload"
6734
+ },
6735
+ "Preset": {
6736
+ "shape": "__stringMin1Max256",
6737
+ "locationName": "preset"
6738
+ },
6739
+ "Strength": {
6740
+ "shape": "WatermarkingStrength",
6741
+ "locationName": "strength"
6742
+ }
6743
+ }
6744
+ },
6724
6745
  "NielsenConfiguration": {
6725
6746
  "type": "structure",
6726
6747
  "members": {
@@ -7006,6 +7027,15 @@
7006
7027
  }
7007
7028
  }
7008
7029
  },
7030
+ "PartnerWatermarking": {
7031
+ "type": "structure",
7032
+ "members": {
7033
+ "NexguardFileMarkerSettings": {
7034
+ "shape": "NexGuardFileMarkerSettings",
7035
+ "locationName": "nexguardFileMarkerSettings"
7036
+ }
7037
+ }
7038
+ },
7009
7039
  "Preset": {
7010
7040
  "type": "structure",
7011
7041
  "members": {
@@ -8055,6 +8085,10 @@
8055
8085
  "shape": "NoiseReducer",
8056
8086
  "locationName": "noiseReducer"
8057
8087
  },
8088
+ "PartnerWatermarking": {
8089
+ "shape": "PartnerWatermarking",
8090
+ "locationName": "partnerWatermarking"
8091
+ },
8058
8092
  "TimecodeBurnin": {
8059
8093
  "shape": "TimecodeBurnin",
8060
8094
  "locationName": "timecodeBurnin"
@@ -8300,6 +8334,16 @@
8300
8334
  }
8301
8335
  }
8302
8336
  },
8337
+ "WatermarkingStrength": {
8338
+ "type": "string",
8339
+ "enum": [
8340
+ "LIGHTEST",
8341
+ "LIGHTER",
8342
+ "DEFAULT",
8343
+ "STRONGER",
8344
+ "STRONGEST"
8345
+ ]
8346
+ },
8303
8347
  "WavFormat": {
8304
8348
  "type": "string",
8305
8349
  "enum": [
@@ -8448,6 +8492,11 @@
8448
8492
  "min": 0,
8449
8493
  "max": 4
8450
8494
  },
8495
+ "__integerMin0Max4194303": {
8496
+ "type": "integer",
8497
+ "min": 0,
8498
+ "max": 4194303
8499
+ },
8451
8500
  "__integerMin0Max47185920": {
8452
8501
  "type": "integer",
8453
8502
  "min": 0,
@@ -9053,6 +9102,11 @@
9053
9102
  "max": 24,
9054
9103
  "pattern": "^[A-Za-z0-9+\\/]{22}==$|^[A-Za-z0-9+\\/]{16}$"
9055
9104
  },
9105
+ "__stringMin1Max100000": {
9106
+ "type": "string",
9107
+ "min": 1,
9108
+ "max": 100000
9109
+ },
9056
9110
  "__stringMin1Max256": {
9057
9111
  "type": "string",
9058
9112
  "min": 1,
@@ -9187,4 +9241,4 @@
9187
9241
  "timestampFormat": "unixTimestamp"
9188
9242
  }
9189
9243
  }
9190
- }
9244
+ }
@@ -4715,6 +4715,10 @@
4715
4715
  "shape": "__listOfCaptionDescription",
4716
4716
  "locationName": "captionDescriptions"
4717
4717
  },
4718
+ "FeatureActivations": {
4719
+ "shape": "FeatureActivations",
4720
+ "locationName": "featureActivations"
4721
+ },
4718
4722
  "GlobalConfiguration": {
4719
4723
  "shape": "GlobalConfiguration",
4720
4724
  "locationName": "globalConfiguration"
@@ -4743,6 +4747,22 @@
4743
4747
  "TimecodeConfig"
4744
4748
  ]
4745
4749
  },
4750
+ "FeatureActivations": {
4751
+ "type": "structure",
4752
+ "members": {
4753
+ "InputPrepareScheduleActions": {
4754
+ "shape": "FeatureActivationsInputPrepareScheduleActions",
4755
+ "locationName": "inputPrepareScheduleActions"
4756
+ }
4757
+ }
4758
+ },
4759
+ "FeatureActivationsInputPrepareScheduleActions": {
4760
+ "type": "string",
4761
+ "enum": [
4762
+ "DISABLED",
4763
+ "ENABLED"
4764
+ ]
4765
+ },
4746
4766
  "FecOutputIncludeFec": {
4747
4767
  "type": "string",
4748
4768
  "enum": [
@@ -6706,6 +6726,26 @@
6706
6726
  "PRIMARY_INPUT_PREFERRED"
6707
6727
  ]
6708
6728
  },
6729
+ "InputPrepareScheduleActionSettings": {
6730
+ "type": "structure",
6731
+ "members": {
6732
+ "InputAttachmentNameReference": {
6733
+ "shape": "__string",
6734
+ "locationName": "inputAttachmentNameReference"
6735
+ },
6736
+ "InputClippingSettings": {
6737
+ "shape": "InputClippingSettings",
6738
+ "locationName": "inputClippingSettings"
6739
+ },
6740
+ "UrlPath": {
6741
+ "shape": "__listOf__string",
6742
+ "locationName": "urlPath"
6743
+ }
6744
+ },
6745
+ "required": [
6746
+ "InputAttachmentNameReference"
6747
+ ]
6748
+ },
6709
6749
  "InputResolution": {
6710
6750
  "type": "string",
6711
6751
  "enum": [
@@ -9203,6 +9243,10 @@
9203
9243
  "shape": "HlsTimedMetadataScheduleActionSettings",
9204
9244
  "locationName": "hlsTimedMetadataSettings"
9205
9245
  },
9246
+ "InputPrepareSettings": {
9247
+ "shape": "InputPrepareScheduleActionSettings",
9248
+ "locationName": "inputPrepareSettings"
9249
+ },
9206
9250
  "InputSwitchSettings": {
9207
9251
  "shape": "InputSwitchScheduleActionSettings",
9208
9252
  "locationName": "inputSwitchSettings"