interface ConnectionAliasAssociationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.WorkSpaces.CfnConnectionAliasPropsMixin.ConnectionAliasAssociationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsworkspaces#CfnConnectionAliasPropsMixin_ConnectionAliasAssociationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.workspaces.CfnConnectionAliasPropsMixin.ConnectionAliasAssociationProperty |
Python | aws_cdk.cfn_property_mixins.aws_workspaces.CfnConnectionAliasPropsMixin.ConnectionAliasAssociationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_workspaces » CfnConnectionAliasPropsMixin » ConnectionAliasAssociationProperty |
Describes a connection alias association that is used for cross-Region redirection.
For more information, see Cross-Region Redirection for Amazon WorkSpaces .
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 connectionAliasAssociationProperty: workspaces.CfnConnectionAliasPropsMixin.ConnectionAliasAssociationProperty = {
associatedAccountId: 'associatedAccountId',
associationStatus: 'associationStatus',
connectionIdentifier: 'connectionIdentifier',
resourceId: 'resourceId',
};
Properties
| Name | Type | Description |
|---|---|---|
| associated | string | The identifier of the AWS account that associated the connection alias with a directory. |
| association | string | The association status of the connection alias. |
| connection | string | The identifier of the connection alias association. |
| resource | string | The identifier of the directory associated with a connection alias. |
associatedAccountId?
Type:
string
(optional)
The identifier of the AWS account that associated the connection alias with a directory.
associationStatus?
Type:
string
(optional)
The association status of the connection alias.
connectionIdentifier?
Type:
string
(optional)
The identifier of the connection alias association.
You use the connection identifier in the DNS TXT record when you're configuring your DNS routing policies.
resourceId?
Type:
string
(optional)
The identifier of the directory associated with a connection alias.

.NET
Go
Java
Python
TypeScript