aws-cdk-lib
Version:
Version 2 of the AWS Cloud Development Kit library
24 lines (23 loc) • 609 B
TypeScript
/**
* Destination for assets that need to be uploaded to AWS
*/
export interface AwsDestination {
/**
* The region where this asset will need to be published
*
* @default - Current region
*/
readonly region?: string;
/**
* The role that needs to be assumed while publishing this asset
*
* @default - No role will be assumed
*/
readonly assumeRoleArn?: string;
/**
* The ExternalId that needs to be supplied while assuming this role
*
* @default - No ExternalId will be supplied
*/
readonly assumeRoleExternalId?: string;
}