interface FeatureFlagReportProperties
Language | Type name |
---|---|
![]() | Amazon.CDK.cloud_assembly_schema.FeatureFlagReportProperties |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/cloudassemblyschema#FeatureFlagReportProperties |
![]() | software.amazon.awscdk.cloud_assembly_schema.FeatureFlagReportProperties |
![]() | aws_cdk.cloud_assembly_schema.FeatureFlagReportProperties |
![]() | 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;
const featureFlagReportProperties: cloud_assembly_schema.FeatureFlagReportProperties = {
flags: {
flagsKey: {
explanation: 'explanation',
recommendedValue: recommendedValue,
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.