Interface FeatureFlagReportProperties
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
FeatureFlagReportProperties.Jsii$Proxy
@Generated(value="jsii-pacmak/1.112.0 (build de1bc80)",
date="2025-07-16T11:43:24.712Z")
@Stability(Stable)
public interface FeatureFlagReportProperties
extends software.amazon.jsii.JsiiSerializable
Artifact properties for a feature flag report.
A feature flag report is small enough that all the properties can be inlined here, and doesn't need an additional file.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.cloud_assembly_schema.*; Object recommendedValue; Object userValue; FeatureFlagReportProperties featureFlagReportProperties = FeatureFlagReportProperties.builder() .flags(Map.of( "flagsKey", FeatureFlag.builder() .explanation("explanation") .recommendedValue(recommendedValue) .userValue(userValue) .build())) .module("module") .build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forFeatureFlagReportProperties
static final class
An implementation forFeatureFlagReportProperties
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getFlags
Information about every feature flag supported by this library. -
getModule
The library that this feature flag report applies to. -
builder
-