UNPKG

727 BTypeScriptView Raw
1/**
2 * Includes special markers for automatic generation of physical names.
3 */
4export declare class PhysicalName {
5 /**
6 * Use this to automatically generate a physical name for an AWS resource only
7 * if the resource is referenced across environments (account/region).
8 * Otherwise, the name will be allocated during deployment by CloudFormation.
9 *
10 * If you are certain that a resource will be referenced across environments,
11 * you may also specify an explicit physical name for it. This option is
12 * mostly designed for reusable constructs which may or may not be referenced
13 * acrossed environments.
14 */
15 static readonly GENERATE_IF_NEEDED: string;
16 private constructor();
17}