CfnEnvironmentProps

class aws_cdk.aws_refactorspaces.CfnEnvironmentProps(*, name, network_fabric_type, description=None, tags=None)

Bases: object

Properties 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:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-refactorspaces-environment.html

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.

Link:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-refactorspaces-environment.html#cfn-refactorspaces-environment-description

name

The name of the environment.

Link:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-refactorspaces-environment.html#cfn-refactorspaces-environment-name

network_fabric_type

The network fabric type of the environment.

Link:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-refactorspaces-environment.html#cfn-refactorspaces-environment-networkfabrictype

tags

The tags assigned to the environment.

Link:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-refactorspaces-environment.html#cfn-refactorspaces-environment-tags