CfnEnvironmentProps
- class aws_cdk.aws_refactorspaces.CfnEnvironmentProps(*, name, network_fabric_type, description=None, tags=None)
Bases:
objectProperties for defining a
CfnEnvironment.- Parameters:
name (
str) – The name of the environment.network_fabric_type (
str) – The network fabric type of the environment.description (
Optional[str]) – A description of the environment.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – The tags assigned to the environment.
- Link:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_refactorspaces as refactorspaces cfn_environment_props = refactorspaces.CfnEnvironmentProps( name="name", network_fabric_type="networkFabricType", # the properties below are optional description="description", 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.