interface UnconfiguredBehavesLike
| Language | Type name |
|---|---|
.NET | Amazon.CDK.cloud_assembly_schema.UnconfiguredBehavesLike |
Go | github.com/aws/aws-cdk-go/awscdk/v2/cloudassemblyschema#UnconfiguredBehavesLike |
Java | software.amazon.awscdk.cloud_assembly_schema.UnconfiguredBehavesLike |
Python | aws_cdk.cloud_assembly_schema.UnconfiguredBehavesLike |
TypeScript (source) | aws-cdk-lib » cloud_assembly_schema » UnconfiguredBehavesLike |
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 v1: any;
declare const v2: any;
const unconfiguredBehavesLike: cloud_assembly_schema.UnconfiguredBehavesLike = {
v1: v1,
v2: v2,
};
Properties
| Name | Type | Description |
|---|---|---|
| v1? | any | Historical accident, don't use. |
| v2? | any | The value of the flag that produces the same behavior as when the flag is not configured at all. |
v1?
Type:
any
(optional, default: ignore)
Historical accident, don't use.
This value may be present, but it should never be used. The actual value is
in the v2 field, regardless of the version of the CDK library.
v2?
Type:
any
(optional, default: false)
The value of the flag that produces the same behavior as when the flag is not configured at all.
Even though it is called 'v2', this is the official name of this field. In any future versions of CDK (v3, v4, ...), this field will still be called 'v2'.
The structure of this field is a historical accident. See the comment on
unconfiguredBehavesLike for more information.

.NET
Go
Java
Python
TypeScript (