aws-sdk 2.1392.0 → 2.1394.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 +16 -1
- package/README.md +1 -1
- package/apis/athena-2017-05-18.min.json +3 -0
- package/apis/customer-profiles-2020-08-15.min.json +252 -52
- package/apis/customer-profiles-2020-08-15.paginators.json +6 -0
- package/apis/emr-containers-2020-10-01.min.json +31 -18
- package/apis/logs-2014-03-28.min.json +99 -16
- package/apis/metadata.json +8 -0
- package/apis/payment-cryptography-2021-09-14.examples.json +5 -0
- package/apis/payment-cryptography-2021-09-14.min.json +770 -0
- package/apis/payment-cryptography-2021-09-14.paginators.json +22 -0
- package/apis/payment-cryptography-data-2022-02-03.examples.json +5 -0
- package/apis/payment-cryptography-data-2022-02-03.min.json +1018 -0
- package/apis/payment-cryptography-data-2022-02-03.paginators.json +4 -0
- package/apis/servicecatalog-2015-12-10.min.json +38 -29
- package/apis/timestream-write-2018-11-01.min.json +36 -8
- package/clients/all.d.ts +2 -0
- package/clients/all.js +3 -1
- package/clients/athena.d.ts +6 -2
- package/clients/cloudformation.d.ts +24 -24
- package/clients/cloudwatchlogs.d.ts +132 -18
- package/clients/comprehendmedical.d.ts +4 -4
- package/clients/customerprofiles.d.ts +201 -0
- package/clients/directconnect.d.ts +6 -6
- package/clients/emrcontainers.d.ts +16 -0
- package/clients/iotdeviceadvisor.d.ts +2 -2
- package/clients/paymentcryptography.d.ts +867 -0
- package/clients/paymentcryptography.js +18 -0
- package/clients/paymentcryptographydata.d.ts +1161 -0
- package/clients/paymentcryptographydata.js +18 -0
- package/clients/servicecatalog.d.ts +10 -2
- package/clients/timestreamwrite.d.ts +39 -4
- package/dist/aws-sdk-core-react-native.js +2 -2
- package/dist/aws-sdk-react-native.js +85 -11
- package/dist/aws-sdk.js +151 -48
- package/dist/aws-sdk.min.js +98 -98
- package/lib/config_service_placeholders.d.ts +4 -0
- package/lib/core.js +1 -1
- package/package.json +1 -1
@@ -346,6 +346,8 @@ export abstract class ConfigurationServicePlaceholders {
|
|
346
346
|
vpclattice?: AWS.VPCLattice.Types.ClientConfiguration;
|
347
347
|
osis?: AWS.OSIS.Types.ClientConfiguration;
|
348
348
|
mediapackagev2?: AWS.MediaPackageV2.Types.ClientConfiguration;
|
349
|
+
paymentcryptography?: AWS.PaymentCryptography.Types.ClientConfiguration;
|
350
|
+
paymentcryptographydata?: AWS.PaymentCryptographyData.Types.ClientConfiguration;
|
349
351
|
}
|
350
352
|
export interface ConfigurationServiceApiVersions {
|
351
353
|
acm?: AWS.ACM.Types.apiVersion;
|
@@ -694,4 +696,6 @@ export interface ConfigurationServiceApiVersions {
|
|
694
696
|
vpclattice?: AWS.VPCLattice.Types.apiVersion;
|
695
697
|
osis?: AWS.OSIS.Types.apiVersion;
|
696
698
|
mediapackagev2?: AWS.MediaPackageV2.Types.apiVersion;
|
699
|
+
paymentcryptography?: AWS.PaymentCryptography.Types.apiVersion;
|
700
|
+
paymentcryptographydata?: AWS.PaymentCryptographyData.Types.apiVersion;
|
697
701
|
}
|
package/lib/core.js
CHANGED