@Generated(value="jsii-pacmak/1.46.0 (build cd08c55)", date="2021-11-25T20:11:07.445Z") @Stability(value=Stable) public interface CfnApplicationSettingsProps extends software.amazon.jsii.JsiiSerializable
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.*;
CfnApplicationSettingsProps cfnApplicationSettingsProps = CfnApplicationSettingsProps.builder()
.applicationId("applicationId")
// the properties below are optional
.campaignHook(CampaignHookProperty.builder()
.lambdaFunctionName("lambdaFunctionName")
.mode("mode")
.webUrl("webUrl")
.build())
.cloudWatchMetricsEnabled(false)
.limits(LimitsProperty.builder()
.daily(123)
.maximumDuration(123)
.messagesPerSecond(123)
.total(123)
.build())
.quietTime(QuietTimeProperty.builder()
.end("end")
.start("start")
.build())
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnApplicationSettingsProps.Builder
A builder for
CfnApplicationSettingsProps |
static class |
CfnApplicationSettingsProps.Jsii$Proxy
An implementation for
CfnApplicationSettingsProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnApplicationSettingsProps.Builder |
builder() |
String |
getApplicationId()
`AWS::Pinpoint::ApplicationSettings.ApplicationId`.
|
default Object |
getCampaignHook()
`AWS::Pinpoint::ApplicationSettings.CampaignHook`.
|
default Object |
getCloudWatchMetricsEnabled()
`AWS::Pinpoint::ApplicationSettings.CloudWatchMetricsEnabled`.
|
default Object |
getLimits()
`AWS::Pinpoint::ApplicationSettings.Limits`.
|
default Object |
getQuietTime()
`AWS::Pinpoint::ApplicationSettings.QuietTime`.
|
@Stability(value=Stable) @NotNull String getApplicationId()
@Stability(value=Stable) @Nullable default Object getCampaignHook()
@Stability(value=Stable) @Nullable default Object getCloudWatchMetricsEnabled()
@Stability(value=Stable) @Nullable default Object getLimits()
@Stability(value=Stable) @Nullable default Object getQuietTime()
@Stability(value=Stable) static CfnApplicationSettingsProps.Builder builder()
Copyright © 2021. All rights reserved.