Interface FeatureFlag
-
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
FeatureFlag.Jsii$Proxy
@Generated(value="jsii-pacmak/1.118.0 (build 02eec31)", date="2025-11-06T20:25:05.783Z") @Stability(Stable) public interface FeatureFlag extends software.amazon.jsii.JsiiSerializable
A single feature flag.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classFeatureFlag.BuilderA builder forFeatureFlagstatic classFeatureFlag.Jsii$ProxyAn implementation forFeatureFlag
-
Method Summary
All Methods Static Methods Instance Methods Default Methods Modifier and Type Method Description static FeatureFlag.Builderbuilder()default StringgetExplanation()Explanation about the purpose of this flag that can be shown to the user.default ObjectgetRecommendedValue()The library-recommended value for this flag, if any.default UnconfiguredBehavesLikegetUnconfiguredBehavesLike()The value of the flag that produces the same behavior as when the flag is not configured at all.default ObjectgetUserValue()The value configured by the user.
-
-
-
Method Detail
-
getExplanation
@Stability(Stable) @Nullable default String getExplanation()
Explanation about the purpose of this flag that can be shown to the user.Default: - No description
-
getRecommendedValue
@Stability(Stable) @Nullable default Object getRecommendedValue()
The library-recommended value for this flag, if any.It is possible that there is no recommended value.
Default: - No recommended value.
-
getUnconfiguredBehavesLike
@Stability(Stable) @Nullable default UnconfiguredBehavesLike getUnconfiguredBehavesLike()
The value of the flag that produces the same behavior as when the flag is not configured at all.The structure of this field is a historical accident. The type of this field should have been boolean, which should have contained the default value for the flag appropriate for the current version of the CDK library. We are not rectifying this accident because doing so
Instead, the canonical way to access this value is by evaluating
unconfiguredBehavesLike?.v2 ?? false.Default: false
-
getUserValue
@Stability(Stable) @Nullable default Object getUserValue()
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.
Default: - Not configured by the user
-
builder
@Stability(Stable) static FeatureFlag.Builder builder()
- Returns:
- a
FeatureFlag.BuilderofFeatureFlag
-
-