Skip to content

Commit 45ceb89

Browse files
authored
feat: change feature flag schema to store default value (#742)
This updates the feature flag schema to store the default value of the flag. --- By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license
1 parent 969c499 commit 45ceb89

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

packages/@aws-cdk/cloud-assembly-schema/lib/cloud-assembly/artifact-schema.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -271,6 +271,13 @@ export interface FeatureFlag {
271271
* @default - No description
272272
*/
273273
readonly explanation?: string;
274+
275+
/**
276+
* The value of the flag if it is unconfigured
277+
*
278+
* @default - No value
279+
*/
280+
readonly unconfiguredBehavesLike?: { [key: string]: any };
274281
}
275282

276283
/**

0 commit comments

Comments
 (0)