CfnConnectionAliasMixinProps
- class aws_cdk.mixins_preview.aws_workspaces.mixins.CfnConnectionAliasMixinProps(*, connection_string=None, tags=None)
Bases:
objectProperties for CfnConnectionAliasPropsMixin.
- Parameters:
connection_string (
Optional[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 aswww.example.com.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – The tags to associate with the connection alias.
- 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.mixins_preview.aws_workspaces import mixins as workspaces_mixins cfn_connection_alias_mixin_props = workspaces_mixins.CfnConnectionAliasMixinProps( connection_string="connectionString", 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.
- tags
The tags to associate with the connection alias.