interface FeatureFlagReportProperties
| Language | Type name |
|---|---|
.NET | Amazon.CDK.cloud_assembly_schema.FeatureFlagReportProperties |
Go | github.com/aws/aws-cdk-go/awscdk/v2/cloudassemblyschema#FeatureFlagReportProperties |
Java | software.amazon.awscdk.cloud_assembly_schema.FeatureFlagReportProperties |
Python | aws_cdk.cloud_assembly_schema.FeatureFlagReportProperties |
TypeScript (source) | aws-cdk-lib » cloud_assembly_schema » FeatureFlagReportProperties |
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 { cloud_assembly_schema } from 'aws-cdk-lib';
declare const recommendedValue: any;
declare const userValue: any;
declare const v1: any;
declare const v2: any;
const featureFlagReportProperties: cloud_assembly_schema.FeatureFlagReportProperties = {
flags: {
flagsKey: {
explanation: 'explanation',
recommendedValue: recommendedValue,
unconfiguredBehavesLike: {
v1: v1,
v2: v2,
},
userValue: userValue,
},
},
module: 'module',
};
Properties
| Name | Type | Description |
|---|---|---|
| flags | { [string]: Feature } | Information about every feature flag supported by this library. |
| module | string | The library that this feature flag report applies to. |
flags
Type:
{ [string]: Feature }
Information about every feature flag supported by this library.
module
Type:
string
The library that this feature flag report applies to.

.NET
Go
Java
Python
TypeScript (