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 Connect Customer 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.

SearchFilter

Filters to be applied to search results.

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",
      RecurrenceConfig = list(
        RecurrencePattern = list(
          Frequency = "WEEKLY"|"MONTHLY"|"YEARLY",
          Interval = 123,
          ByMonth = list(
            123
          ),
          ByMonthDay = list(
            123
          ),
          ByWeekdayOccurrence = list(
            123
          )
        )
      ),
      OverrideType = "STANDARD"|"OPEN"|"CLOSED"
    )
  ),
  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"
    )
  )
)