aws-cdk-lib.aws_connect.CfnHoursOfOperationProps

interface CfnHoursOfOperationProps

LanguageType name
.NETAmazon.CDK.AWS.Connect.CfnHoursOfOperationProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsconnect#CfnHoursOfOperationProps
Javasoftware.amazon.awscdk.services.connect.CfnHoursOfOperationProps
Pythonaws_cdk.aws_connect.CfnHoursOfOperationProps
TypeScript aws-cdk-lib » aws_connect » CfnHoursOfOperationProps

Properties for defining a CfnHoursOfOperation.

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 cfnHoursOfOperationProps: connect.CfnHoursOfOperationProps = {
  config: [{
    day: 'day',
    endTime: {
      hours: 123,
      minutes: 123,
    },
    startTime: {
      hours: 123,
      minutes: 123,
    },
  }],
  instanceArn: 'instanceArn',
  name: 'name',
  timeZone: 'timeZone',

  // the properties below are optional
  description: 'description',
  tags: [{
    key: 'key',
    value: 'value',
  }],
};

Properties

NameTypeDescription
configIResolvable | IResolvable | HoursOfOperationConfigProperty[]Configuration information for the hours of operation.
instanceArnstringThe Amazon Resource Name (ARN) for the instance.
namestringThe name for the hours of operation.
timeZonestringThe time zone for the hours of operation.
description?stringThe description for the hours of operation.
tags?CfnTag[]The tags used to organize, track, or control access for this resource.

config

Type: IResolvable | IResolvable | HoursOfOperationConfigProperty[]

Configuration information for the hours of operation.


instanceArn

Type: string

The Amazon Resource Name (ARN) for the instance.


name

Type: string

The name for the hours of operation.


timeZone

Type: string

The time zone for the hours of operation.


description?

Type: string (optional)

The description for the hours of operation.


tags?

Type: CfnTag[] (optional)

The tags used to organize, track, or control access for this resource.

For example, { "tags": {"key1":"value1", "key2":"value2"} }.