Update Hours Of Operation
| connect_update_hours_of_operation | R Documentation |
Updates the hours of operation¶
Description¶
Updates the hours of operation.
Usage¶
connect_update_hours_of_operation(InstanceId, HoursOfOperationId, Name,
Description, TimeZone, Config)
Arguments¶
InstanceId |
[required] The identifier of the Connect Customer 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
)
)
)
)