Describe Connection Aliases
| workspaces_describe_connection_aliases | R Documentation |
Retrieves a list that describes the connection aliases used for cross-Region redirection¶
Description¶
Retrieves a list that describes the connection aliases used for cross-Region redirection. For more information, see Cross-Region Redirection for Amazon WorkSpaces.
Usage¶
Arguments¶
AliasIdsThe identifiers of the connection aliases to describe.
ResourceIdThe identifier of the directory associated with the connection alias.
LimitThe maximum number of connection aliases to return.
NextTokenIf you received a
NextTokenfrom a previous call that was paginated, provide this token to receive the next set of results.
Value¶
A list with the following syntax:
list(
ConnectionAliases = list(
list(
ConnectionString = "string",
AliasId = "string",
State = "CREATING"|"CREATED"|"DELETING",
OwnerAccountId = "string",
Associations = list(
list(
AssociationStatus = "NOT_ASSOCIATED"|"ASSOCIATED_WITH_OWNER_ACCOUNT"|"ASSOCIATED_WITH_SHARED_ACCOUNT"|"PENDING_ASSOCIATION"|"PENDING_DISASSOCIATION",
AssociatedAccountId = "string",
ResourceId = "string",
ConnectionIdentifier = "string"
)
)
)
),
NextToken = "string"
)