cdk-docker-image-deployment 0.0.66 → 0.0.67
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/.jsii +3 -3
- package/lib/destination.js +1 -1
- package/lib/docker-image-deployment.js +1 -1
- package/lib/source.js +1 -1
- package/node_modules/aws-sdk/CHANGELOG.md +12 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/acm-2015-12-08.min.json +2 -1
- package/node_modules/aws-sdk/apis/billingconductor-2021-07-30.min.json +78 -10
- package/node_modules/aws-sdk/apis/billingconductor-2021-07-30.paginators.json +6 -0
- package/node_modules/aws-sdk/apis/ec2-2016-11-15.min.json +844 -836
- package/node_modules/aws-sdk/apis/fms-2018-01-01.min.json +354 -87
- package/node_modules/aws-sdk/apis/lightsail-2016-11-28.min.json +174 -140
- package/node_modules/aws-sdk/apis/metadata.json +4 -0
- package/node_modules/aws-sdk/apis/opensearch-2021-01-01.min.json +459 -139
- package/node_modules/aws-sdk/apis/resource-explorer-2-2022-07-28.examples.json +5 -0
- package/node_modules/aws-sdk/apis/resource-explorer-2-2022-07-28.min.json +624 -0
- package/node_modules/aws-sdk/apis/resource-explorer-2-2022-07-28.paginators.json +28 -0
- package/node_modules/aws-sdk/clients/acm.d.ts +9 -4
- package/node_modules/aws-sdk/clients/all.d.ts +1 -0
- package/node_modules/aws-sdk/clients/all.js +2 -1
- package/node_modules/aws-sdk/clients/billingconductor.d.ts +163 -63
- package/node_modules/aws-sdk/clients/ec2.d.ts +16 -0
- package/node_modules/aws-sdk/clients/fms.d.ts +322 -1
- package/node_modules/aws-sdk/clients/lightsail.d.ts +85 -17
- package/node_modules/aws-sdk/clients/opensearch.d.ts +890 -430
- package/node_modules/aws-sdk/clients/polly.d.ts +1 -1
- package/node_modules/aws-sdk/clients/resourceexplorer2.d.ts +693 -0
- package/node_modules/aws-sdk/clients/resourceexplorer2.js +18 -0
- package/node_modules/aws-sdk/clients/route53.d.ts +4 -4
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +2 -2
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +48 -11
- package/node_modules/aws-sdk/dist/aws-sdk.js +853 -840
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +77 -77
- package/node_modules/aws-sdk/lib/config_service_placeholders.d.ts +2 -0
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +4 -4
|
@@ -488,7 +488,7 @@ declare namespace Polly {
|
|
|
488
488
|
*/
|
|
489
489
|
SupportedEngines?: EngineList;
|
|
490
490
|
}
|
|
491
|
-
export type VoiceId = "Aditi"|"Amy"|"Astrid"|"Bianca"|"Brian"|"Camila"|"Carla"|"Carmen"|"Celine"|"Chantal"|"Conchita"|"Cristiano"|"Dora"|"Emma"|"Enrique"|"Ewa"|"Filiz"|"Gabrielle"|"Geraint"|"Giorgio"|"Gwyneth"|"Hans"|"Ines"|"Ivy"|"Jacek"|"Jan"|"Joanna"|"Joey"|"Justin"|"Karl"|"Kendra"|"Kevin"|"Kimberly"|"Lea"|"Liv"|"Lotte"|"Lucia"|"Lupe"|"Mads"|"Maja"|"Marlene"|"Mathieu"|"Matthew"|"Maxim"|"Mia"|"Miguel"|"Mizuki"|"Naja"|"Nicole"|"Olivia"|"Penelope"|"Raveena"|"Ricardo"|"Ruben"|"Russell"|"Salli"|"Seoyeon"|"Takumi"|"Tatyana"|"Vicki"|"Vitoria"|"Zeina"|"Zhiyu"|"Aria"|"Ayanda"|"Arlet"|"Hannah"|"Arthur"|"Daniel"|"Liam"|"Pedro"|"Kajal"|"Hiujin"|string;
|
|
491
|
+
export type VoiceId = "Aditi"|"Amy"|"Astrid"|"Bianca"|"Brian"|"Camila"|"Carla"|"Carmen"|"Celine"|"Chantal"|"Conchita"|"Cristiano"|"Dora"|"Emma"|"Enrique"|"Ewa"|"Filiz"|"Gabrielle"|"Geraint"|"Giorgio"|"Gwyneth"|"Hans"|"Ines"|"Ivy"|"Jacek"|"Jan"|"Joanna"|"Joey"|"Justin"|"Karl"|"Kendra"|"Kevin"|"Kimberly"|"Lea"|"Liv"|"Lotte"|"Lucia"|"Lupe"|"Mads"|"Maja"|"Marlene"|"Mathieu"|"Matthew"|"Maxim"|"Mia"|"Miguel"|"Mizuki"|"Naja"|"Nicole"|"Olivia"|"Penelope"|"Raveena"|"Ricardo"|"Ruben"|"Russell"|"Salli"|"Seoyeon"|"Takumi"|"Tatyana"|"Vicki"|"Vitoria"|"Zeina"|"Zhiyu"|"Aria"|"Ayanda"|"Arlet"|"Hannah"|"Arthur"|"Daniel"|"Liam"|"Pedro"|"Kajal"|"Hiujin"|"Laura"|"Elin"|"Ida"|"Suvi"|string;
|
|
492
492
|
export type VoiceList = Voice[];
|
|
493
493
|
export type VoiceName = string;
|
|
494
494
|
/**
|