interface CfnConnectionAliasProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.WorkSpaces.CfnConnectionAliasProps |
Java | software.amazon.awscdk.services.workspaces.CfnConnectionAliasProps |
Python | aws_cdk.aws_workspaces.CfnConnectionAliasProps |
TypeScript | @aws-cdk/aws-workspaces » CfnConnectionAliasProps |
Properties for defining a CfnConnectionAlias.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as workspaces from '@aws-cdk/aws-workspaces';
const cfnConnectionAliasProps: workspaces.CfnConnectionAliasProps = {
connectionString: 'connectionString',
// the properties below are optional
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
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
Java
Python
TypeScript