Skip to content

List Facet Names

clouddirectory_list_facet_names R Documentation

Retrieves the names of facets that exist in a schema

Description

Retrieves the names of facets that exist in a schema.

Usage

clouddirectory_list_facet_names(SchemaArn, NextToken, MaxResults)

Arguments

SchemaArn

[required] The Amazon Resource Name (ARN) to retrieve facet names from.

NextToken

The pagination token.

MaxResults

The maximum number of results to retrieve.

Value

A list with the following syntax:

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

Request syntax

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