interface CfnEnvironmentProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.RefactorSpaces.CfnEnvironmentProps |
Java | software.amazon.awscdk.services.refactorspaces.CfnEnvironmentProps |
Python | aws_cdk.aws_refactorspaces.CfnEnvironmentProps |
TypeScript | @aws-cdk/aws-refactorspaces » CfnEnvironmentProps |
Properties for defining a CfnEnvironment.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as refactorspaces from '@aws-cdk/aws-refactorspaces';
const cfnEnvironmentProps: refactorspaces.CfnEnvironmentProps = {
name: 'name',
networkFabricType: 'networkFabricType',
// the properties below are optional
description: 'description',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| name | string | The name of the environment. |
| network | string | The network fabric type of the environment. |
| description? | string | A description of the environment. |
| tags? | Cfn[] | The tags assigned to the environment. |
name
Type:
string
The name of the environment.
networkFabricType
Type:
string
The network fabric type of the environment.
description?
Type:
string
(optional)
A description of the environment.
tags?
Type:
Cfn[]
(optional)
The tags assigned to the environment.

.NET
Java
Python
TypeScript