CfnEnvironmentMixinProps
- class aws_cdk.mixins_preview.aws_refactorspaces.mixins.CfnEnvironmentMixinProps(*, description=None, name=None, network_fabric_type=None, tags=None)
Bases:
objectProperties for CfnEnvironmentPropsMixin.
- 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:
from aws_cdk import CfnTag # The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.mixins_preview.aws_refactorspaces import mixins as refactorspaces_mixins cfn_environment_mixin_props = refactorspaces_mixins.CfnEnvironmentMixinProps( 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.