interface FeatureFlag
Language | Type name |
---|---|
![]() | Amazon.CDK.CloudAssembly.Schema.FeatureFlag |
![]() | software.amazon.awscdk.cloudassembly.schema.FeatureFlag |
![]() | aws_cdk.cloud_assembly_schema.FeatureFlag |
![]() | @aws-cdk/cloud-assembly-schema » FeatureFlag |
A single feature flag.
Properties
Name | Type | Description |
---|---|---|
explanation? | string | Explanation about the purpose of this flag that can be shown to the user. |
recommended | any | The library-recommended value for this flag, if any. |
unconfigured | { [string]: any } | The value of the flag if it is unconfigured. |
user | any | The value configured by the user. |
explanation?
Type:
string
(optional, default: No description)
Explanation about the purpose of this flag that can be shown to the user.
recommendedValue?
Type:
any
(optional, default: No recommended value.)
The library-recommended value for this flag, if any.
It is possible that there is no recommended value.
unconfiguredBehavesLike?
Type:
{ [string]: any }
(optional, default: No value)
The value of the flag if it is unconfigured.
userValue?
Type:
any
(optional, default: Not configured by the user)
The value configured by the user.
This is the value configured at the root of the tree. Users may also have configured values at specific locations in the tree; we don't report on those.