interface HoursOfOperationOverrideProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Connect.CfnHoursOfOperationPropsMixin.HoursOfOperationOverrideProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsconnect#CfnHoursOfOperationPropsMixin_HoursOfOperationOverrideProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.connect.CfnHoursOfOperationPropsMixin.HoursOfOperationOverrideProperty |
Python | aws_cdk.cfn_property_mixins.aws_connect.CfnHoursOfOperationPropsMixin.HoursOfOperationOverrideProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_connect » CfnHoursOfOperationPropsMixin » HoursOfOperationOverrideProperty |
Information about the hours of operations override.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_connect as connect } from '@aws-cdk/cfn-property-mixins';
const hoursOfOperationOverrideProperty: connect.CfnHoursOfOperationPropsMixin.HoursOfOperationOverrideProperty = {
effectiveFrom: 'effectiveFrom',
effectiveTill: 'effectiveTill',
hoursOfOperationOverrideId: 'hoursOfOperationOverrideId',
overrideConfig: [{
day: 'day',
endTime: {
hours: 123,
minutes: 123,
},
startTime: {
hours: 123,
minutes: 123,
},
}],
overrideDescription: 'overrideDescription',
overrideName: 'overrideName',
overrideType: 'overrideType',
recurrenceConfig: {
recurrencePattern: {
byMonth: [123],
byMonthDay: [123],
byWeekdayOccurrence: [123],
frequency: 'frequency',
interval: 123,
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| effective | string | The date from which the hours of operation override would be effective. |
| effective | string | The date until the hours of operation override is effective. |
| hours | string | The identifier for the hours of operation override. |
| override | IResolvable | (IResolvable | Hours)[] | Configuration information for the hours of operation override: day, start time, and end time. |
| override | string | The description of the hours of operation override. |
| override | string | The name of the hours of operation override. |
| override | string | The type of hours of operation override. |
| recurrence | IResolvable | Recurrence | Configuration for recurring hours of operation overrides. |
effectiveFrom?
Type:
string
(optional)
The date from which the hours of operation override would be effective.
effectiveTill?
Type:
string
(optional)
The date until the hours of operation override is effective.
hoursOfOperationOverrideId?
Type:
string
(optional)
The identifier for the hours of operation override.
overrideConfig?
Type:
IResolvable | (IResolvable | Hours)[]
(optional)
Configuration information for the hours of operation override: day, start time, and end time.
overrideDescription?
Type:
string
(optional)
The description of the hours of operation override.
overrideName?
Type:
string
(optional)
The name of the hours of operation override.
overrideType?
Type:
string
(optional)
The type of hours of operation override.
recurrenceConfig?
Type:
IResolvable | Recurrence
(optional)
Configuration for recurring hours of operation overrides.

.NET
Go
Java
Python
TypeScript