CfnEnvironmentProps
- class aws_cdk.aws_refactorspaces.CfnEnvironmentProps(*, description=None, name=None, network_fabric_type=None, tags=None)
Bases:
object
Properties for defining a
CfnEnvironment
.- Parameters:
description (
Optional
[str
]) – A description of the environment.name (
Optional
[str
]) – The name of the environment.network_fabric_type (
Optional
[str
]) – The network fabric type of the environment.tags (
Optional
[Sequence
[Union
[CfnTag
,Dict
[str
,Any
]]]]) – The tags assigned to the environment.
- See:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_refactorspaces as refactorspaces cfn_environment_props = refactorspaces.CfnEnvironmentProps( description="description", name="name", network_fabric_type="networkFabricType", tags=[CfnTag( key="key", value="value" )] )
Attributes
- description
A description of the environment.
- name
The name of the environment.
- network_fabric_type
The network fabric type of the environment.
- tags
The tags assigned to the environment.