interface CfnEnvironmentProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.RefactorSpaces.CfnEnvironmentProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsrefactorspaces#CfnEnvironmentProps |
Java | software.amazon.awscdk.services.refactorspaces.CfnEnvironmentProps |
Python | aws_cdk.aws_refactorspaces.CfnEnvironmentProps |
TypeScript | aws-cdk-lib » 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 { aws_refactorspaces as refactorspaces } from 'aws-cdk-lib';
const cfnEnvironmentProps: refactorspaces.CfnEnvironmentProps = {
description: 'description',
name: 'name',
networkFabricType: 'networkFabricType',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | A description of the environment. |
| name? | string | The name of the environment. |
| network | string | The network fabric type of the environment. |
| tags? | Cfn[] | The tags assigned to the environment. |
description?
Type:
string
(optional)
A description of the environment.
name?
Type:
string
(optional)
The name of the environment.
networkFabricType?
Type:
string
(optional)
The network fabric type of the environment.
tags?
Type:
Cfn[]
(optional)
The tags assigned to the environment.

.NET
Go
Java
Python
TypeScript