interface ConnectionAliasAssociationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.WorkSpaces.Mixins.CfnConnectionAliasPropsMixin.ConnectionAliasAssociationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsworkspaces/mixins#CfnConnectionAliasPropsMixin_ConnectionAliasAssociationProperty |
Java | software.amazon.awscdk.mixins.preview.services.workspaces.mixins.CfnConnectionAliasPropsMixin.ConnectionAliasAssociationProperty |
Python | aws_cdk.mixins_preview.aws_workspaces.mixins.CfnConnectionAliasPropsMixin.ConnectionAliasAssociationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_workspaces » mixins » 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 { mixins as workspaces_mixins } from '@aws-cdk/mixins-preview/aws-workspaces';
const connectionAliasAssociationProperty: workspaces_mixins.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