public static interface CfnApplicationSettings.QuietTimeProperty
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() |
java.lang.String |
getEnd()
The specific time when quiet time ends.
|
java.lang.String |
getStart()
The specific time when quiet time begins.
|
java.lang.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.
java.lang.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.
static CfnApplicationSettings.QuietTimeProperty.Builder builder()