Skip to content

Search Predefined Attributes

connect_search_predefined_attributes R Documentation

Searches predefined attributes that meet certain criteria

Description

Searches predefined attributes that meet certain criteria. A predefined attribute is made up of a name and a value. You can use predefined attributes for:

For the predefined attributes per instance quota, see Connect Customer quotas.

Endpoints: See Connect Customer endpoints and quotas.

Usage

connect_search_predefined_attributes(InstanceId, NextToken, MaxResults,
  SearchCriteria)

Arguments

InstanceId

[required] The identifier of the Connect Customer instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.

NextToken

The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.

MaxResults

The maximum number of results to return per page.

SearchCriteria

The search criteria to be used to return predefined attributes.

Value

A list with the following syntax:

list(
  PredefinedAttributes = list(
    list(
      Name = "string",
      Values = list(
        StringList = list(
          "string"
        )
      ),
      Purposes = list(
        "string"
      ),
      AttributeConfiguration = list(
        EnableValueValidationOnAssociation = TRUE|FALSE,
        IsReadOnly = TRUE|FALSE
      ),
      LastModifiedTime = as.POSIXct(
        "2015-01-01"
      ),
      LastModifiedRegion = "string"
    )
  ),
  NextToken = "string",
  ApproximateTotalCount = 123
)

Request syntax

svc$search_predefined_attributes(
  InstanceId = "string",
  NextToken = "string",
  MaxResults = 123,
  SearchCriteria = list(
    OrConditions = list(
      list()
    ),
    AndConditions = list(
      list()
    ),
    StringCondition = list(
      FieldName = "string",
      Value = "string",
      ComparisonType = "STARTS_WITH"|"CONTAINS"|"EXACT"
    )
  )
)