interface CfnHoursOfOperationProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Connect.CfnHoursOfOperationProps |
Java | software.amazon.awscdk.services.connect.CfnHoursOfOperationProps |
Python | aws_cdk.aws_connect.CfnHoursOfOperationProps |
TypeScript | @aws-cdk/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 * as connect from '@aws-cdk/aws-connect';
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
| Name | Type | Description |
|---|---|---|
| config | IResolvable | IResolvable | Hours[] | Configuration information for the hours of operation. |
| instance | string | The Amazon Resource Name (ARN) for the instance. |
| name | string | The name for the hours of operation. |
| time | string | The time zone for the hours of operation. |
| description? | string | The description for the hours of operation. |
| tags? | Cfn[] | The tags used to organize, track, or control access for this resource. |
config
Type:
IResolvable | IResolvable | Hours[]
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:
Cfn[]
(optional)
The tags used to organize, track, or control access for this resource.
For example, { "tags": {"key1":"value1", "key2":"value2"} }.

.NET
Java
Python
TypeScript