CfnConnectionAliasProps

class aws_cdk.aws_workspaces.CfnConnectionAliasProps(*, connection_string, tags=None)

Bases: object

Properties for defining a CfnConnectionAlias.

Parameters:
  • connection_string (str) – The connection string specified for the connection alias. The connection string must be in the form of a fully qualified domain name (FQDN), such as www.example.com .

  • tags (Optional[Sequence[Union[CfnTag, Dict[str, Any]]]]) – The tags to associate with the connection alias.

Link:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-connectionalias.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_workspaces as workspaces

cfn_connection_alias_props = workspaces.CfnConnectionAliasProps(
    connection_string="connectionString",

    # the properties below are optional
    tags=[CfnTag(
        key="key",
        value="value"
    )]
)

Attributes

connection_string

The connection string specified for the connection alias.

The connection string must be in the form of a fully qualified domain name (FQDN), such as www.example.com .

Link:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-workspaces-connectionalias.html#cfn-workspaces-connectionalias-connectionstring

tags

The tags to associate with the connection alias.

Link:

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