@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:37.762Z") @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()
Configuration information for the hours of operation.
|
default String |
getDescription()
The description for the hours of operation.
|
String |
getInstanceArn()
The Amazon Resource Name (ARN) for the instance.
|
String |
getName()
The name for the hours of operation.
|
default List<CfnTag> |
getTags()
The tags used to organize, track, or control access for this resource.
|
String |
getTimeZone()
The time zone for the hours of operation.
|
@Stability(value=Stable) @NotNull Object getConfig()
@Stability(value=Stable) @NotNull String getInstanceArn()
@Stability(value=Stable) @NotNull String getName()
@Stability(value=Stable) @NotNull String getTimeZone()
@Stability(value=Stable) @Nullable default String getDescription()
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
@Stability(value=Stable) static CfnHoursOfOperationProps.Builder builder()
CfnHoursOfOperationProps.Builder of CfnHoursOfOperationPropsCopyright © 2022. All rights reserved.