Skip to content

Update Hours Of Operation Override

connect_update_hours_of_operation_override R Documentation

Update the hours of operation override

Description

Update the hours of operation override.

Usage

connect_update_hours_of_operation_override(InstanceId,
  HoursOfOperationId, HoursOfOperationOverrideId, Name, Description,
  Config, EffectiveFrom, EffectiveTill)

Arguments

InstanceId

[required] The identifier of the Amazon Connect instance.

HoursOfOperationId

[required] The identifier for the hours of operation.

HoursOfOperationOverrideId

[required] The identifier for the hours of operation override.

Name

The name of the hours of operation override.

Description

The description of the hours of operation override.

Config

Configuration information for the hours of operation override: day, start time, and end time.

EffectiveFrom

The date from when the hours of operation override would be effective.

EffectiveTill

The date till when the hours of operation override would be effective.

Value

An empty list.

Request syntax

svc$update_hours_of_operation_override(
  InstanceId = "string",
  HoursOfOperationId = "string",
  HoursOfOperationOverrideId = "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"
)