aws-sdk-core 2.11.574 → 2.11.579

Sign up to get free protection for your applications and to get access to all the features.
@@ -28,6 +28,11 @@
28
28
  "output_token": "Marker",
29
29
  "result_key": "Instances"
30
30
  },
31
+ "ListNotebookExecutions": {
32
+ "input_token": "Marker",
33
+ "output_token": "Marker",
34
+ "result_key": "NotebookExecutions"
35
+ },
31
36
  "ListSecurityConfigurations": {
32
37
  "input_token": "Marker",
33
38
  "output_token": "Marker",
@@ -1022,6 +1022,10 @@
1022
1022
  "shape":"DomainDetails",
1023
1023
  "locationName":"domainDetails"
1024
1024
  },
1025
+ "ErrorCode":{
1026
+ "shape":"String",
1027
+ "locationName":"errorCode"
1028
+ },
1025
1029
  "RemoteIpDetails":{
1026
1030
  "shape":"RemoteIpDetails",
1027
1031
  "locationName":"remoteIpDetails"
@@ -751,7 +751,7 @@
751
751
  },
752
752
  "DataSourceInclusionsExclusionsStringsMember":{
753
753
  "type":"string",
754
- "max":150,
754
+ "max":50,
755
755
  "min":1
756
756
  },
757
757
  "DataSourceName":{
@@ -1596,7 +1596,8 @@
1596
1596
  "DocumentTitle":{"shape":"TextWithHighlights"},
1597
1597
  "DocumentExcerpt":{"shape":"TextWithHighlights"},
1598
1598
  "DocumentURI":{"shape":"Url"},
1599
- "DocumentAttributes":{"shape":"DocumentAttributeList"}
1599
+ "DocumentAttributes":{"shape":"DocumentAttributeList"},
1600
+ "ScoreAttributes":{"shape":"ScoreAttributes"}
1600
1601
  }
1601
1602
  },
1602
1603
  "QueryResultItemList":{
@@ -1875,6 +1876,20 @@
1875
1876
  ]
1876
1877
  },
1877
1878
  "ScanSchedule":{"type":"string"},
1879
+ "ScoreAttributes":{
1880
+ "type":"structure",
1881
+ "members":{
1882
+ "ScoreConfidence":{"shape":"ScoreConfidence"}
1883
+ }
1884
+ },
1885
+ "ScoreConfidence":{
1886
+ "type":"string",
1887
+ "enum":[
1888
+ "VERY_HIGH",
1889
+ "HIGH",
1890
+ "MEDIUM"
1891
+ ]
1892
+ },
1878
1893
  "Search":{
1879
1894
  "type":"structure",
1880
1895
  "members":{
@@ -2200,6 +2200,10 @@
2200
2200
  "shape": "__long",
2201
2201
  "locationName": "classifiableObjectCount"
2202
2202
  },
2203
+ "classifiableSizeInBytes": {
2204
+ "shape": "__long",
2205
+ "locationName": "classifiableSizeInBytes"
2206
+ },
2203
2207
  "lastUpdated": {
2204
2208
  "shape": "__timestampIso8601",
2205
2209
  "locationName": "lastUpdated"
@@ -2240,6 +2244,14 @@
2240
2244
  "shape": "__listOfKeyValuePair",
2241
2245
  "locationName": "tags"
2242
2246
  },
2247
+ "unclassifiableObjectCount": {
2248
+ "shape": "ObjectLevelStatistics",
2249
+ "locationName": "unclassifiableObjectCount"
2250
+ },
2251
+ "unclassifiableObjectSizeInBytes": {
2252
+ "shape": "ObjectLevelStatistics",
2253
+ "locationName": "unclassifiableObjectSizeInBytes"
2254
+ },
2243
2255
  "versioning": {
2244
2256
  "shape": "__boolean",
2245
2257
  "locationName": "versioning"
@@ -3040,7 +3052,8 @@
3040
3052
  "type": "string",
3041
3053
  "enum": [
3042
3054
  "PUBLIC",
3043
- "NOT_PUBLIC"
3055
+ "NOT_PUBLIC",
3056
+ "UNKNOWN"
3044
3057
  ]
3045
3058
  },
3046
3059
  "Empty": {
@@ -3367,6 +3380,10 @@
3367
3380
  "shape": "__long",
3368
3381
  "locationName": "classifiableObjectCount"
3369
3382
  },
3383
+ "classifiableSizeInBytes": {
3384
+ "shape": "__long",
3385
+ "locationName": "classifiableSizeInBytes"
3386
+ },
3370
3387
  "lastUpdated": {
3371
3388
  "shape": "__timestampIso8601",
3372
3389
  "locationName": "lastUpdated"
@@ -3382,6 +3399,14 @@
3382
3399
  "sizeInBytesCompressed": {
3383
3400
  "shape": "__long",
3384
3401
  "locationName": "sizeInBytesCompressed"
3402
+ },
3403
+ "unclassifiableObjectCount": {
3404
+ "shape": "ObjectLevelStatistics",
3405
+ "locationName": "unclassifiableObjectCount"
3406
+ },
3407
+ "unclassifiableObjectSizeInBytes": {
3408
+ "shape": "ObjectLevelStatistics",
3409
+ "locationName": "unclassifiableObjectSizeInBytes"
3385
3410
  }
3386
3411
  }
3387
3412
  },
@@ -4367,6 +4392,23 @@
4367
4392
  }
4368
4393
  }
4369
4394
  },
4395
+ "ObjectLevelStatistics": {
4396
+ "type": "structure",
4397
+ "members": {
4398
+ "fileType": {
4399
+ "shape": "__long",
4400
+ "locationName": "fileType"
4401
+ },
4402
+ "storageClass": {
4403
+ "shape": "__long",
4404
+ "locationName": "storageClass"
4405
+ },
4406
+ "total": {
4407
+ "shape": "__long",
4408
+ "locationName": "total"
4409
+ }
4410
+ }
4411
+ },
4370
4412
  "OrderBy": {
4371
4413
  "type": "string",
4372
4414
  "enum": [
@@ -4787,7 +4829,8 @@
4787
4829
  "enum": [
4788
4830
  "EXTERNAL",
4789
4831
  "INTERNAL",
4790
- "NOT_SHARED"
4832
+ "NOT_SHARED",
4833
+ "UNKNOWN"
4791
4834
  ]
4792
4835
  },
4793
4836
  "SimpleScopeTerm": {
@@ -1060,6 +1060,14 @@
1060
1060
  "SuggestedPresentationDelaySeconds": {
1061
1061
  "locationName": "suggestedPresentationDelaySeconds",
1062
1062
  "shape": "__integer"
1063
+ },
1064
+ "UtcTiming": {
1065
+ "locationName": "utcTiming",
1066
+ "shape": "UtcTiming"
1067
+ },
1068
+ "UtcTimingUri": {
1069
+ "locationName": "utcTimingUri",
1070
+ "shape": "__string"
1063
1071
  }
1064
1072
  },
1065
1073
  "type": "structure"
@@ -2422,6 +2430,14 @@
2422
2430
  },
2423
2431
  "type": "structure"
2424
2432
  },
2433
+ "UtcTiming": {
2434
+ "enum": [
2435
+ "NONE",
2436
+ "HTTP-HEAD",
2437
+ "HTTP-ISO"
2438
+ ],
2439
+ "type": "string"
2440
+ },
2425
2441
  "__AdTriggersElement": {
2426
2442
  "enum": [
2427
2443
  "SPLICE_INSERT",
@@ -1883,7 +1883,8 @@
1883
1883
  "RecordState":{"shape":"RecordState"},
1884
1884
  "RelatedFindings":{"shape":"RelatedFindingList"},
1885
1885
  "Note":{"shape":"Note"},
1886
- "Vulnerabilities":{"shape":"VulnerabilityList"}
1886
+ "Vulnerabilities":{"shape":"VulnerabilityList"},
1887
+ "PatchSummary":{"shape":"PatchSummary"}
1887
1888
  }
1888
1889
  },
1889
1890
  "AwsSecurityFindingFilters":{
@@ -3084,6 +3085,23 @@
3084
3085
  "aws-us-gov"
3085
3086
  ]
3086
3087
  },
3088
+ "PatchSummary":{
3089
+ "type":"structure",
3090
+ "required":["Id"],
3091
+ "members":{
3092
+ "Id":{"shape":"NonEmptyString"},
3093
+ "InstalledCount":{"shape":"Integer"},
3094
+ "MissingCount":{"shape":"Integer"},
3095
+ "FailedCount":{"shape":"Integer"},
3096
+ "InstalledOtherCount":{"shape":"Integer"},
3097
+ "InstalledRejectedCount":{"shape":"Integer"},
3098
+ "InstalledPendingReboot":{"shape":"Integer"},
3099
+ "OperationStartTime":{"shape":"NonEmptyString"},
3100
+ "OperationEndTime":{"shape":"NonEmptyString"},
3101
+ "RebootOption":{"shape":"NonEmptyString"},
3102
+ "Operation":{"shape":"NonEmptyString"}
3103
+ }
3104
+ },
3087
3105
  "PortRange":{
3088
3106
  "type":"structure",
3089
3107
  "members":{
@@ -378,6 +378,7 @@
378
378
  "members":{
379
379
  "resource":{"shape":"Arn"},
380
380
  "input":{"shape":"SensitiveData"},
381
+ "inputDetails":{"shape":"HistoryEventExecutionDataDetails"},
381
382
  "timeoutInSeconds":{
382
383
  "shape":"TimeoutInSeconds",
383
384
  "box":true
@@ -397,7 +398,8 @@
397
398
  "ActivitySucceededEventDetails":{
398
399
  "type":"structure",
399
400
  "members":{
400
- "output":{"shape":"SensitiveData"}
401
+ "output":{"shape":"SensitiveData"},
402
+ "outputDetails":{"shape":"HistoryEventExecutionDataDetails"}
401
403
  }
402
404
  },
403
405
  "ActivityTimedOutEventDetails":{
@@ -419,6 +421,12 @@
419
421
  "max":256,
420
422
  "min":1
421
423
  },
424
+ "CloudWatchEventsExecutionDataDetails":{
425
+ "type":"structure",
426
+ "members":{
427
+ "included":{"shape":"included"}
428
+ }
429
+ },
422
430
  "CloudWatchLogsLogGroup":{
423
431
  "type":"structure",
424
432
  "members":{
@@ -427,7 +435,7 @@
427
435
  },
428
436
  "ConnectorParameters":{
429
437
  "type":"string",
430
- "max":32768,
438
+ "max":262144,
431
439
  "min":0,
432
440
  "sensitive":true
433
441
  },
@@ -540,8 +548,7 @@
540
548
  "executionArn",
541
549
  "stateMachineArn",
542
550
  "status",
543
- "startDate",
544
- "input"
551
+ "startDate"
545
552
  ],
546
553
  "members":{
547
554
  "executionArn":{"shape":"Arn"},
@@ -551,7 +558,9 @@
551
558
  "startDate":{"shape":"Timestamp"},
552
559
  "stopDate":{"shape":"Timestamp"},
553
560
  "input":{"shape":"SensitiveData"},
554
- "output":{"shape":"SensitiveData"}
561
+ "inputDetails":{"shape":"CloudWatchEventsExecutionDataDetails"},
562
+ "output":{"shape":"SensitiveData"},
563
+ "outputDetails":{"shape":"CloudWatchEventsExecutionDataDetails"}
555
564
  }
556
565
  },
557
566
  "DescribeStateMachineForExecutionInput":{
@@ -670,6 +679,7 @@
670
679
  "type":"structure",
671
680
  "members":{
672
681
  "input":{"shape":"SensitiveData"},
682
+ "inputDetails":{"shape":"HistoryEventExecutionDataDetails"},
673
683
  "roleArn":{"shape":"Arn"}
674
684
  }
675
685
  },
@@ -686,7 +696,8 @@
686
696
  "ExecutionSucceededEventDetails":{
687
697
  "type":"structure",
688
698
  "members":{
689
- "output":{"shape":"SensitiveData"}
699
+ "output":{"shape":"SensitiveData"},
700
+ "outputDetails":{"shape":"HistoryEventExecutionDataDetails"}
690
701
  }
691
702
  },
692
703
  "ExecutionTimedOutEventDetails":{
@@ -718,7 +729,8 @@
718
729
  "executionArn":{"shape":"Arn"},
719
730
  "maxResults":{"shape":"PageSize"},
720
731
  "reverseOrder":{"shape":"ReverseOrder"},
721
- "nextToken":{"shape":"PageToken"}
732
+ "nextToken":{"shape":"PageToken"},
733
+ "includeExecutionData":{"shape":"IncludeExecutionDataGetExecutionHistory"}
722
734
  }
723
735
  },
724
736
  "GetExecutionHistoryOutput":{
@@ -775,6 +787,12 @@
775
787
  "stateExitedEventDetails":{"shape":"StateExitedEventDetails"}
776
788
  }
777
789
  },
790
+ "HistoryEventExecutionDataDetails":{
791
+ "type":"structure",
792
+ "members":{
793
+ "truncated":{"shape":"truncated"}
794
+ }
795
+ },
778
796
  "HistoryEventList":{
779
797
  "type":"list",
780
798
  "member":{"shape":"HistoryEvent"}
@@ -844,6 +862,10 @@
844
862
  "max":256
845
863
  },
846
864
  "IncludeExecutionData":{"type":"boolean"},
865
+ "IncludeExecutionDataGetExecutionHistory":{
866
+ "type":"boolean",
867
+ "box":true
868
+ },
847
869
  "InvalidArn":{
848
870
  "type":"structure",
849
871
  "members":{
@@ -913,6 +935,7 @@
913
935
  "members":{
914
936
  "resource":{"shape":"Arn"},
915
937
  "input":{"shape":"SensitiveData"},
938
+ "inputDetails":{"shape":"HistoryEventExecutionDataDetails"},
916
939
  "timeoutInSeconds":{
917
940
  "shape":"TimeoutInSeconds",
918
941
  "box":true
@@ -929,7 +952,8 @@
929
952
  "LambdaFunctionSucceededEventDetails":{
930
953
  "type":"structure",
931
954
  "members":{
932
- "output":{"shape":"SensitiveData"}
955
+ "output":{"shape":"SensitiveData"},
956
+ "outputDetails":{"shape":"HistoryEventExecutionDataDetails"}
933
957
  }
934
958
  },
935
959
  "LambdaFunctionTimedOutEventDetails":{
@@ -1126,12 +1150,12 @@
1126
1150
  },
1127
1151
  "SensitiveData":{
1128
1152
  "type":"string",
1129
- "max":32768,
1153
+ "max":262144,
1130
1154
  "sensitive":true
1131
1155
  },
1132
1156
  "SensitiveDataJobInput":{
1133
1157
  "type":"string",
1134
- "max":65536,
1158
+ "max":262144,
1135
1159
  "sensitive":true
1136
1160
  },
1137
1161
  "SensitiveError":{
@@ -1165,7 +1189,8 @@
1165
1189
  "required":["name"],
1166
1190
  "members":{
1167
1191
  "name":{"shape":"Name"},
1168
- "input":{"shape":"SensitiveData"}
1192
+ "input":{"shape":"SensitiveData"},
1193
+ "inputDetails":{"shape":"HistoryEventExecutionDataDetails"}
1169
1194
  }
1170
1195
  },
1171
1196
  "StateExitedEventDetails":{
@@ -1173,7 +1198,8 @@
1173
1198
  "required":["name"],
1174
1199
  "members":{
1175
1200
  "name":{"shape":"Name"},
1176
- "output":{"shape":"SensitiveData"}
1201
+ "output":{"shape":"SensitiveData"},
1202
+ "outputDetails":{"shape":"HistoryEventExecutionDataDetails"}
1177
1203
  }
1178
1204
  },
1179
1205
  "StateMachineAlreadyExists":{
@@ -1337,6 +1363,10 @@
1337
1363
  "timeoutInSeconds":{
1338
1364
  "shape":"TimeoutInSeconds",
1339
1365
  "box":true
1366
+ },
1367
+ "heartbeatInSeconds":{
1368
+ "shape":"TimeoutInSeconds",
1369
+ "box":true
1340
1370
  }
1341
1371
  }
1342
1372
  },
@@ -1386,7 +1416,8 @@
1386
1416
  "members":{
1387
1417
  "resourceType":{"shape":"Name"},
1388
1418
  "resource":{"shape":"Name"},
1389
- "output":{"shape":"SensitiveData"}
1419
+ "output":{"shape":"SensitiveData"},
1420
+ "outputDetails":{"shape":"HistoryEventExecutionDataDetails"}
1390
1421
  }
1391
1422
  },
1392
1423
  "TaskSucceededEventDetails":{
@@ -1398,7 +1429,8 @@
1398
1429
  "members":{
1399
1430
  "resourceType":{"shape":"Name"},
1400
1431
  "resource":{"shape":"Name"},
1401
- "output":{"shape":"SensitiveData"}
1432
+ "output":{"shape":"SensitiveData"},
1433
+ "outputDetails":{"shape":"HistoryEventExecutionDataDetails"}
1402
1434
  }
1403
1435
  },
1404
1436
  "TaskTimedOut":{
@@ -1472,6 +1504,8 @@
1472
1504
  "members":{
1473
1505
  "updateDate":{"shape":"Timestamp"}
1474
1506
  }
1475
- }
1507
+ },
1508
+ "included":{"type":"boolean"},
1509
+ "truncated":{"type":"boolean"}
1476
1510
  }
1477
1511
  }
@@ -190,6 +190,7 @@
190
190
  "protocols" : [ "https" ]
191
191
  },
192
192
  "endpoints" : {
193
+ "af-south-1" : { },
193
194
  "ap-east-1" : { },
194
195
  "ap-northeast-1" : { },
195
196
  "ap-northeast-2" : { },
@@ -199,6 +200,7 @@
199
200
  "ca-central-1" : { },
200
201
  "eu-central-1" : { },
201
202
  "eu-north-1" : { },
203
+ "eu-south-1" : { },
202
204
  "eu-west-1" : { },
203
205
  "eu-west-2" : { },
204
206
  "eu-west-3" : { },
@@ -5987,6 +5989,12 @@
5987
5989
  },
5988
5990
  "waf-regional" : {
5989
5991
  "endpoints" : {
5992
+ "af-south-1" : {
5993
+ "credentialScope" : {
5994
+ "region" : "af-south-1"
5995
+ },
5996
+ "hostname" : "waf-regional.af-south-1.amazonaws.com"
5997
+ },
5990
5998
  "ap-east-1" : {
5991
5999
  "credentialScope" : {
5992
6000
  "region" : "ap-east-1"
@@ -6041,6 +6049,12 @@
6041
6049
  },
6042
6050
  "hostname" : "waf-regional.eu-north-1.amazonaws.com"
6043
6051
  },
6052
+ "eu-south-1" : {
6053
+ "credentialScope" : {
6054
+ "region" : "eu-south-1"
6055
+ },
6056
+ "hostname" : "waf-regional.eu-south-1.amazonaws.com"
6057
+ },
6044
6058
  "eu-west-1" : {
6045
6059
  "credentialScope" : {
6046
6060
  "region" : "eu-west-1"
@@ -6059,6 +6073,12 @@
6059
6073
  },
6060
6074
  "hostname" : "waf-regional.eu-west-3.amazonaws.com"
6061
6075
  },
6076
+ "fips-af-south-1" : {
6077
+ "credentialScope" : {
6078
+ "region" : "af-south-1"
6079
+ },
6080
+ "hostname" : "waf-regional-fips.af-south-1.amazonaws.com"
6081
+ },
6062
6082
  "fips-ap-east-1" : {
6063
6083
  "credentialScope" : {
6064
6084
  "region" : "ap-east-1"
@@ -6113,6 +6133,12 @@
6113
6133
  },
6114
6134
  "hostname" : "waf-regional-fips.eu-north-1.amazonaws.com"
6115
6135
  },
6136
+ "fips-eu-south-1" : {
6137
+ "credentialScope" : {
6138
+ "region" : "eu-south-1"
6139
+ },
6140
+ "hostname" : "waf-regional-fips.eu-south-1.amazonaws.com"
6141
+ },
6116
6142
  "fips-eu-west-1" : {
6117
6143
  "credentialScope" : {
6118
6144
  "region" : "eu-west-1"
@@ -7545,13 +7571,13 @@
7545
7571
  "credentialScope" : {
7546
7572
  "region" : "us-gov-east-1"
7547
7573
  },
7548
- "hostname" : "elasticloadbalancing-fips.us-gov-east-1.amazonaws.com"
7574
+ "hostname" : "elasticloadbalancing.us-gov-east-1.amazonaws.com"
7549
7575
  },
7550
7576
  "fips-us-gov-west-1" : {
7551
7577
  "credentialScope" : {
7552
7578
  "region" : "us-gov-west-1"
7553
7579
  },
7554
- "hostname" : "elasticloadbalancing-fips.us-gov-west-1.amazonaws.com"
7580
+ "hostname" : "elasticloadbalancing.us-gov-west-1.amazonaws.com"
7555
7581
  },
7556
7582
  "us-gov-east-1" : { },
7557
7583
  "us-gov-west-1" : {
@@ -7766,20 +7792,18 @@
7766
7792
  },
7767
7793
  "kinesis" : {
7768
7794
  "endpoints" : {
7769
- "fips-us-gov-east-1" : {
7795
+ "us-gov-east-1" : {
7770
7796
  "credentialScope" : {
7771
7797
  "region" : "us-gov-east-1"
7772
7798
  },
7773
- "hostname" : "kinesis-fips.us-gov-east-1.amazonaws.com"
7799
+ "hostname" : "kinesis.us-gov-east-1.amazonaws.com"
7774
7800
  },
7775
- "fips-us-gov-west-1" : {
7801
+ "us-gov-west-1" : {
7776
7802
  "credentialScope" : {
7777
7803
  "region" : "us-gov-west-1"
7778
7804
  },
7779
- "hostname" : "kinesis-fips.us-gov-west-1.amazonaws.com"
7780
- },
7781
- "us-gov-east-1" : { },
7782
- "us-gov-west-1" : { }
7805
+ "hostname" : "kinesis.us-gov-west-1.amazonaws.com"
7806
+ }
7783
7807
  }
7784
7808
  },
7785
7809
  "kinesisanalytics" : {