Skip to content

DefaultStackSynthesizerProps

Configuration properties for DefaultStackSynthesizer.

Initializer

using AlibabaCloud.SDK.ROS.CDK.Core;
new DefaultStackSynthesizerProps {
    string BucketPrefix = null,
    string FileAssetsBucketName = null,
    string Qualifier = null
};

Properties

Name Type Description
BucketPrefix string bucketPrefix to use while storing OSS Assets.
FileAssetsBucketName string Name of the OSS bucket to hold file assets.
Qualifier string Qualifier to disambiguate multiple environments in the same account.

BucketPrefixOptional

public string BucketPrefix { get; set; }
  • Type: string
  • Default: DefaultStackSynthesizer.DEFAULT_FILE_ASSET_PREFIX

bucketPrefix to use while storing OSS Assets.


FileAssetsBucketNameOptional

public string FileAssetsBucketName { get; set; }
  • Type: string
  • Default: DefaultStackSynthesizer.DEFAULT_FILE_ASSETS_BUCKET_NAME

Name of the OSS bucket to hold file assets.

You must supply this if you have given a non-standard name to the staging bucket.

The placeholders ${Qualifier}, ${ALIYUN::AccountId} and ${ALIYUN::Region} will be replaced with the values of qualifier and the stack's account and region, respectively.


QualifierOptional

public string Qualifier { get; set; }
  • Type: string

Qualifier to disambiguate multiple environments in the same account.

You can use this and leave the other naming properties empty if you have deployed the bootstrap environment with standard names but only differnet qualifiers.