interface FeatureFlagReportProperties
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CloudAssembly.Schema.FeatureFlagReportProperties |
Java | software.amazon.awscdk.cloudassembly.schema.FeatureFlagReportProperties |
Python | aws_cdk.cloud_assembly_schema.FeatureFlagReportProperties |
TypeScript | @aws-cdk/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 * as cloud_assembly_schema from '@aws-cdk/cloud-assembly-schema';
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
Java
Python
TypeScript