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 Amazon Connect 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. The default MaxResult size is 100. Valid Range: Minimum value of 1. Maximum value of 1000. |
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"
)
),
LastModifiedRegion = "string",
LastModifiedTime = as.POSIXct(
"2015-01-01"
)
)
Request syntax¶
svc$list_hours_of_operation_overrides(
InstanceId = "string",
HoursOfOperationId = "string",
NextToken = "string",
MaxResults = 123
)