aws-cdk-lib.aws_connect.CfnHoursOfOperation.HoursOfOperationConfigProperty

interface HoursOfOperationConfigProperty

LanguageType name
.NETAmazon.CDK.AWS.Connect.CfnHoursOfOperation.HoursOfOperationConfigProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsconnect#CfnHoursOfOperation_HoursOfOperationConfigProperty
Javasoftware.amazon.awscdk.services.connect.CfnHoursOfOperation.HoursOfOperationConfigProperty
Pythonaws_cdk.aws_connect.CfnHoursOfOperation.HoursOfOperationConfigProperty
TypeScript aws-cdk-lib » 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 { aws_connect as connect } from 'aws-cdk-lib';
const hoursOfOperationConfigProperty: connect.CfnHoursOfOperation.HoursOfOperationConfigProperty = {
  day: 'day',
  endTime: {
    hours: 123,
    minutes: 123,
  },
  startTime: {
    hours: 123,
    minutes: 123,
  },
};

Properties

NameTypeDescription
daystringThe day that the hours of operation applies to.
endTimeIResolvable | HoursOfOperationTimeSlicePropertyThe end time that your contact center closes.
startTimeIResolvable | HoursOfOperationTimeSlicePropertyThe start time that your contact center opens.

day

Type: string

The day that the hours of operation applies to.


endTime

Type: IResolvable | HoursOfOperationTimeSliceProperty

The end time that your contact center closes.


startTime

Type: IResolvable | HoursOfOperationTimeSliceProperty

The start time that your contact center opens.