Skip to content

List Applied Schema Arns

clouddirectory_list_applied_schema_arns R Documentation

Lists schema major versions applied to a directory

Description

Lists schema major versions applied to a directory. If SchemaArn is provided, lists the minor version.

Usage

clouddirectory_list_applied_schema_arns(DirectoryArn, SchemaArn,
  NextToken, MaxResults)

Arguments

DirectoryArn

[required] The ARN of the directory you are listing.

SchemaArn

The response for list_applied_schema_arns when this parameter is used will list all minor version ARNs for a major version.

NextToken

The pagination token.

MaxResults

The maximum number of results to retrieve.

Value

A list with the following syntax:

list(
  SchemaArns = list(
    "string"
  ),
  NextToken = "string"
)

Request syntax

svc$list_applied_schema_arns(
  DirectoryArn = "string",
  SchemaArn = "string",
  NextToken = "string",
  MaxResults = 123
)