@Generated(value="jsii-pacmak/1.47.0 (build 86d2c33)", date="2021-12-22T10:27:16.708Z") @Stability(value=Stable) public interface CfnHoursOfOperationProps extends software.amazon.jsii.JsiiSerializable
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.connect.*;
CfnHoursOfOperationProps cfnHoursOfOperationProps = CfnHoursOfOperationProps.builder()
.config(List.of(HoursOfOperationConfigProperty.builder()
.day("day")
.endTime(HoursOfOperationTimeSliceProperty.builder()
.hours(123)
.minutes(123)
.build())
.startTime(HoursOfOperationTimeSliceProperty.builder()
.hours(123)
.minutes(123)
.build())
.build()))
.instanceArn("instanceArn")
.name("name")
.timeZone("timeZone")
// the properties below are optional
.description("description")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnHoursOfOperationProps.Builder
A builder for
CfnHoursOfOperationProps |
static class |
CfnHoursOfOperationProps.Jsii$Proxy
An implementation for
CfnHoursOfOperationProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnHoursOfOperationProps.Builder |
builder() |
Object |
getConfig()
`AWS::Connect::HoursOfOperation.Config`.
|
default String |
getDescription()
`AWS::Connect::HoursOfOperation.Description`.
|
String |
getInstanceArn()
`AWS::Connect::HoursOfOperation.InstanceArn`.
|
String |
getName()
`AWS::Connect::HoursOfOperation.Name`.
|
default List<CfnTag> |
getTags()
`AWS::Connect::HoursOfOperation.Tags`.
|
String |
getTimeZone()
`AWS::Connect::HoursOfOperation.TimeZone`.
|
@Stability(value=Stable) @NotNull Object getConfig()
@Stability(value=Stable) @Nullable default String getDescription()
@Stability(value=Stable) @NotNull String getInstanceArn()
@Stability(value=Stable) @NotNull String getName()
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
@Stability(value=Stable) @NotNull String getTimeZone()
@Stability(value=Stable) static CfnHoursOfOperationProps.Builder builder()
CfnHoursOfOperationProps.Builder of CfnHoursOfOperationPropsCopyright © 2021. All rights reserved.