@Stability(value=Stable)
public static interface CfnApplicationSettings.QuietTimeProperty
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.pinpoint.*;
QuietTimeProperty quietTimeProperty = QuietTimeProperty.builder()
.end("end")
.start("start")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnApplicationSettings.QuietTimeProperty.Builder
A builder for
CfnApplicationSettings.QuietTimeProperty |
static class |
CfnApplicationSettings.QuietTimeProperty.Jsii$Proxy
An implementation for
CfnApplicationSettings.QuietTimeProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnApplicationSettings.QuietTimeProperty.Builder |
builder() |
String |
getEnd()
The specific time when quiet time ends.
|
String |
getStart()
The specific time when quiet time begins.
|
@Stability(value=Stable) @NotNull String getEnd()
This value has to use 24-hour notation and be in HH:MM format, where HH is the hour (with a leading zero, if applicable) and MM is the minutes. For example, use 02:30 to represent 2:30 AM, or 14:30 to represent 2:30 PM.
@Stability(value=Stable) @NotNull String getStart()
This value has to use 24-hour notation and be in HH:MM format, where HH is the hour (with a leading zero, if applicable) and MM is the minutes. For example, use 02:30 to represent 2:30 AM, or 14:30 to represent 2:30 PM.
@Stability(value=Stable) static CfnApplicationSettings.QuietTimeProperty.Builder builder()
Copyright © 2022. All rights reserved.