Create Hours Of Operation Override
connect_create_hours_of_operation_override | R Documentation |
Creates an hours of operation override in an Amazon Connect hours of operation resource¶
Description¶
Creates an hours of operation override in an Amazon Connect hours of operation resource
Usage¶
connect_create_hours_of_operation_override(InstanceId,
HoursOfOperationId, Name, Description, Config, EffectiveFrom,
EffectiveTill)
Arguments¶
InstanceId
[required] The identifier of the Amazon Connect instance.
HoursOfOperationId
[required] The identifier for the hours of operation
Name
[required] The name of the hours of operation override.
Description
The description of the hours of operation override.
Config
[required] Configuration information for the hours of operation override: day, start time, and end time.
EffectiveFrom
[required] The date from when the hours of operation override would be effective.
EffectiveTill
[required] The date until when the hours of operation override would be effective.
Value¶
A list with the following syntax:
Request syntax¶
svc$create_hours_of_operation_override(
InstanceId = "string",
HoursOfOperationId = "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"
)