interface HoursOfOperationConfigProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.Connect.CfnHoursOfOperation.HoursOfOperationConfigProperty |
Java | software.amazon.awscdk.services.connect.CfnHoursOfOperation.HoursOfOperationConfigProperty |
Python | aws_cdk.aws_connect.CfnHoursOfOperation.HoursOfOperationConfigProperty |
TypeScript | @aws-cdk/aws-connect » CfnHoursOfOperation » HoursOfOperationConfigProperty |
Contains information about the hours of operation.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as connect from '@aws-cdk/aws-connect';
const hoursOfOperationConfigProperty: connect.CfnHoursOfOperation.HoursOfOperationConfigProperty = {
day: 'day',
endTime: {
hours: 123,
minutes: 123,
},
startTime: {
hours: 123,
minutes: 123,
},
};
Properties
Name | Type | Description |
---|---|---|
day | string | The day that the hours of operation applies to. |
end | IResolvable | Hours | The end time that your contact center closes. |
start | IResolvable | Hours | The start time that your contact center opens. |
day
Type:
string
The day that the hours of operation applies to.
endTime
Type:
IResolvable
|
Hours
The end time that your contact center closes.
startTime
Type:
IResolvable
|
Hours
The start time that your contact center opens.