Interface CfnCampaign.ScheduleProperty

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

@Stability(Stable) public static interface CfnCampaign.ScheduleProperty extends software.amazon.jsii.JsiiSerializable
Specifies the schedule settings for a campaign.

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.*;
 Object attributes;
 Object metrics;
 ScheduleProperty scheduleProperty = ScheduleProperty.builder()
         .endTime("endTime")
         .eventFilter(CampaignEventFilterProperty.builder()
                 .dimensions(EventDimensionsProperty.builder()
                         .attributes(attributes)
                         .eventType(SetDimensionProperty.builder()
                                 .dimensionType("dimensionType")
                                 .values(List.of("values"))
                                 .build())
                         .metrics(metrics)
                         .build())
                 .filterType("filterType")
                 .build())
         .frequency("frequency")
         .isLocalTime(false)
         .quietTime(QuietTimeProperty.builder()
                 .end("end")
                 .start("start")
                 .build())
         .startTime("startTime")
         .timeZone("timeZone")
         .build();
 

See Also: