Skip to content

List Hours Of Operation Overrides

connect_list_hours_of_operation_overrides R Documentation

List the hours of operation overrides

Description

List the hours of operation overrides.

Usage

connect_list_hours_of_operation_overrides(InstanceId,
  HoursOfOperationId, NextToken, MaxResults)

Arguments

InstanceId

[required] The identifier of the Connect Customer instance.

HoursOfOperationId

[required] The identifier for the hours of operation.

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.

Value

A list with the following syntax:

list(
  NextToken = "string",
  HoursOfOperationOverrideList = 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"
    )
  ),
  LastModifiedRegion = "string",
  LastModifiedTime = as.POSIXct(
    "2015-01-01"
  )
)

Request syntax

svc$list_hours_of_operation_overrides(
  InstanceId = "string",
  HoursOfOperationId = "string",
  NextToken = "string",
  MaxResults = 123
)