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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnConnectionAlias.ConnectionAliasAssociationProperty
static final class
An implementation forCfnConnectionAlias.ConnectionAliasAssociationProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default String
The identifier of the AWS account that associated the connection alias with a directory.default String
The association status of the connection alias.default String
The identifier of the connection alias association.default String
The identifier of the directory associated with a connection alias.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAssociatedAccountId
The identifier of the AWS account that associated the connection alias with a directory.- See Also:
-
getAssociationStatus
The association status of the connection alias.- See Also:
-
getConnectionIdentifier
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.
- See Also:
-
getResourceId
The identifier of the directory associated with a connection alias.- See Also:
-
builder
-