aws-sdk 2.997.0 → 2.1001.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/CHANGELOG.md +28 -1
- package/README.md +1 -1
- package/apis/account-2021-02-01.examples.json +5 -0
- package/apis/account-2021-02-01.min.json +123 -0
- package/apis/account-2021-02-01.paginators.json +4 -0
- package/apis/apprunner-2020-05-15.min.json +10 -10
- package/apis/backup-2018-11-15.min.json +54 -42
- package/apis/cloudcontrol-2021-09-30.examples.json +5 -0
- package/apis/cloudcontrol-2021-09-30.min.json +271 -0
- package/apis/cloudcontrol-2021-09-30.paginators.json +14 -0
- package/apis/cloudcontrol-2021-09-30.waiters2.json +31 -0
- package/apis/codebuild-2016-10-06.min.json +74 -73
- package/apis/dataexchange-2017-07-25.min.json +277 -38
- package/apis/dataexchange-2017-07-25.paginators.json +6 -0
- package/apis/ec2-2016-11-15.min.json +1212 -879
- package/apis/ec2-2016-11-15.paginators.json +6 -0
- package/apis/ec2-2016-11-15.waiters2.json +6 -0
- package/apis/glue-2017-03-31.min.json +3 -0
- package/apis/kms-2014-11-01.examples.json +608 -8
- package/apis/location-2020-11-19.min.json +9 -6
- package/apis/macie2-2020-01-01.min.json +79 -67
- package/apis/metadata.json +6 -0
- package/apis/network-firewall-2020-11-12.min.json +65 -31
- package/apis/ssm-2014-11-06.min.json +3 -0
- package/apis/synthetics-2017-10-11.min.json +39 -9
- package/apis/workmail-2017-10-01.min.json +179 -27
- package/apis/workmail-2017-10-01.paginators.json +5 -0
- package/apis/workspaces-2015-04-08.min.json +83 -50
- package/clients/account.d.ts +136 -0
- package/clients/account.js +18 -0
- package/clients/all.d.ts +2 -0
- package/clients/all.js +3 -1
- package/clients/applicationautoscaling.d.ts +38 -38
- package/clients/apprunner.d.ts +55 -54
- package/clients/backup.d.ts +22 -10
- package/clients/cloudcontrol.d.ts +385 -0
- package/clients/cloudcontrol.js +19 -0
- package/clients/codebuild.d.ts +8 -3
- package/clients/dataexchange.d.ts +226 -2
- package/clients/ec2.d.ts +377 -2
- package/clients/glue.d.ts +7 -0
- package/clients/kms.d.ts +2 -2
- package/clients/location.d.ts +37 -24
- package/clients/macie2.d.ts +29 -12
- package/clients/networkfirewall.d.ts +61 -10
- package/clients/ssm.d.ts +7 -3
- package/clients/synthetics.d.ts +40 -0
- package/clients/workmail.d.ts +214 -0
- package/clients/workspaces.d.ts +87 -40
- package/dist/aws-sdk-core-react-native.js +2 -3
- package/dist/aws-sdk-react-native.js +102 -37
- package/dist/aws-sdk.js +1319 -977
- package/dist/aws-sdk.min.js +77 -77
- package/lib/config_service_placeholders.d.ts +4 -0
- package/lib/core.js +1 -1
- package/lib/event_listeners.js +0 -1
- package/lib/services/s3.js +0 -15
- package/package.json +1 -1
- package/scripts/region-checker/allowlist.js +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,7 +1,34 @@
|
|
|
1
1
|
# Changelog for AWS SDK for JavaScript
|
|
2
|
-
<!--LATEST=2.
|
|
2
|
+
<!--LATEST=2.1001.0-->
|
|
3
3
|
<!--ENTRYINSERT-->
|
|
4
4
|
|
|
5
|
+
## 2.1001.0
|
|
6
|
+
* bugfix: Signer: Fix the bug that httpChecksumRequired trait is not honored in SigV2
|
|
7
|
+
* feature: ApplicationAutoScaling: With this release, Application Auto Scaling adds support for Amazon Neptune. Customers can now automatically add or remove Read Replicas of their Neptune clusters to keep the average CPU Utilization at the target value specified by the customers.
|
|
8
|
+
* feature: Backup: AWS Backup Audit Manager framework report.
|
|
9
|
+
* feature: EC2: Released Capacity Reservation Fleet, a feature of Amazon EC2 Capacity Reservations, which provides a way to manage reserved capacity across instance types. For more information: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/cr-fleets.html
|
|
10
|
+
* feature: Glue: This release adds tag as an input of CreateConnection
|
|
11
|
+
* feature: Location: Add support for PositionFiltering.
|
|
12
|
+
* feature: WorkMail: This release allows customers to change their inbound DMARC settings in Amazon WorkMail.
|
|
13
|
+
|
|
14
|
+
## 2.1000.0
|
|
15
|
+
* feature: CodeBuild: CodeBuild now allows you to select how batch build statuses are sent to the source provider for a project.
|
|
16
|
+
* feature: EFS: EFS adds a new exception for short identifiers to be thrown after its migration to long resource identifiers.
|
|
17
|
+
|
|
18
|
+
## 2.999.0
|
|
19
|
+
* feature: AppRunner: This release contains several minor bug fixes.
|
|
20
|
+
* feature: SSM: When "AutoApprovable" is true for a Change Template, then specifying --auto-approve (boolean) in Start-Change-Request-Execution will create a change request that bypasses approver review. (except for change calendar restrictions)
|
|
21
|
+
* feature: Synthetics: CloudWatch Synthetics now enables customers to choose a customer managed AWS KMS key or an Amazon S3-managed key instead of an AWS managed key (default) for the encryption of artifacts that the canary stores in Amazon S3. CloudWatch Synthetics also supports artifact S3 location updation now.
|
|
22
|
+
|
|
23
|
+
## 2.998.0
|
|
24
|
+
* feature: Account: This release of the Account Management API enables customers to manage the alternate contacts for their AWS accounts. For more information, see https://docs.aws.amazon.com/accounts/latest/reference/accounts-welcome.html
|
|
25
|
+
* feature: CloudControl: Initial release of the SDK for AWS Cloud Control API
|
|
26
|
+
* feature: DataExchange: This release enables subscribers to set up automatic exports of newly published revisions using the new EventAction API.
|
|
27
|
+
* feature: Macie2: Amazon S3 bucket metadata now indicates whether an error or a bucket's permissions settings prevented Amazon Macie from retrieving data about the bucket or the bucket's objects.
|
|
28
|
+
* feature: NetworkFirewall: This release adds support for strict ordering for stateful rule groups. Using strict ordering, stateful rules are evaluated in the exact order in which you provide them.
|
|
29
|
+
* feature: WorkMail: This release adds support for mobile device access overrides management in Amazon WorkMail.
|
|
30
|
+
* feature: WorkSpaces: Added CreateUpdatedWorkspaceImage API to update WorkSpace images with latest software and drivers. Updated DescribeWorkspaceImages API to display if there are updates available for WorkSpace images.
|
|
31
|
+
|
|
5
32
|
## 2.997.0
|
|
6
33
|
* feature: Amp: This release adds alert manager and rule group namespace APIs
|
|
7
34
|
* feature: Lambda: Adds support for Lambda functions powered by AWS Graviton2 processors. Customers can now select the CPU architecture for their functions.
|
package/README.md
CHANGED
|
@@ -29,7 +29,7 @@ For release notes, see the [CHANGELOG](https://github.com/aws/aws-sdk-js/blob/ma
|
|
|
29
29
|
To use the SDK in the browser, simply add the following script tag to your
|
|
30
30
|
HTML pages:
|
|
31
31
|
|
|
32
|
-
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.
|
|
32
|
+
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1001.0.min.js"></script>
|
|
33
33
|
|
|
34
34
|
You can also build a custom browser SDK with your specified set of AWS services.
|
|
35
35
|
This can allow you to reduce the SDK's size, specify different API versions of
|
|
@@ -0,0 +1,123 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": "2.0",
|
|
3
|
+
"metadata": {
|
|
4
|
+
"apiVersion": "2021-02-01",
|
|
5
|
+
"endpointPrefix": "account",
|
|
6
|
+
"jsonVersion": "1.1",
|
|
7
|
+
"protocol": "rest-json",
|
|
8
|
+
"serviceFullName": "AWS Account",
|
|
9
|
+
"serviceId": "Account",
|
|
10
|
+
"signatureVersion": "v4",
|
|
11
|
+
"signingName": "account",
|
|
12
|
+
"uid": "account-2021-02-01"
|
|
13
|
+
},
|
|
14
|
+
"operations": {
|
|
15
|
+
"DeleteAlternateContact": {
|
|
16
|
+
"http": {
|
|
17
|
+
"requestUri": "/deleteAlternateContact",
|
|
18
|
+
"responseCode": 200
|
|
19
|
+
},
|
|
20
|
+
"input": {
|
|
21
|
+
"type": "structure",
|
|
22
|
+
"required": [
|
|
23
|
+
"AlternateContactType"
|
|
24
|
+
],
|
|
25
|
+
"members": {
|
|
26
|
+
"AccountId": {},
|
|
27
|
+
"AlternateContactType": {}
|
|
28
|
+
}
|
|
29
|
+
},
|
|
30
|
+
"idempotent": true
|
|
31
|
+
},
|
|
32
|
+
"GetAlternateContact": {
|
|
33
|
+
"http": {
|
|
34
|
+
"requestUri": "/getAlternateContact",
|
|
35
|
+
"responseCode": 200
|
|
36
|
+
},
|
|
37
|
+
"input": {
|
|
38
|
+
"type": "structure",
|
|
39
|
+
"required": [
|
|
40
|
+
"AlternateContactType"
|
|
41
|
+
],
|
|
42
|
+
"members": {
|
|
43
|
+
"AccountId": {},
|
|
44
|
+
"AlternateContactType": {}
|
|
45
|
+
}
|
|
46
|
+
},
|
|
47
|
+
"output": {
|
|
48
|
+
"type": "structure",
|
|
49
|
+
"members": {
|
|
50
|
+
"AlternateContact": {
|
|
51
|
+
"type": "structure",
|
|
52
|
+
"members": {
|
|
53
|
+
"AlternateContactType": {},
|
|
54
|
+
"EmailAddress": {
|
|
55
|
+
"shape": "S7"
|
|
56
|
+
},
|
|
57
|
+
"Name": {
|
|
58
|
+
"shape": "S8"
|
|
59
|
+
},
|
|
60
|
+
"PhoneNumber": {
|
|
61
|
+
"shape": "S9"
|
|
62
|
+
},
|
|
63
|
+
"Title": {
|
|
64
|
+
"shape": "Sa"
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
},
|
|
71
|
+
"PutAlternateContact": {
|
|
72
|
+
"http": {
|
|
73
|
+
"requestUri": "/putAlternateContact",
|
|
74
|
+
"responseCode": 200
|
|
75
|
+
},
|
|
76
|
+
"input": {
|
|
77
|
+
"type": "structure",
|
|
78
|
+
"required": [
|
|
79
|
+
"AlternateContactType",
|
|
80
|
+
"EmailAddress",
|
|
81
|
+
"Name",
|
|
82
|
+
"PhoneNumber",
|
|
83
|
+
"Title"
|
|
84
|
+
],
|
|
85
|
+
"members": {
|
|
86
|
+
"AccountId": {},
|
|
87
|
+
"AlternateContactType": {},
|
|
88
|
+
"EmailAddress": {
|
|
89
|
+
"shape": "S7"
|
|
90
|
+
},
|
|
91
|
+
"Name": {
|
|
92
|
+
"shape": "S8"
|
|
93
|
+
},
|
|
94
|
+
"PhoneNumber": {
|
|
95
|
+
"shape": "S9"
|
|
96
|
+
},
|
|
97
|
+
"Title": {
|
|
98
|
+
"shape": "Sa"
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
},
|
|
102
|
+
"idempotent": true
|
|
103
|
+
}
|
|
104
|
+
},
|
|
105
|
+
"shapes": {
|
|
106
|
+
"S7": {
|
|
107
|
+
"type": "string",
|
|
108
|
+
"sensitive": true
|
|
109
|
+
},
|
|
110
|
+
"S8": {
|
|
111
|
+
"type": "string",
|
|
112
|
+
"sensitive": true
|
|
113
|
+
},
|
|
114
|
+
"S9": {
|
|
115
|
+
"type": "string",
|
|
116
|
+
"sensitive": true
|
|
117
|
+
},
|
|
118
|
+
"Sa": {
|
|
119
|
+
"type": "string",
|
|
120
|
+
"sensitive": true
|
|
121
|
+
}
|
|
122
|
+
}
|
|
123
|
+
}
|
|
@@ -140,7 +140,7 @@
|
|
|
140
140
|
],
|
|
141
141
|
"members": {
|
|
142
142
|
"Service": {
|
|
143
|
-
"shape": "
|
|
143
|
+
"shape": "S1v"
|
|
144
144
|
},
|
|
145
145
|
"OperationId": {}
|
|
146
146
|
}
|
|
@@ -205,7 +205,7 @@
|
|
|
205
205
|
],
|
|
206
206
|
"members": {
|
|
207
207
|
"Service": {
|
|
208
|
-
"shape": "
|
|
208
|
+
"shape": "S1v"
|
|
209
209
|
},
|
|
210
210
|
"OperationId": {}
|
|
211
211
|
}
|
|
@@ -284,7 +284,7 @@
|
|
|
284
284
|
],
|
|
285
285
|
"members": {
|
|
286
286
|
"Service": {
|
|
287
|
-
"shape": "
|
|
287
|
+
"shape": "S1v"
|
|
288
288
|
}
|
|
289
289
|
}
|
|
290
290
|
}
|
|
@@ -340,7 +340,7 @@
|
|
|
340
340
|
"AutoScalingConfigurationSummaryList": {
|
|
341
341
|
"type": "list",
|
|
342
342
|
"member": {
|
|
343
|
-
"shape": "
|
|
343
|
+
"shape": "S1y"
|
|
344
344
|
}
|
|
345
345
|
},
|
|
346
346
|
"NextToken": {}
|
|
@@ -500,7 +500,7 @@
|
|
|
500
500
|
],
|
|
501
501
|
"members": {
|
|
502
502
|
"Service": {
|
|
503
|
-
"shape": "
|
|
503
|
+
"shape": "S1v"
|
|
504
504
|
},
|
|
505
505
|
"OperationId": {}
|
|
506
506
|
}
|
|
@@ -523,7 +523,7 @@
|
|
|
523
523
|
],
|
|
524
524
|
"members": {
|
|
525
525
|
"Service": {
|
|
526
|
-
"shape": "
|
|
526
|
+
"shape": "S1v"
|
|
527
527
|
},
|
|
528
528
|
"OperationId": {}
|
|
529
529
|
}
|
|
@@ -616,7 +616,7 @@
|
|
|
616
616
|
],
|
|
617
617
|
"members": {
|
|
618
618
|
"Service": {
|
|
619
|
-
"shape": "
|
|
619
|
+
"shape": "S1v"
|
|
620
620
|
},
|
|
621
621
|
"OperationId": {}
|
|
622
622
|
}
|
|
@@ -836,7 +836,7 @@
|
|
|
836
836
|
}
|
|
837
837
|
}
|
|
838
838
|
},
|
|
839
|
-
"
|
|
839
|
+
"S1v": {
|
|
840
840
|
"type": "structure",
|
|
841
841
|
"required": [
|
|
842
842
|
"ServiceName",
|
|
@@ -878,11 +878,11 @@
|
|
|
878
878
|
"shape": "S1n"
|
|
879
879
|
},
|
|
880
880
|
"AutoScalingConfigurationSummary": {
|
|
881
|
-
"shape": "
|
|
881
|
+
"shape": "S1y"
|
|
882
882
|
}
|
|
883
883
|
}
|
|
884
884
|
},
|
|
885
|
-
"
|
|
885
|
+
"S1y": {
|
|
886
886
|
"type": "structure",
|
|
887
887
|
"members": {
|
|
888
888
|
"AutoScalingConfigurationArn": {},
|
|
@@ -180,7 +180,10 @@
|
|
|
180
180
|
"type": "structure",
|
|
181
181
|
"members": {
|
|
182
182
|
"ReportPlanName": {},
|
|
183
|
-
"ReportPlanArn": {}
|
|
183
|
+
"ReportPlanArn": {},
|
|
184
|
+
"CreationTime": {
|
|
185
|
+
"type": "timestamp"
|
|
186
|
+
}
|
|
184
187
|
}
|
|
185
188
|
},
|
|
186
189
|
"idempotent": true
|
|
@@ -394,7 +397,7 @@
|
|
|
394
397
|
},
|
|
395
398
|
"IamRoleArn": {},
|
|
396
399
|
"CreatedBy": {
|
|
397
|
-
"shape": "
|
|
400
|
+
"shape": "S26"
|
|
398
401
|
},
|
|
399
402
|
"ResourceType": {},
|
|
400
403
|
"BytesTransferred": {
|
|
@@ -469,7 +472,7 @@
|
|
|
469
472
|
"type": "structure",
|
|
470
473
|
"members": {
|
|
471
474
|
"CopyJob": {
|
|
472
|
-
"shape": "
|
|
475
|
+
"shape": "S2c"
|
|
473
476
|
}
|
|
474
477
|
}
|
|
475
478
|
},
|
|
@@ -523,7 +526,7 @@
|
|
|
523
526
|
"type": "structure",
|
|
524
527
|
"members": {
|
|
525
528
|
"GlobalSettings": {
|
|
526
|
-
"shape": "
|
|
529
|
+
"shape": "S2i"
|
|
527
530
|
},
|
|
528
531
|
"LastUpdateTime": {
|
|
529
532
|
"type": "timestamp"
|
|
@@ -592,7 +595,7 @@
|
|
|
592
595
|
"ResourceArn": {},
|
|
593
596
|
"ResourceType": {},
|
|
594
597
|
"CreatedBy": {
|
|
595
|
-
"shape": "
|
|
598
|
+
"shape": "S26"
|
|
596
599
|
},
|
|
597
600
|
"IamRoleArn": {},
|
|
598
601
|
"Status": {},
|
|
@@ -607,7 +610,7 @@
|
|
|
607
610
|
"type": "long"
|
|
608
611
|
},
|
|
609
612
|
"CalculatedLifecycle": {
|
|
610
|
-
"shape": "
|
|
613
|
+
"shape": "S2q"
|
|
611
614
|
},
|
|
612
615
|
"Lifecycle": {
|
|
613
616
|
"shape": "Sa"
|
|
@@ -637,7 +640,7 @@
|
|
|
637
640
|
"type": "structure",
|
|
638
641
|
"members": {
|
|
639
642
|
"ResourceTypeOptInPreference": {
|
|
640
|
-
"shape": "
|
|
643
|
+
"shape": "S2v"
|
|
641
644
|
}
|
|
642
645
|
}
|
|
643
646
|
}
|
|
@@ -663,7 +666,7 @@
|
|
|
663
666
|
"type": "structure",
|
|
664
667
|
"members": {
|
|
665
668
|
"ReportJob": {
|
|
666
|
-
"shape": "
|
|
669
|
+
"shape": "S30"
|
|
667
670
|
}
|
|
668
671
|
}
|
|
669
672
|
}
|
|
@@ -689,7 +692,7 @@
|
|
|
689
692
|
"type": "structure",
|
|
690
693
|
"members": {
|
|
691
694
|
"ReportPlan": {
|
|
692
|
-
"shape": "
|
|
695
|
+
"shape": "S34"
|
|
693
696
|
}
|
|
694
697
|
}
|
|
695
698
|
}
|
|
@@ -810,7 +813,7 @@
|
|
|
810
813
|
"type": "structure",
|
|
811
814
|
"members": {
|
|
812
815
|
"BackupPlan": {
|
|
813
|
-
"shape": "
|
|
816
|
+
"shape": "S3e"
|
|
814
817
|
},
|
|
815
818
|
"BackupPlanId": {},
|
|
816
819
|
"BackupPlanArn": {},
|
|
@@ -849,7 +852,7 @@
|
|
|
849
852
|
"type": "structure",
|
|
850
853
|
"members": {
|
|
851
854
|
"BackupPlan": {
|
|
852
|
-
"shape": "
|
|
855
|
+
"shape": "S3e"
|
|
853
856
|
}
|
|
854
857
|
}
|
|
855
858
|
}
|
|
@@ -875,7 +878,7 @@
|
|
|
875
878
|
"type": "structure",
|
|
876
879
|
"members": {
|
|
877
880
|
"BackupPlanDocument": {
|
|
878
|
-
"shape": "
|
|
881
|
+
"shape": "S3e"
|
|
879
882
|
}
|
|
880
883
|
}
|
|
881
884
|
}
|
|
@@ -969,7 +972,7 @@
|
|
|
969
972
|
"BackupVaultArn": {},
|
|
970
973
|
"SNSTopicArn": {},
|
|
971
974
|
"BackupVaultEvents": {
|
|
972
|
-
"shape": "
|
|
975
|
+
"shape": "S3s"
|
|
973
976
|
}
|
|
974
977
|
}
|
|
975
978
|
},
|
|
@@ -1003,7 +1006,7 @@
|
|
|
1003
1006
|
"BackupVaultArn": {},
|
|
1004
1007
|
"RecoveryPointArn": {},
|
|
1005
1008
|
"RestoreMetadata": {
|
|
1006
|
-
"shape": "
|
|
1009
|
+
"shape": "S3w"
|
|
1007
1010
|
}
|
|
1008
1011
|
}
|
|
1009
1012
|
},
|
|
@@ -1101,7 +1104,7 @@
|
|
|
1101
1104
|
},
|
|
1102
1105
|
"IamRoleArn": {},
|
|
1103
1106
|
"CreatedBy": {
|
|
1104
|
-
"shape": "
|
|
1107
|
+
"shape": "S26"
|
|
1105
1108
|
},
|
|
1106
1109
|
"ExpectedCompletionDate": {
|
|
1107
1110
|
"type": "timestamp"
|
|
@@ -1194,7 +1197,7 @@
|
|
|
1194
1197
|
"BackupPlanVersionsList": {
|
|
1195
1198
|
"type": "list",
|
|
1196
1199
|
"member": {
|
|
1197
|
-
"shape": "
|
|
1200
|
+
"shape": "S4d"
|
|
1198
1201
|
}
|
|
1199
1202
|
}
|
|
1200
1203
|
}
|
|
@@ -1232,7 +1235,7 @@
|
|
|
1232
1235
|
"BackupPlansList": {
|
|
1233
1236
|
"type": "list",
|
|
1234
1237
|
"member": {
|
|
1235
|
-
"shape": "
|
|
1238
|
+
"shape": "S4d"
|
|
1236
1239
|
}
|
|
1237
1240
|
}
|
|
1238
1241
|
}
|
|
@@ -1389,7 +1392,7 @@
|
|
|
1389
1392
|
"CopyJobs": {
|
|
1390
1393
|
"type": "list",
|
|
1391
1394
|
"member": {
|
|
1392
|
-
"shape": "
|
|
1395
|
+
"shape": "S2c"
|
|
1393
1396
|
}
|
|
1394
1397
|
},
|
|
1395
1398
|
"NextToken": {}
|
|
@@ -1544,7 +1547,7 @@
|
|
|
1544
1547
|
"ResourceArn": {},
|
|
1545
1548
|
"ResourceType": {},
|
|
1546
1549
|
"CreatedBy": {
|
|
1547
|
-
"shape": "
|
|
1550
|
+
"shape": "S26"
|
|
1548
1551
|
},
|
|
1549
1552
|
"IamRoleArn": {},
|
|
1550
1553
|
"Status": {},
|
|
@@ -1559,7 +1562,7 @@
|
|
|
1559
1562
|
"type": "long"
|
|
1560
1563
|
},
|
|
1561
1564
|
"CalculatedLifecycle": {
|
|
1562
|
-
"shape": "
|
|
1565
|
+
"shape": "S2q"
|
|
1563
1566
|
},
|
|
1564
1567
|
"Lifecycle": {
|
|
1565
1568
|
"shape": "Sa"
|
|
@@ -1674,7 +1677,7 @@
|
|
|
1674
1677
|
"ReportJobs": {
|
|
1675
1678
|
"type": "list",
|
|
1676
1679
|
"member": {
|
|
1677
|
-
"shape": "
|
|
1680
|
+
"shape": "S30"
|
|
1678
1681
|
}
|
|
1679
1682
|
},
|
|
1680
1683
|
"NextToken": {}
|
|
@@ -1706,7 +1709,7 @@
|
|
|
1706
1709
|
"ReportPlans": {
|
|
1707
1710
|
"type": "list",
|
|
1708
1711
|
"member": {
|
|
1709
|
-
"shape": "
|
|
1712
|
+
"shape": "S34"
|
|
1710
1713
|
}
|
|
1711
1714
|
},
|
|
1712
1715
|
"NextToken": {}
|
|
@@ -1863,7 +1866,7 @@
|
|
|
1863
1866
|
},
|
|
1864
1867
|
"SNSTopicArn": {},
|
|
1865
1868
|
"BackupVaultEvents": {
|
|
1866
|
-
"shape": "
|
|
1869
|
+
"shape": "S3s"
|
|
1867
1870
|
}
|
|
1868
1871
|
}
|
|
1869
1872
|
},
|
|
@@ -1992,7 +1995,7 @@
|
|
|
1992
1995
|
"members": {
|
|
1993
1996
|
"RecoveryPointArn": {},
|
|
1994
1997
|
"Metadata": {
|
|
1995
|
-
"shape": "
|
|
1998
|
+
"shape": "S3w"
|
|
1996
1999
|
},
|
|
1997
2000
|
"IamRoleArn": {},
|
|
1998
2001
|
"IdempotencyToken": {},
|
|
@@ -2151,7 +2154,7 @@
|
|
|
2151
2154
|
"type": "structure",
|
|
2152
2155
|
"members": {
|
|
2153
2156
|
"GlobalSettings": {
|
|
2154
|
-
"shape": "
|
|
2157
|
+
"shape": "S2i"
|
|
2155
2158
|
}
|
|
2156
2159
|
}
|
|
2157
2160
|
}
|
|
@@ -2189,7 +2192,7 @@
|
|
|
2189
2192
|
"shape": "Sa"
|
|
2190
2193
|
},
|
|
2191
2194
|
"CalculatedLifecycle": {
|
|
2192
|
-
"shape": "
|
|
2195
|
+
"shape": "S2q"
|
|
2193
2196
|
}
|
|
2194
2197
|
}
|
|
2195
2198
|
},
|
|
@@ -2204,7 +2207,7 @@
|
|
|
2204
2207
|
"type": "structure",
|
|
2205
2208
|
"members": {
|
|
2206
2209
|
"ResourceTypeOptInPreference": {
|
|
2207
|
-
"shape": "
|
|
2210
|
+
"shape": "S2v"
|
|
2208
2211
|
}
|
|
2209
2212
|
}
|
|
2210
2213
|
}
|
|
@@ -2439,10 +2442,20 @@
|
|
|
2439
2442
|
"ReportTemplate"
|
|
2440
2443
|
],
|
|
2441
2444
|
"members": {
|
|
2442
|
-
"ReportTemplate": {}
|
|
2445
|
+
"ReportTemplate": {},
|
|
2446
|
+
"FrameworkArns": {
|
|
2447
|
+
"shape": "S1q"
|
|
2448
|
+
},
|
|
2449
|
+
"NumberOfFrameworks": {
|
|
2450
|
+
"type": "integer"
|
|
2451
|
+
}
|
|
2443
2452
|
}
|
|
2444
2453
|
},
|
|
2445
|
-
"
|
|
2454
|
+
"S1q": {
|
|
2455
|
+
"type": "list",
|
|
2456
|
+
"member": {}
|
|
2457
|
+
},
|
|
2458
|
+
"S26": {
|
|
2446
2459
|
"type": "structure",
|
|
2447
2460
|
"members": {
|
|
2448
2461
|
"BackupPlanId": {},
|
|
@@ -2451,7 +2464,7 @@
|
|
|
2451
2464
|
"BackupRuleId": {}
|
|
2452
2465
|
}
|
|
2453
2466
|
},
|
|
2454
|
-
"
|
|
2467
|
+
"S2c": {
|
|
2455
2468
|
"type": "structure",
|
|
2456
2469
|
"members": {
|
|
2457
2470
|
"AccountId": {},
|
|
@@ -2474,17 +2487,17 @@
|
|
|
2474
2487
|
},
|
|
2475
2488
|
"IamRoleArn": {},
|
|
2476
2489
|
"CreatedBy": {
|
|
2477
|
-
"shape": "
|
|
2490
|
+
"shape": "S26"
|
|
2478
2491
|
},
|
|
2479
2492
|
"ResourceType": {}
|
|
2480
2493
|
}
|
|
2481
2494
|
},
|
|
2482
|
-
"
|
|
2495
|
+
"S2i": {
|
|
2483
2496
|
"type": "map",
|
|
2484
2497
|
"key": {},
|
|
2485
2498
|
"value": {}
|
|
2486
2499
|
},
|
|
2487
|
-
"
|
|
2500
|
+
"S2q": {
|
|
2488
2501
|
"type": "structure",
|
|
2489
2502
|
"members": {
|
|
2490
2503
|
"MoveToColdStorageAt": {
|
|
@@ -2495,14 +2508,14 @@
|
|
|
2495
2508
|
}
|
|
2496
2509
|
}
|
|
2497
2510
|
},
|
|
2498
|
-
"
|
|
2511
|
+
"S2v": {
|
|
2499
2512
|
"type": "map",
|
|
2500
2513
|
"key": {},
|
|
2501
2514
|
"value": {
|
|
2502
2515
|
"type": "boolean"
|
|
2503
2516
|
}
|
|
2504
2517
|
},
|
|
2505
|
-
"
|
|
2518
|
+
"S30": {
|
|
2506
2519
|
"type": "structure",
|
|
2507
2520
|
"members": {
|
|
2508
2521
|
"ReportJobId": {},
|
|
@@ -2521,14 +2534,13 @@
|
|
|
2521
2534
|
"members": {
|
|
2522
2535
|
"S3BucketName": {},
|
|
2523
2536
|
"S3Keys": {
|
|
2524
|
-
"
|
|
2525
|
-
"member": {}
|
|
2537
|
+
"shape": "S1q"
|
|
2526
2538
|
}
|
|
2527
2539
|
}
|
|
2528
2540
|
}
|
|
2529
2541
|
}
|
|
2530
2542
|
},
|
|
2531
|
-
"
|
|
2543
|
+
"S34": {
|
|
2532
2544
|
"type": "structure",
|
|
2533
2545
|
"members": {
|
|
2534
2546
|
"ReportPlanArn": {},
|
|
@@ -2552,7 +2564,7 @@
|
|
|
2552
2564
|
}
|
|
2553
2565
|
}
|
|
2554
2566
|
},
|
|
2555
|
-
"
|
|
2567
|
+
"S3e": {
|
|
2556
2568
|
"type": "structure",
|
|
2557
2569
|
"required": [
|
|
2558
2570
|
"BackupPlanName",
|
|
@@ -2599,17 +2611,17 @@
|
|
|
2599
2611
|
}
|
|
2600
2612
|
}
|
|
2601
2613
|
},
|
|
2602
|
-
"
|
|
2614
|
+
"S3s": {
|
|
2603
2615
|
"type": "list",
|
|
2604
2616
|
"member": {}
|
|
2605
2617
|
},
|
|
2606
|
-
"
|
|
2618
|
+
"S3w": {
|
|
2607
2619
|
"type": "map",
|
|
2608
2620
|
"key": {},
|
|
2609
2621
|
"value": {},
|
|
2610
2622
|
"sensitive": true
|
|
2611
2623
|
},
|
|
2612
|
-
"
|
|
2624
|
+
"S4d": {
|
|
2613
2625
|
"type": "structure",
|
|
2614
2626
|
"members": {
|
|
2615
2627
|
"BackupPlanArn": {},
|