@Stability(value=Stable)
public static interface CfnCampaign.ScheduleProperty
extends software.amazon.jsii.JsiiSerializable
// 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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnCampaign.ScheduleProperty.Builder
A builder for
CfnCampaign.ScheduleProperty |
static class |
CfnCampaign.ScheduleProperty.Jsii$Proxy
An implementation for
CfnCampaign.ScheduleProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnCampaign.ScheduleProperty.Builder |
builder() |
default String |
getEndTime()
`CfnCampaign.ScheduleProperty.EndTime`.
|
default Object |
getEventFilter()
`CfnCampaign.ScheduleProperty.EventFilter`.
|
default String |
getFrequency()
`CfnCampaign.ScheduleProperty.Frequency`.
|
default Object |
getIsLocalTime()
`CfnCampaign.ScheduleProperty.IsLocalTime`.
|
default Object |
getQuietTime()
`CfnCampaign.ScheduleProperty.QuietTime`.
|
default String |
getStartTime()
`CfnCampaign.ScheduleProperty.StartTime`.
|
default String |
getTimeZone()
`CfnCampaign.ScheduleProperty.TimeZone`.
|
@Stability(value=Stable) @Nullable default String getEndTime()
@Stability(value=Stable) @Nullable default Object getEventFilter()
@Stability(value=Stable) @Nullable default String getFrequency()
@Stability(value=Stable) @Nullable default Object getIsLocalTime()
@Stability(value=Stable) @Nullable default Object getQuietTime()
@Stability(value=Stable) @Nullable default String getStartTime()
@Stability(value=Stable) @Nullable default String getTimeZone()
@Stability(value=Stable) static CfnCampaign.ScheduleProperty.Builder builder()
Copyright © 2021. All rights reserved.