interface HoursOfOperationsIdentifierProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Connect.CfnHoursOfOperation.HoursOfOperationsIdentifierProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsconnect#CfnHoursOfOperation_HoursOfOperationsIdentifierProperty |
Java | software.amazon.awscdk.services.connect.CfnHoursOfOperation.HoursOfOperationsIdentifierProperty |
Python | aws_cdk.aws_connect.CfnHoursOfOperation.HoursOfOperationsIdentifierProperty |
TypeScript | aws-cdk-lib » aws_connect » CfnHoursOfOperation » HoursOfOperationsIdentifierProperty |
Identifier for 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 hoursOfOperationsIdentifierProperty: connect.CfnHoursOfOperation.HoursOfOperationsIdentifierProperty = {
id: 'id',
// the properties below are optional
name: 'name',
};
Properties
| Name | Type | Description |
|---|---|---|
| id | string | The identifier for the hours of operation. |
| name? | string | The name of the hours of operation. |
id
Type:
string
The identifier for the hours of operation.
name?
Type:
string
(optional)
The name of the hours of operation.

.NET
Go
Java
Python
TypeScript