interface CfnEnvironmentMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.RefactorSpaces.Mixins.CfnEnvironmentMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsrefactorspaces/mixins#CfnEnvironmentMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.refactorspaces.mixins.CfnEnvironmentMixinProps |
Python | aws_cdk.mixins_preview.aws_refactorspaces.mixins.CfnEnvironmentMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_refactorspaces » mixins » CfnEnvironmentMixinProps |
Properties for CfnEnvironmentPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as refactorspaces_mixins } from '@aws-cdk/mixins-preview/aws-refactorspaces';
const cfnEnvironmentMixinProps: refactorspaces_mixins.CfnEnvironmentMixinProps = {
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