Retrieves attributes attached to the facet.
clouddirectory_list_facet_attributes(SchemaArn, Name, NextToken,
MaxResults)
A list with the following syntax:
list(
Attributes = list(
list(
Name = "string",
AttributeDefinition = list(
Type = "STRING"|"BINARY"|"BOOLEAN"|"NUMBER"|"DATETIME"|"VARIANT",
DefaultValue = list(
StringValue = "string",
BinaryValue = raw,
BooleanValue = TRUE|FALSE,
NumberValue = "string",
DatetimeValue = as.POSIXct(
"2015-01-01"
)
),
IsImmutable = TRUE|FALSE,
Rules = list(
list(
Type = "BINARY_LENGTH"|"NUMBER_COMPARISON"|"STRING_FROM_SET"|"STRING_LENGTH",
Parameters = list(
"string"
)
)
)
),
AttributeReference = list(
TargetFacetName = "string",
TargetAttributeName = "string"
),
RequiredBehavior = "REQUIRED_ALWAYS"|"NOT_REQUIRED"
)
),
NextToken = "string"
)
[required] The ARN of the schema where the facet resides.
[required] The name of the facet whose attributes will be retrieved.
The pagination token.
The maximum number of results to retrieve.
svc$list_facet_attributes(
SchemaArn = "string",
Name = "string",
NextToken = "string",
MaxResults = 123
)