Skip to content

Describe Directory Configs

appstream_describe_directory_configs R Documentation

Retrieves a list that describes one or more specified Directory Config objects for AppStream 2

Description

Retrieves a list that describes one or more specified Directory Config objects for AppStream 2.0, if the names for these objects are provided. Otherwise, all Directory Config objects in the account are described. These objects include the configuration information required to join fleets and image builders to Microsoft Active Directory domains.

Although the response syntax in this topic includes the account password, this password is not returned in the actual response.

Usage

appstream_describe_directory_configs(DirectoryNames, MaxResults,
  NextToken)

Arguments

DirectoryNames

The directory names.

MaxResults

The maximum size of each page of results.

NextToken

The pagination token to use to retrieve the next page of results for this operation. If this value is null, it retrieves the first page.

Value

A list with the following syntax:

list(
  DirectoryConfigs = list(
    list(
      DirectoryName = "string",
      OrganizationalUnitDistinguishedNames = list(
        "string"
      ),
      ServiceAccountCredentials = list(
        AccountName = "string",
        AccountPassword = "string"
      ),
      CreatedTime = as.POSIXct(
        "2015-01-01"
      ),
      CertificateBasedAuthProperties = list(
        Status = "DISABLED"|"ENABLED"|"ENABLED_NO_DIRECTORY_LOGIN_FALLBACK",
        CertificateAuthorityArn = "string"
      )
    )
  ),
  NextToken = "string"
)

Request syntax

svc$describe_directory_configs(
  DirectoryNames = list(
    "string"
  ),
  MaxResults = 123,
  NextToken = "string"
)