aws-sdk 2.1614.0 → 2.1616.0
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.
- package/README.md +1 -1
- package/apis/budgets-2016-10-20.min.json +102 -21
- package/apis/cognito-idp-2016-04-18.min.json +3 -0
- package/apis/ec2-2016-11-15.min.json +282 -279
- package/apis/ecr-2015-09-21.min.json +3 -0
- package/apis/metadata.json +0 -6
- package/apis/resiliencehub-2020-04-30.min.json +63 -14
- package/apis/resiliencehub-2020-04-30.paginators.json +6 -0
- package/apis/route53profiles-2018-05-10.min.json +3 -0
- package/apis/sqs-2012-11-05.min.json +21 -14
- package/clients/all.d.ts +0 -2
- package/clients/all.js +0 -2
- package/clients/b2bi.d.ts +7 -7
- package/clients/budgets.d.ts +84 -1
- package/clients/cognitoidentityserviceprovider.d.ts +1 -1
- package/clients/ec2.d.ts +5 -0
- package/clients/ecr.d.ts +2 -2
- package/clients/fms.d.ts +4 -4
- package/clients/polly.d.ts +9 -9
- package/clients/resiliencehub.d.ts +80 -15
- package/clients/route53profiles.d.ts +4 -4
- package/clients/sqs.d.ts +19 -14
- package/dist/aws-sdk-core-react-native.js +2 -2
- package/dist/aws-sdk-react-native.js +1628 -1702
- package/dist/aws-sdk.js +312 -302
- package/dist/aws-sdk.min.js +64 -64
- package/lib/config_service_placeholders.d.ts +0 -4
- package/lib/core.js +1 -1
- package/package.json +1 -1
- package/apis/alexaforbusiness-2017-11-09.examples.json +0 -5
- package/apis/alexaforbusiness-2017-11-09.min.json +0 -2905
- package/apis/alexaforbusiness-2017-11-09.paginators.json +0 -94
- package/apis/honeycode-2020-03-01.examples.json +0 -5
- package/apis/honeycode-2020-03-01.min.json +0 -962
- package/apis/honeycode-2020-03-01.paginators.json +0 -27
- package/clients/alexaforbusiness.d.ts +0 -3862
- package/clients/alexaforbusiness.js +0 -18
- package/clients/honeycode.d.ts +0 -910
- package/clients/honeycode.js +0 -18
package/apis/metadata.json
CHANGED
@@ -544,9 +544,6 @@
|
|
544
544
|
"name": "ResourceGroups",
|
545
545
|
"cors": true
|
546
546
|
},
|
547
|
-
"alexaforbusiness": {
|
548
|
-
"name": "AlexaForBusiness"
|
549
|
-
},
|
550
547
|
"cloud9": {
|
551
548
|
"name": "Cloud9"
|
552
549
|
},
|
@@ -879,9 +876,6 @@
|
|
879
876
|
"codeartifact": {
|
880
877
|
"name": "CodeArtifact"
|
881
878
|
},
|
882
|
-
"honeycode": {
|
883
|
-
"name": "Honeycode"
|
884
|
-
},
|
885
879
|
"ivs": {
|
886
880
|
"name": "IVS"
|
887
881
|
},
|
@@ -5,6 +5,9 @@
|
|
5
5
|
"endpointPrefix": "resiliencehub",
|
6
6
|
"jsonVersion": "1.1",
|
7
7
|
"protocol": "rest-json",
|
8
|
+
"protocols": [
|
9
|
+
"rest-json"
|
10
|
+
],
|
8
11
|
"serviceFullName": "AWS Resilience Hub",
|
9
12
|
"serviceId": "resiliencehub",
|
10
13
|
"signatureVersion": "v4",
|
@@ -998,6 +1001,55 @@
|
|
998
1001
|
}
|
999
1002
|
}
|
1000
1003
|
},
|
1004
|
+
"ListAppAssessmentResourceDrifts": {
|
1005
|
+
"http": {
|
1006
|
+
"requestUri": "/list-app-assessment-resource-drifts",
|
1007
|
+
"responseCode": 200
|
1008
|
+
},
|
1009
|
+
"input": {
|
1010
|
+
"type": "structure",
|
1011
|
+
"required": [
|
1012
|
+
"assessmentArn"
|
1013
|
+
],
|
1014
|
+
"members": {
|
1015
|
+
"assessmentArn": {},
|
1016
|
+
"maxResults": {
|
1017
|
+
"type": "integer"
|
1018
|
+
},
|
1019
|
+
"nextToken": {}
|
1020
|
+
}
|
1021
|
+
},
|
1022
|
+
"output": {
|
1023
|
+
"type": "structure",
|
1024
|
+
"required": [
|
1025
|
+
"resourceDrifts"
|
1026
|
+
],
|
1027
|
+
"members": {
|
1028
|
+
"nextToken": {},
|
1029
|
+
"resourceDrifts": {
|
1030
|
+
"type": "list",
|
1031
|
+
"member": {
|
1032
|
+
"type": "structure",
|
1033
|
+
"members": {
|
1034
|
+
"appArn": {},
|
1035
|
+
"appVersion": {},
|
1036
|
+
"diffType": {},
|
1037
|
+
"referenceId": {},
|
1038
|
+
"resourceIdentifier": {
|
1039
|
+
"type": "structure",
|
1040
|
+
"members": {
|
1041
|
+
"logicalResourceId": {
|
1042
|
+
"shape": "S1o"
|
1043
|
+
},
|
1044
|
+
"resourceType": {}
|
1045
|
+
}
|
1046
|
+
}
|
1047
|
+
}
|
1048
|
+
}
|
1049
|
+
}
|
1050
|
+
}
|
1051
|
+
}
|
1052
|
+
},
|
1001
1053
|
"ListAppAssessments": {
|
1002
1054
|
"http": {
|
1003
1055
|
"method": "GET",
|
@@ -1523,9 +1575,6 @@
|
|
1523
1575
|
},
|
1524
1576
|
"input": {
|
1525
1577
|
"type": "structure",
|
1526
|
-
"required": [
|
1527
|
-
"assessmentArn"
|
1528
|
-
],
|
1529
1578
|
"members": {
|
1530
1579
|
"assessmentArn": {
|
1531
1580
|
"location": "querystring",
|
@@ -1606,7 +1655,7 @@
|
|
1606
1655
|
"members": {
|
1607
1656
|
"nextToken": {},
|
1608
1657
|
"resiliencyPolicies": {
|
1609
|
-
"shape": "
|
1658
|
+
"shape": "S66"
|
1610
1659
|
}
|
1611
1660
|
}
|
1612
1661
|
}
|
@@ -1691,7 +1740,7 @@
|
|
1691
1740
|
"members": {
|
1692
1741
|
"nextToken": {},
|
1693
1742
|
"resiliencyPolicies": {
|
1694
|
-
"shape": "
|
1743
|
+
"shape": "S66"
|
1695
1744
|
}
|
1696
1745
|
}
|
1697
1746
|
}
|
@@ -1900,22 +1949,22 @@
|
|
1900
1949
|
"members": {
|
1901
1950
|
"appArn": {},
|
1902
1951
|
"appRegistryAppNames": {
|
1903
|
-
"shape": "
|
1952
|
+
"shape": "S6x"
|
1904
1953
|
},
|
1905
1954
|
"eksSourceNames": {
|
1906
|
-
"shape": "
|
1955
|
+
"shape": "S6y"
|
1907
1956
|
},
|
1908
1957
|
"logicalStackNames": {
|
1909
|
-
"shape": "
|
1958
|
+
"shape": "S6y"
|
1910
1959
|
},
|
1911
1960
|
"resourceGroupNames": {
|
1912
|
-
"shape": "
|
1961
|
+
"shape": "S6x"
|
1913
1962
|
},
|
1914
1963
|
"resourceNames": {
|
1915
|
-
"shape": "
|
1964
|
+
"shape": "S6x"
|
1916
1965
|
},
|
1917
1966
|
"terraformSourceNames": {
|
1918
|
-
"shape": "
|
1967
|
+
"shape": "S6y"
|
1919
1968
|
}
|
1920
1969
|
}
|
1921
1970
|
},
|
@@ -2762,17 +2811,17 @@
|
|
2762
2811
|
}
|
2763
2812
|
}
|
2764
2813
|
},
|
2765
|
-
"
|
2814
|
+
"S66": {
|
2766
2815
|
"type": "list",
|
2767
2816
|
"member": {
|
2768
2817
|
"shape": "S2c"
|
2769
2818
|
}
|
2770
2819
|
},
|
2771
|
-
"
|
2820
|
+
"S6x": {
|
2772
2821
|
"type": "list",
|
2773
2822
|
"member": {}
|
2774
2823
|
},
|
2775
|
-
"
|
2824
|
+
"S6y": {
|
2776
2825
|
"type": "list",
|
2777
2826
|
"member": {}
|
2778
2827
|
}
|
@@ -10,6 +10,12 @@
|
|
10
10
|
"output_token": "nextToken",
|
11
11
|
"limit_key": "maxResults"
|
12
12
|
},
|
13
|
+
"ListAppAssessmentResourceDrifts": {
|
14
|
+
"input_token": "nextToken",
|
15
|
+
"output_token": "nextToken",
|
16
|
+
"limit_key": "maxResults",
|
17
|
+
"result_key": "resourceDrifts"
|
18
|
+
},
|
13
19
|
"ListAppAssessments": {
|
14
20
|
"input_token": "nextToken",
|
15
21
|
"output_token": "nextToken",
|
@@ -401,7 +401,14 @@
|
|
401
401
|
"members": {
|
402
402
|
"QueueUrl": {},
|
403
403
|
"AttributeNames": {
|
404
|
-
"shape": "Sz"
|
404
|
+
"shape": "Sz",
|
405
|
+
"deprecated": true,
|
406
|
+
"deprecatedMessage": "AttributeNames has been replaced by MessageSystemAttributeNames"
|
407
|
+
},
|
408
|
+
"MessageSystemAttributeNames": {
|
409
|
+
"type": "list",
|
410
|
+
"member": {},
|
411
|
+
"flattened": true
|
405
412
|
},
|
406
413
|
"MessageAttributeNames": {
|
407
414
|
"type": "list",
|
@@ -440,7 +447,7 @@
|
|
440
447
|
},
|
441
448
|
"MD5OfMessageAttributes": {},
|
442
449
|
"MessageAttributes": {
|
443
|
-
"shape": "
|
450
|
+
"shape": "S1r"
|
444
451
|
}
|
445
452
|
}
|
446
453
|
},
|
@@ -476,10 +483,10 @@
|
|
476
483
|
"type": "integer"
|
477
484
|
},
|
478
485
|
"MessageAttributes": {
|
479
|
-
"shape": "
|
486
|
+
"shape": "S1r"
|
480
487
|
},
|
481
488
|
"MessageSystemAttributes": {
|
482
|
-
"shape": "
|
489
|
+
"shape": "S1y"
|
483
490
|
},
|
484
491
|
"MessageDeduplicationId": {},
|
485
492
|
"MessageGroupId": {}
|
@@ -520,10 +527,10 @@
|
|
520
527
|
"type": "integer"
|
521
528
|
},
|
522
529
|
"MessageAttributes": {
|
523
|
-
"shape": "
|
530
|
+
"shape": "S1r"
|
524
531
|
},
|
525
532
|
"MessageSystemAttributes": {
|
526
|
-
"shape": "
|
533
|
+
"shape": "S1y"
|
527
534
|
},
|
528
535
|
"MessageDeduplicationId": {},
|
529
536
|
"MessageGroupId": {}
|
@@ -678,7 +685,7 @@
|
|
678
685
|
"member": {},
|
679
686
|
"flattened": true
|
680
687
|
},
|
681
|
-
"
|
688
|
+
"S1r": {
|
682
689
|
"type": "map",
|
683
690
|
"key": {},
|
684
691
|
"value": {
|
@@ -692,11 +699,11 @@
|
|
692
699
|
"type": "blob"
|
693
700
|
},
|
694
701
|
"StringListValues": {
|
695
|
-
"shape": "
|
702
|
+
"shape": "S1u",
|
696
703
|
"flattened": true
|
697
704
|
},
|
698
705
|
"BinaryListValues": {
|
699
|
-
"shape": "
|
706
|
+
"shape": "S1v",
|
700
707
|
"flattened": true
|
701
708
|
},
|
702
709
|
"DataType": {}
|
@@ -704,17 +711,17 @@
|
|
704
711
|
},
|
705
712
|
"flattened": true
|
706
713
|
},
|
707
|
-
"
|
714
|
+
"S1u": {
|
708
715
|
"type": "list",
|
709
716
|
"member": {}
|
710
717
|
},
|
711
|
-
"
|
718
|
+
"S1v": {
|
712
719
|
"type": "list",
|
713
720
|
"member": {
|
714
721
|
"type": "blob"
|
715
722
|
}
|
716
723
|
},
|
717
|
-
"
|
724
|
+
"S1y": {
|
718
725
|
"type": "map",
|
719
726
|
"key": {},
|
720
727
|
"value": {
|
@@ -728,11 +735,11 @@
|
|
728
735
|
"type": "blob"
|
729
736
|
},
|
730
737
|
"StringListValues": {
|
731
|
-
"shape": "
|
738
|
+
"shape": "S1u",
|
732
739
|
"flattened": true
|
733
740
|
},
|
734
741
|
"BinaryListValues": {
|
735
|
-
"shape": "
|
742
|
+
"shape": "S1v",
|
736
743
|
"flattened": true
|
737
744
|
},
|
738
745
|
"DataType": {}
|
package/clients/all.d.ts
CHANGED
@@ -124,7 +124,6 @@ export import SageMakerRuntime = require('./sagemakerruntime');
|
|
124
124
|
export import SageMaker = require('./sagemaker');
|
125
125
|
export import Translate = require('./translate');
|
126
126
|
export import ResourceGroups = require('./resourcegroups');
|
127
|
-
export import AlexaForBusiness = require('./alexaforbusiness');
|
128
127
|
export import Cloud9 = require('./cloud9');
|
129
128
|
export import ServerlessApplicationRepository = require('./serverlessapplicationrepository');
|
130
129
|
export import ServiceDiscovery = require('./servicediscovery');
|
@@ -221,7 +220,6 @@ export import Synthetics = require('./synthetics');
|
|
221
220
|
export import IoTSiteWise = require('./iotsitewise');
|
222
221
|
export import Macie2 = require('./macie2');
|
223
222
|
export import CodeArtifact = require('./codeartifact');
|
224
|
-
export import Honeycode = require('./honeycode');
|
225
223
|
export import IVS = require('./ivs');
|
226
224
|
export import Braket = require('./braket');
|
227
225
|
export import IdentityStore = require('./identitystore');
|
package/clients/all.js
CHANGED
@@ -126,7 +126,6 @@ module.exports = {
|
|
126
126
|
SageMaker: require('./sagemaker'),
|
127
127
|
Translate: require('./translate'),
|
128
128
|
ResourceGroups: require('./resourcegroups'),
|
129
|
-
AlexaForBusiness: require('./alexaforbusiness'),
|
130
129
|
Cloud9: require('./cloud9'),
|
131
130
|
ServerlessApplicationRepository: require('./serverlessapplicationrepository'),
|
132
131
|
ServiceDiscovery: require('./servicediscovery'),
|
@@ -223,7 +222,6 @@ module.exports = {
|
|
223
222
|
IoTSiteWise: require('./iotsitewise'),
|
224
223
|
Macie2: require('./macie2'),
|
225
224
|
CodeArtifact: require('./codeartifact'),
|
226
|
-
Honeycode: require('./honeycode'),
|
227
225
|
IVS: require('./ivs'),
|
228
226
|
Braket: require('./braket'),
|
229
227
|
IdentityStore: require('./identitystore'),
|
package/clients/b2bi.d.ts
CHANGED
@@ -466,7 +466,7 @@ declare namespace B2bi {
|
|
466
466
|
*/
|
467
467
|
fileFormat: FileFormat;
|
468
468
|
/**
|
469
|
-
* Specifies the
|
469
|
+
* Specifies the mapping template for the transformer. This template is used to map the parsed EDI file using JSONata or XSLT.
|
470
470
|
*/
|
471
471
|
mappingTemplate: MappingTemplate;
|
472
472
|
/**
|
@@ -504,7 +504,7 @@ declare namespace B2bi {
|
|
504
504
|
*/
|
505
505
|
fileFormat: FileFormat;
|
506
506
|
/**
|
507
|
-
* Returns the
|
507
|
+
* Returns the mapping template for the transformer. This template is used to map the parsed EDI file using JSONata or XSLT.
|
508
508
|
*/
|
509
509
|
mappingTemplate: MappingTemplate;
|
510
510
|
/**
|
@@ -760,7 +760,7 @@ declare namespace B2bi {
|
|
760
760
|
*/
|
761
761
|
fileFormat: FileFormat;
|
762
762
|
/**
|
763
|
-
* Returns the
|
763
|
+
* Returns the mapping template for the transformer. This template is used to map the parsed EDI file using JSONata or XSLT.
|
764
764
|
*/
|
765
765
|
mappingTemplate: MappingTemplate;
|
766
766
|
/**
|
@@ -1024,7 +1024,7 @@ declare namespace B2bi {
|
|
1024
1024
|
*/
|
1025
1025
|
inputFileContent: TestMappingInputFileContent;
|
1026
1026
|
/**
|
1027
|
-
* Specifies the
|
1027
|
+
* Specifies the mapping template for the transformer. This template is used to map the parsed EDI file using JSONata or XSLT.
|
1028
1028
|
*/
|
1029
1029
|
mappingTemplate: MappingTemplate;
|
1030
1030
|
/**
|
@@ -1079,7 +1079,7 @@ declare namespace B2bi {
|
|
1079
1079
|
*/
|
1080
1080
|
fileFormat: FileFormat;
|
1081
1081
|
/**
|
1082
|
-
* Returns the
|
1082
|
+
* Returns the mapping template for the transformer. This template is used to map the parsed EDI file using JSONata or XSLT.
|
1083
1083
|
*/
|
1084
1084
|
mappingTemplate: MappingTemplate;
|
1085
1085
|
/**
|
@@ -1299,7 +1299,7 @@ declare namespace B2bi {
|
|
1299
1299
|
*/
|
1300
1300
|
fileFormat?: FileFormat;
|
1301
1301
|
/**
|
1302
|
-
* Specifies the
|
1302
|
+
* Specifies the mapping template for the transformer. This template is used to map the parsed EDI file using JSONata or XSLT.
|
1303
1303
|
*/
|
1304
1304
|
mappingTemplate?: MappingTemplate;
|
1305
1305
|
/**
|
@@ -1333,7 +1333,7 @@ declare namespace B2bi {
|
|
1333
1333
|
*/
|
1334
1334
|
fileFormat: FileFormat;
|
1335
1335
|
/**
|
1336
|
-
* Returns the
|
1336
|
+
* Returns the mapping template for the transformer. This template is used to map the parsed EDI file using JSONata or XSLT.
|
1337
1337
|
*/
|
1338
1338
|
mappingTemplate: MappingTemplate;
|
1339
1339
|
/**
|
package/clients/budgets.d.ts
CHANGED
@@ -163,6 +163,30 @@ declare class Budgets extends Service {
|
|
163
163
|
* Executes a budget action.
|
164
164
|
*/
|
165
165
|
executeBudgetAction(callback?: (err: AWSError, data: Budgets.Types.ExecuteBudgetActionResponse) => void): Request<Budgets.Types.ExecuteBudgetActionResponse, AWSError>;
|
166
|
+
/**
|
167
|
+
* Lists tags associated with a budget or budget action resource.
|
168
|
+
*/
|
169
|
+
listTagsForResource(params: Budgets.Types.ListTagsForResourceRequest, callback?: (err: AWSError, data: Budgets.Types.ListTagsForResourceResponse) => void): Request<Budgets.Types.ListTagsForResourceResponse, AWSError>;
|
170
|
+
/**
|
171
|
+
* Lists tags associated with a budget or budget action resource.
|
172
|
+
*/
|
173
|
+
listTagsForResource(callback?: (err: AWSError, data: Budgets.Types.ListTagsForResourceResponse) => void): Request<Budgets.Types.ListTagsForResourceResponse, AWSError>;
|
174
|
+
/**
|
175
|
+
* Creates tags for a budget or budget action resource.
|
176
|
+
*/
|
177
|
+
tagResource(params: Budgets.Types.TagResourceRequest, callback?: (err: AWSError, data: Budgets.Types.TagResourceResponse) => void): Request<Budgets.Types.TagResourceResponse, AWSError>;
|
178
|
+
/**
|
179
|
+
* Creates tags for a budget or budget action resource.
|
180
|
+
*/
|
181
|
+
tagResource(callback?: (err: AWSError, data: Budgets.Types.TagResourceResponse) => void): Request<Budgets.Types.TagResourceResponse, AWSError>;
|
182
|
+
/**
|
183
|
+
* Deletes tags associated with a budget or budget action resource.
|
184
|
+
*/
|
185
|
+
untagResource(params: Budgets.Types.UntagResourceRequest, callback?: (err: AWSError, data: Budgets.Types.UntagResourceResponse) => void): Request<Budgets.Types.UntagResourceResponse, AWSError>;
|
186
|
+
/**
|
187
|
+
* Deletes tags associated with a budget or budget action resource.
|
188
|
+
*/
|
189
|
+
untagResource(callback?: (err: AWSError, data: Budgets.Types.UntagResourceResponse) => void): Request<Budgets.Types.UntagResourceResponse, AWSError>;
|
166
190
|
/**
|
167
191
|
* Updates a budget. You can change every part of a budget except for the budgetName and the calculatedSpend. When you modify a budget, the calculatedSpend drops to zero until Amazon Web Services has new usage data to use for forecasting. Only one of BudgetLimit or PlannedBudgetLimits can be present in the syntax at one time. Use the syntax that matches your case. The Request Syntax section shows the BudgetLimit syntax. For PlannedBudgetLimits, see the Examples section.
|
168
192
|
*/
|
@@ -264,6 +288,7 @@ declare namespace Budgets {
|
|
264
288
|
export type ActionType = "APPLY_IAM_POLICY"|"APPLY_SCP_POLICY"|"RUN_SSM_DOCUMENTS"|string;
|
265
289
|
export type Actions = Action[];
|
266
290
|
export type AdjustmentPeriod = number;
|
291
|
+
export type AmazonResourceName = string;
|
267
292
|
export type ApprovalModel = "AUTOMATIC"|"MANUAL"|string;
|
268
293
|
export interface AutoAdjustData {
|
269
294
|
/**
|
@@ -294,7 +319,7 @@ declare namespace Budgets {
|
|
294
319
|
*/
|
295
320
|
PlannedBudgetLimits?: PlannedBudgetLimits;
|
296
321
|
/**
|
297
|
-
* The cost filters, such as Region, Service,
|
322
|
+
* The cost filters, such as Region, Service, LinkedAccount, Tag, or CostCategory, that are applied to a budget. Amazon Web Services Budgets supports the following services as a Service filter for RI budgets: Amazon EC2 Amazon Redshift Amazon Relational Database Service Amazon ElastiCache Amazon OpenSearch Service
|
298
323
|
*/
|
299
324
|
CostFilters?: CostFilters;
|
300
325
|
/**
|
@@ -443,6 +468,10 @@ declare namespace Budgets {
|
|
443
468
|
*/
|
444
469
|
ApprovalModel: ApprovalModel;
|
445
470
|
Subscribers: Subscribers;
|
471
|
+
/**
|
472
|
+
* An optional list of tags to associate with the specified budget action. Each tag consists of a key and a value, and each key must be unique for the resource.
|
473
|
+
*/
|
474
|
+
ResourceTags?: ResourceTagList;
|
446
475
|
}
|
447
476
|
export interface CreateBudgetActionResponse {
|
448
477
|
AccountId: AccountId;
|
@@ -465,6 +494,10 @@ declare namespace Budgets {
|
|
465
494
|
* A notification that you want to associate with a budget. A budget can have up to five notifications, and each notification can have one SNS subscriber and up to 10 email subscribers. If you include notifications and subscribers in your CreateBudget call, Amazon Web Services creates the notifications and subscribers for you.
|
466
495
|
*/
|
467
496
|
NotificationsWithSubscribers?: NotificationWithSubscribersList;
|
497
|
+
/**
|
498
|
+
* An optional list of tags to associate with the specified budget. Each tag consists of a key and a value, and each key must be unique for the resource.
|
499
|
+
*/
|
500
|
+
ResourceTags?: ResourceTagList;
|
468
501
|
}
|
469
502
|
export interface CreateBudgetResponse {
|
470
503
|
}
|
@@ -836,6 +869,18 @@ declare namespace Budgets {
|
|
836
869
|
}
|
837
870
|
export type InstanceId = string;
|
838
871
|
export type InstanceIds = InstanceId[];
|
872
|
+
export interface ListTagsForResourceRequest {
|
873
|
+
/**
|
874
|
+
* The unique identifier for the resource.
|
875
|
+
*/
|
876
|
+
ResourceARN: AmazonResourceName;
|
877
|
+
}
|
878
|
+
export interface ListTagsForResourceResponse {
|
879
|
+
/**
|
880
|
+
* The tags associated with the resource.
|
881
|
+
*/
|
882
|
+
ResourceTags?: ResourceTagList;
|
883
|
+
}
|
839
884
|
export type MaxResults = number;
|
840
885
|
export type MaxResultsBudgetNotifications = number;
|
841
886
|
export type MaxResultsDescribeBudgets = number;
|
@@ -882,6 +927,20 @@ declare namespace Budgets {
|
|
882
927
|
export type PolicyArn = string;
|
883
928
|
export type PolicyId = string;
|
884
929
|
export type Region = string;
|
930
|
+
export interface ResourceTag {
|
931
|
+
/**
|
932
|
+
* The key that's associated with the tag.
|
933
|
+
*/
|
934
|
+
Key: ResourceTagKey;
|
935
|
+
/**
|
936
|
+
* The value that's associated with the tag.
|
937
|
+
*/
|
938
|
+
Value: ResourceTagValue;
|
939
|
+
}
|
940
|
+
export type ResourceTagKey = string;
|
941
|
+
export type ResourceTagKeyList = ResourceTagKey[];
|
942
|
+
export type ResourceTagList = ResourceTag[];
|
943
|
+
export type ResourceTagValue = string;
|
885
944
|
export type Role = string;
|
886
945
|
export type RoleArn = string;
|
887
946
|
export type Roles = Role[];
|
@@ -932,6 +991,18 @@ declare namespace Budgets {
|
|
932
991
|
export type SubscriberAddress = string;
|
933
992
|
export type Subscribers = Subscriber[];
|
934
993
|
export type SubscriptionType = "SNS"|"EMAIL"|string;
|
994
|
+
export interface TagResourceRequest {
|
995
|
+
/**
|
996
|
+
* The unique identifier for the resource.
|
997
|
+
*/
|
998
|
+
ResourceARN: AmazonResourceName;
|
999
|
+
/**
|
1000
|
+
* The tags associated with the resource.
|
1001
|
+
*/
|
1002
|
+
ResourceTags: ResourceTagList;
|
1003
|
+
}
|
1004
|
+
export interface TagResourceResponse {
|
1005
|
+
}
|
935
1006
|
export type TargetId = string;
|
936
1007
|
export type TargetIds = TargetId[];
|
937
1008
|
export type ThresholdType = "PERCENTAGE"|"ABSOLUTE_VALUE"|string;
|
@@ -947,6 +1018,18 @@ declare namespace Budgets {
|
|
947
1018
|
}
|
948
1019
|
export type TimeUnit = "DAILY"|"MONTHLY"|"QUARTERLY"|"ANNUALLY"|string;
|
949
1020
|
export type UnitValue = string;
|
1021
|
+
export interface UntagResourceRequest {
|
1022
|
+
/**
|
1023
|
+
* The unique identifier for the resource.
|
1024
|
+
*/
|
1025
|
+
ResourceARN: AmazonResourceName;
|
1026
|
+
/**
|
1027
|
+
* The key that's associated with the tag.
|
1028
|
+
*/
|
1029
|
+
ResourceTagKeys: ResourceTagKeyList;
|
1030
|
+
}
|
1031
|
+
export interface UntagResourceResponse {
|
1032
|
+
}
|
950
1033
|
export interface UpdateBudgetActionRequest {
|
951
1034
|
AccountId: AccountId;
|
952
1035
|
BudgetName: BudgetName;
|
@@ -4658,7 +4658,7 @@ declare namespace CognitoIdentityServiceProvider {
|
|
4658
4658
|
*/
|
4659
4659
|
AccountRecoverySetting?: AccountRecoverySettingType;
|
4660
4660
|
}
|
4661
|
-
export type UserStatusType = "UNCONFIRMED"|"CONFIRMED"|"ARCHIVED"|"COMPROMISED"|"UNKNOWN"|"RESET_REQUIRED"|"FORCE_CHANGE_PASSWORD"|string;
|
4661
|
+
export type UserStatusType = "UNCONFIRMED"|"CONFIRMED"|"ARCHIVED"|"COMPROMISED"|"UNKNOWN"|"RESET_REQUIRED"|"FORCE_CHANGE_PASSWORD"|"EXTERNAL_PROVIDER"|string;
|
4662
4662
|
export interface UserType {
|
4663
4663
|
/**
|
4664
4664
|
* The user name of the user you want to describe.
|
package/clients/ec2.d.ts
CHANGED
@@ -25456,6 +25456,10 @@ declare namespace EC2 {
|
|
25456
25456
|
* Describes the Neuron accelerator settings for the instance type.
|
25457
25457
|
*/
|
25458
25458
|
NeuronInfo?: NeuronInfo;
|
25459
|
+
/**
|
25460
|
+
* Indicates whether a local Precision Time Protocol (PTP) hardware clock (PHC) is supported.
|
25461
|
+
*/
|
25462
|
+
PhcSupport?: PhcSupport;
|
25459
25463
|
}
|
25460
25464
|
export interface InstanceTypeInfoFromInstanceRequirements {
|
25461
25465
|
/**
|
@@ -31746,6 +31750,7 @@ declare namespace EC2 {
|
|
31746
31750
|
*/
|
31747
31751
|
Value?: String;
|
31748
31752
|
}
|
31753
|
+
export type PhcSupport = "unsupported"|"supported"|string;
|
31749
31754
|
export interface Placement {
|
31750
31755
|
/**
|
31751
31756
|
* The Availability Zone of the instance. If not specified, an Availability Zone will be automatically chosen for you based on the load balancing criteria for the Region. This parameter is not supported for CreateFleet.
|
package/clients/ecr.d.ts
CHANGED
@@ -577,7 +577,7 @@ declare namespace ECR {
|
|
577
577
|
*/
|
578
578
|
ecrRepositoryPrefix: PullThroughCacheRuleRepositoryPrefix;
|
579
579
|
/**
|
580
|
-
* The registry URL of the upstream public registry to use as the source for the pull through cache rule. The following is the syntax to use for each supported upstream registry. Amazon ECR Public (ecr-public) - public.ecr.aws Docker Hub (docker-hub) - registry-1.docker.io Quay (quay) - quay.io Kubernetes (k8s) - registry.k8s.io GitHub Container Registry (github-container-registry) - ghcr.io Microsoft Azure Container Registry (azure-container-registry) - <custom>.azurecr.io
|
580
|
+
* The registry URL of the upstream public registry to use as the source for the pull through cache rule. The following is the syntax to use for each supported upstream registry. Amazon ECR Public (ecr-public) - public.ecr.aws Docker Hub (docker-hub) - registry-1.docker.io Quay (quay) - quay.io Kubernetes (k8s) - registry.k8s.io GitHub Container Registry (github-container-registry) - ghcr.io Microsoft Azure Container Registry (azure-container-registry) - <custom>.azurecr.io GitLab Container Registry (gitlab-container-registry) - registry.gitlab.com
|
581
581
|
*/
|
582
582
|
upstreamRegistryUrl: Url;
|
583
583
|
/**
|
@@ -2288,7 +2288,7 @@ declare namespace ECR {
|
|
2288
2288
|
*/
|
2289
2289
|
lastByteReceived?: PartSize;
|
2290
2290
|
}
|
2291
|
-
export type UpstreamRegistry = "ecr-public"|"quay"|"k8s"|"docker-hub"|"github-container-registry"|"azure-container-registry"|string;
|
2291
|
+
export type UpstreamRegistry = "ecr-public"|"quay"|"k8s"|"docker-hub"|"github-container-registry"|"azure-container-registry"|"gitlab-container-registry"|string;
|
2292
2292
|
export type Url = string;
|
2293
2293
|
export interface ValidatePullThroughCacheRuleRequest {
|
2294
2294
|
/**
|
package/clients/fms.d.ts
CHANGED
@@ -1607,7 +1607,7 @@ declare namespace FMS {
|
|
1607
1607
|
*/
|
1608
1608
|
FirstEntries?: NetworkAclEntries;
|
1609
1609
|
/**
|
1610
|
-
* Applies only when remediation is enabled for the policy as a whole. Firewall Manager uses this setting when it finds policy violations that involve conflicts between the custom entries and the policy entries. If forced remediation is disabled, Firewall Manager marks the network ACL as noncompliant and does not try to remediate. For more information about the remediation behavior, see
|
1610
|
+
* Applies only when remediation is enabled for the policy as a whole. Firewall Manager uses this setting when it finds policy violations that involve conflicts between the custom entries and the policy entries. If forced remediation is disabled, Firewall Manager marks the network ACL as noncompliant and does not try to remediate. For more information about the remediation behavior, see Remediation for managed network ACLs in the Firewall Manager Developer Guide.
|
1611
1611
|
*/
|
1612
1612
|
ForceRemediateForFirstEntries: BooleanObject;
|
1613
1613
|
/**
|
@@ -1615,7 +1615,7 @@ declare namespace FMS {
|
|
1615
1615
|
*/
|
1616
1616
|
LastEntries?: NetworkAclEntries;
|
1617
1617
|
/**
|
1618
|
-
* Applies only when remediation is enabled for the policy as a whole. Firewall Manager uses this setting when it finds policy violations that involve conflicts between the custom entries and the policy entries. If forced remediation is disabled, Firewall Manager marks the network ACL as noncompliant and does not try to remediate. For more information about the remediation behavior, see
|
1618
|
+
* Applies only when remediation is enabled for the policy as a whole. Firewall Manager uses this setting when it finds policy violations that involve conflicts between the custom entries and the policy entries. If forced remediation is disabled, Firewall Manager marks the network ACL as noncompliant and does not try to remediate. For more information about the remediation behavior, see Remediation for managed network ACLs in the Firewall Manager Developer Guide.
|
1619
1619
|
*/
|
1620
1620
|
ForceRemediateForLastEntries: BooleanObject;
|
1621
1621
|
}
|
@@ -2043,7 +2043,7 @@ declare namespace FMS {
|
|
2043
2043
|
*/
|
2044
2044
|
ResourceSetIds?: ResourceSetIds;
|
2045
2045
|
/**
|
2046
|
-
*
|
2046
|
+
* Your description of the Firewall Manager policy.
|
2047
2047
|
*/
|
2048
2048
|
PolicyDescription?: ResourceDescription;
|
2049
2049
|
/**
|
@@ -2525,7 +2525,7 @@ declare namespace FMS {
|
|
2525
2525
|
*/
|
2526
2526
|
Key: ResourceTagKey;
|
2527
2527
|
/**
|
2528
|
-
* The resource tag value.
|
2528
|
+
* The resource tag value. To specify an empty string value, either don't provide this or specify it as "".
|
2529
2529
|
*/
|
2530
2530
|
Value?: ResourceTagValue;
|
2531
2531
|
}
|