Skip to content

List Typed Link Facet Attributes

clouddirectory_list_typed_link_facet_attributes R Documentation

Returns a paginated list of all attribute definitions for a particular TypedLinkFacet

Description

Returns a paginated list of all attribute definitions for a particular TypedLinkFacet. For more information, see Typed Links.

Usage

clouddirectory_list_typed_link_facet_attributes(SchemaArn, Name,
  NextToken, MaxResults)

Arguments

SchemaArn

[required] The Amazon Resource Name (ARN) that is associated with the schema. For more information, see arns.

Name

[required] The unique name of the typed link facet.

NextToken

The pagination token.

MaxResults

The maximum number of results to retrieve.

Value

A list with the following syntax:

list(
  Attributes = list(
    list(
      Name = "string",
      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"
          )
        )
      ),
      RequiredBehavior = "REQUIRED_ALWAYS"|"NOT_REQUIRED"
    )
  ),
  NextToken = "string"
)

Request syntax

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