Skip to content

Describe Connection Alias Permissions

workspaces_describe_connection_alias_permissions R Documentation

Describes the permissions that the owner of a connection alias has granted to another Amazon Web Services account for the specified connection alias

Description

Describes the permissions that the owner of a connection alias has granted to another Amazon Web Services account for the specified connection alias. For more information, see Cross-Region Redirection for Amazon WorkSpaces.

Usage

workspaces_describe_connection_alias_permissions(AliasId, NextToken,
  MaxResults)

Arguments

AliasId

[required] The identifier of the connection alias.

NextToken

If you received a NextToken from a previous call that was paginated, provide this token to receive the next set of results.

MaxResults

The maximum number of results to return.

Value

A list with the following syntax:

list(
  AliasId = "string",
  ConnectionAliasPermissions = list(
    list(
      SharedAccountId = "string",
      AllowAssociation = TRUE|FALSE
    )
  ),
  NextToken = "string"
)

Request syntax

svc$describe_connection_alias_permissions(
  AliasId = "string",
  NextToken = "string",
  MaxResults = 123
)