Skip to content

Describe Client Properties

workspaces_describe_client_properties R Documentation

Retrieves a list that describes one or more specified Amazon WorkSpaces clients

Description

Retrieves a list that describes one or more specified Amazon WorkSpaces clients.

Usage

workspaces_describe_client_properties(ResourceIds)

Arguments

ResourceIds

[required] The resource identifier, in the form of directory IDs.

Value

A list with the following syntax:

list(
  ClientPropertiesList = list(
    list(
      ResourceId = "string",
      ClientProperties = list(
        ReconnectEnabled = "ENABLED"|"DISABLED",
        LogUploadEnabled = "ENABLED"|"DISABLED"
      )
    )
  )
)

Request syntax

svc$describe_client_properties(
  ResourceIds = list(
    "string"
  )
)