Interface CfnApplicationSettings.QuietTimeProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnApplicationSettings.QuietTimeProperty.Jsii$Proxy
Enclosing class:
CfnApplicationSettings

@Stability(Stable) public static interface CfnApplicationSettings.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();
 
  • Method Details

    • getEnd

      @Stability(Stable) @NotNull String 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, or 14:30 to represent 2:30 PM.

    • getStart

      @Stability(Stable) @NotNull String 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, or 14:30 to represent 2:30 PM.

    • builder

      @Stability(Stable) static CfnApplicationSettings.QuietTimeProperty.Builder builder()
      Returns:
      a CfnApplicationSettings.QuietTimeProperty.Builder of CfnApplicationSettings.QuietTimeProperty