interface HoursOfOperationOverrideProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Connect.Mixins.CfnHoursOfOperationPropsMixin.HoursOfOperationOverrideProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsconnect/mixins#CfnHoursOfOperationPropsMixin_HoursOfOperationOverrideProperty |
Java | software.amazon.awscdk.mixins.preview.services.connect.mixins.CfnHoursOfOperationPropsMixin.HoursOfOperationOverrideProperty |
Python | aws_cdk.mixins_preview.aws_connect.mixins.CfnHoursOfOperationPropsMixin.HoursOfOperationOverrideProperty |
TypeScript | @aws-cdk/mixins-preview » aws_connect » mixins » 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 { mixins as connect_mixins } from '@aws-cdk/mixins-preview/aws-connect';
const hoursOfOperationOverrideProperty: connect_mixins.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',
};
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. |
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.

.NET
Go
Java
Python
TypeScript