aws-sdk 2.953.0 → 2.957.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 +29 -1
- package/README.md +1 -1
- package/apis/batch-2016-08-10.min.json +18 -5
- package/apis/chime-2018-05-01.min.json +78 -0
- package/apis/cloudformation-2010-05-15.min.json +31 -0
- package/apis/iotanalytics-2017-11-27.min.json +64 -34
- package/apis/iotsitewise-2019-12-02.min.json +143 -78
- package/apis/iotwireless-2020-11-22.min.json +1 -0
- package/apis/metadata.json +13 -1
- package/apis/models.lex.v2-2020-08-07.waiters2.json +255 -0
- package/apis/monitoring-2010-08-01.min.json +23 -22
- package/apis/quicksight-2018-04-01.min.json +284 -103
- package/apis/redshift-data-2019-12-20.min.json +90 -8
- package/apis/route53-2013-04-01.min.json +61 -60
- package/apis/route53-recovery-cluster-2019-12-02.examples.json +5 -0
- package/apis/route53-recovery-cluster-2019-12-02.min.json +85 -0
- package/apis/route53-recovery-cluster-2019-12-02.paginators.json +4 -0
- package/apis/route53-recovery-control-config-2020-11-02.min.json +799 -0
- package/apis/route53-recovery-control-config-2020-11-02.paginators.json +29 -0
- package/apis/route53-recovery-control-config-2020-11-02.waiters2.json +152 -0
- package/apis/route53-recovery-readiness-2019-12-02.min.json +1457 -0
- package/apis/route53-recovery-readiness-2019-12-02.paginators.json +76 -0
- package/apis/s3control-2018-08-20.min.json +64 -55
- package/apis/synthetics-2017-10-11.min.json +40 -3
- package/apis/textract-2018-06-27.min.json +144 -46
- package/clients/all.d.ts +3 -0
- package/clients/all.js +4 -1
- package/clients/batch.d.ts +159 -140
- package/clients/chime.d.ts +99 -2
- package/clients/cloudformation.d.ts +294 -256
- package/clients/cloudwatch.d.ts +19 -14
- package/clients/ec2.d.ts +89 -89
- package/clients/identitystore.d.ts +15 -15
- package/clients/iot.d.ts +2 -2
- package/clients/iotanalytics.d.ts +169 -129
- package/clients/iotsitewise.d.ts +74 -6
- package/clients/iotwireless.d.ts +18 -17
- package/clients/lexmodelsv2.js +1 -0
- package/clients/quicksight.d.ts +504 -316
- package/clients/redshiftdata.d.ts +164 -38
- package/clients/route53.d.ts +92 -87
- package/clients/route53recoverycluster.d.ts +105 -0
- package/clients/route53recoverycluster.js +18 -0
- package/clients/route53recoverycontrolconfig.d.ts +800 -0
- package/clients/route53recoverycontrolconfig.js +19 -0
- package/clients/route53recoveryreadiness.d.ts +1170 -0
- package/clients/route53recoveryreadiness.js +18 -0
- package/clients/s3control.d.ts +22 -0
- package/clients/shield.d.ts +69 -69
- package/clients/ssoadmin.d.ts +83 -83
- package/clients/synthetics.d.ts +27 -10
- package/clients/textract.d.ts +92 -1
- package/dist/aws-sdk-core-react-native.js +2 -2
- package/dist/aws-sdk-react-native.js +228 -103
- package/dist/aws-sdk.js +194 -120
- package/dist/aws-sdk.min.js +85 -85
- package/lib/config_service_placeholders.d.ts +6 -0
- package/lib/core.js +1 -1
- package/package.json +1 -1
|
@@ -271,6 +271,9 @@ export abstract class ConfigurationServicePlaceholders {
|
|
|
271
271
|
applicationcostprofiler?: AWS.ApplicationCostProfiler.Types.ClientConfiguration;
|
|
272
272
|
apprunner?: AWS.AppRunner.Types.ClientConfiguration;
|
|
273
273
|
proton?: AWS.Proton.Types.ClientConfiguration;
|
|
274
|
+
route53recoverycluster?: AWS.Route53RecoveryCluster.Types.ClientConfiguration;
|
|
275
|
+
route53recoverycontrolconfig?: AWS.Route53RecoveryControlConfig.Types.ClientConfiguration;
|
|
276
|
+
route53recoveryreadiness?: AWS.Route53RecoveryReadiness.Types.ClientConfiguration;
|
|
274
277
|
}
|
|
275
278
|
export interface ConfigurationServiceApiVersions {
|
|
276
279
|
acm?: AWS.ACM.Types.apiVersion;
|
|
@@ -544,4 +547,7 @@ export interface ConfigurationServiceApiVersions {
|
|
|
544
547
|
applicationcostprofiler?: AWS.ApplicationCostProfiler.Types.apiVersion;
|
|
545
548
|
apprunner?: AWS.AppRunner.Types.apiVersion;
|
|
546
549
|
proton?: AWS.Proton.Types.apiVersion;
|
|
550
|
+
route53recoverycluster?: AWS.Route53RecoveryCluster.Types.apiVersion;
|
|
551
|
+
route53recoverycontrolconfig?: AWS.Route53RecoveryControlConfig.Types.apiVersion;
|
|
552
|
+
route53recoveryreadiness?: AWS.Route53RecoveryReadiness.Types.apiVersion;
|
|
547
553
|
}
|
package/lib/core.js
CHANGED