Update Hours Of Operation
connect_update_hours_of_operation | R Documentation |
This API is in preview release for Amazon Connect and is subject to change¶
Description¶
This API is in preview release for Amazon Connect and is subject to change.
Updates the hours of operation.
Usage¶
connect_update_hours_of_operation(InstanceId, HoursOfOperationId, Name,
Description, TimeZone, Config)
Arguments¶
InstanceId
[required] The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.
HoursOfOperationId
[required] The identifier of the hours of operation.
Name
The name of the hours of operation.
Description
The description of the hours of operation.
TimeZone
The time zone of the hours of operation.
Config
Configuration information of the hours of operation.
Value¶
An empty list.
Request syntax¶
svc$update_hours_of_operation(
InstanceId = "string",
HoursOfOperationId = "string",
Name = "string",
Description = "string",
TimeZone = "string",
Config = list(
list(
Day = "SUNDAY"|"MONDAY"|"TUESDAY"|"WEDNESDAY"|"THURSDAY"|"FRIDAY"|"SATURDAY",
StartTime = list(
Hours = 123,
Minutes = 123
),
EndTime = list(
Hours = 123,
Minutes = 123
)
)
)
)