Interface CfnCampaign.QuietTimeProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCampaign.QuietTimeProperty.Jsii$Proxy
- Enclosing class:
CfnCampaign
@Stability(Stable)
public static interface CfnCampaign.QuietTimeProperty
extends software.amazon.jsii.JsiiSerializable
Specifies the start and end times that define a time range when messages aren't sent to endpoints.
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();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnCampaign.QuietTimeProperty
static final class
An implementation forCfnCampaign.QuietTimeProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEnd
The specific time when quiet time ends.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, or14:30
to represent 2:30 PM.- See Also:
-
getStart
The specific time when quiet time begins.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, or14:30
to represent 2:30 PM.- See Also:
-
builder
-