Interface CfnConnectionAlias.ConnectionAliasAssociationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnConnectionAlias.ConnectionAliasAssociationProperty.Jsii$Proxy
Enclosing class:
CfnConnectionAlias

@Stability(Stable) public static interface CfnConnectionAlias.ConnectionAliasAssociationProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.workspaces.*;
 ConnectionAliasAssociationProperty connectionAliasAssociationProperty = ConnectionAliasAssociationProperty.builder()
         .associatedAccountId("associatedAccountId")
         .associationStatus("associationStatus")
         .connectionIdentifier("connectionIdentifier")
         .resourceId("resourceId")
         .build();
 

See Also: