Skip to content

Search Hours Of Operation Overrides

connect_search_hours_of_operation_overrides R Documentation

Searches the hours of operation overrides

Description

Searches the hours of operation overrides.

Usage

connect_search_hours_of_operation_overrides(InstanceId, NextToken,
  MaxResults, SearchFilter, SearchCriteria)

Arguments

InstanceId

[required] The identifier of the Amazon Connect 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. Length Constraints: Minimum length of 1. Maximum length of 2500.

MaxResults

The maximum number of results to return per page. Valid Range: Minimum value of 1. Maximum value of 100.

SearchFilter
SearchCriteria

The search criteria to be used to return hours of operations overrides.

Value

A list with the following syntax:

list(
  HoursOfOperationOverrides = list(
    list(
      HoursOfOperationOverrideId = "string",
      HoursOfOperationId = "string",
      HoursOfOperationArn = "string",
      Name = "string",
      Description = "string",
      Config = list(
        list(
          Day = "SUNDAY"|"MONDAY"|"TUESDAY"|"WEDNESDAY"|"THURSDAY"|"FRIDAY"|"SATURDAY",
          StartTime = list(
            Hours = 123,
            Minutes = 123
          ),
          EndTime = list(
            Hours = 123,
            Minutes = 123
          )
        )
      ),
      EffectiveFrom = "string",
      EffectiveTill = "string"
    )
  ),
  NextToken = "string",
  ApproximateTotalCount = 123
)

Request syntax

svc$search_hours_of_operation_overrides(
  InstanceId = "string",
  NextToken = "string",
  MaxResults = 123,
  SearchFilter = list(
    TagFilter = list(
      OrConditions = list(
        list(
          list(
            TagKey = "string",
            TagValue = "string"
          )
        )
      ),
      AndConditions = list(
        list(
          TagKey = "string",
          TagValue = "string"
        )
      ),
      TagCondition = list(
        TagKey = "string",
        TagValue = "string"
      )
    )
  ),
  SearchCriteria = list(
    OrConditions = list(
      list()
    ),
    AndConditions = list(
      list()
    ),
    StringCondition = list(
      FieldName = "string",
      Value = "string",
      ComparisonType = "STARTS_WITH"|"CONTAINS"|"EXACT"
    ),
    DateCondition = list(
      FieldName = "string",
      Value = "string",
      ComparisonType = "GREATER_THAN"|"LESS_THAN"|"GREATER_THAN_OR_EQUAL_TO"|"LESS_THAN_OR_EQUAL_TO"|"EQUAL_TO"
    )
  )
)