interface CfnConnectionAliasMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.WorkSpaces.CfnConnectionAliasMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsworkspaces#CfnConnectionAliasMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.workspaces.CfnConnectionAliasMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_workspaces.CfnConnectionAliasMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_workspaces » CfnConnectionAliasMixinProps |
Properties for CfnConnectionAliasPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_workspaces as workspaces } from '@aws-cdk/cfn-property-mixins';
const cfnConnectionAliasMixinProps: workspaces.CfnConnectionAliasMixinProps = {
connectionString: 'connectionString',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| connection | string | The connection string specified for the connection alias. |
| tags? | Cfn[] | The tags to associate with the connection alias. |
connectionString?
Type:
string
(optional)
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?
Type:
Cfn[]
(optional)
The tags to associate with the connection alias.

.NET
Go
Java
Python
TypeScript