List Attached Indices
| clouddirectory_list_attached_indices | R Documentation | 
Lists indices attached to the specified object¶
Description¶
Lists indices attached to the specified object.
Usage¶
clouddirectory_list_attached_indices(DirectoryArn, TargetReference,
  NextToken, MaxResults, ConsistencyLevel)
Arguments¶
| DirectoryArn | [required] The ARN of the directory. | 
| TargetReference | [required] A reference to the object that has indices attached. | 
| NextToken | The pagination token. | 
| MaxResults | The maximum number of results to retrieve. | 
| ConsistencyLevel | The consistency level to use for this operation. | 
Value¶
A list with the following syntax:
list(
  IndexAttachments = list(
    list(
      IndexedAttributes = list(
        list(
          Key = list(
            SchemaArn = "string",
            FacetName = "string",
            Name = "string"
          ),
          Value = list(
            StringValue = "string",
            BinaryValue = raw,
            BooleanValue = TRUE|FALSE,
            NumberValue = "string",
            DatetimeValue = as.POSIXct(
              "2015-01-01"
            )
          )
        )
      ),
      ObjectIdentifier = "string"
    )
  ),
  NextToken = "string"
)
Request syntax¶
svc$list_attached_indices(
  DirectoryArn = "string",
  TargetReference = list(
    Selector = "string"
  ),
  NextToken = "string",
  MaxResults = 123,
  ConsistencyLevel = "SERIALIZABLE"|"EVENTUAL"
)