Interface CfnADMChannelProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnADMChannelProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:00.721Z")
@Stability(Stable)
public interface CfnADMChannelProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnADMChannel
.
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.*; CfnADMChannelProps cfnADMChannelProps = CfnADMChannelProps.builder() .applicationId("applicationId") .clientId("clientId") .clientSecret("clientSecret") // the properties below are optional .enabled(false) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnADMChannelProps
static final class
An implementation forCfnADMChannelProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic CfnADMChannelProps.Builder
builder()
The unique identifier for the Amazon Pinpoint application that the ADM channel applies to.The Client ID that you received from Amazon to send messages by using ADM.The Client Secret that you received from Amazon to send messages by using ADM.default Object
Specifies whether to enable the ADM channel for the application.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getApplicationId
The unique identifier for the Amazon Pinpoint application that the ADM channel applies to. -
getClientId
The Client ID that you received from Amazon to send messages by using ADM. -
getClientSecret
The Client Secret that you received from Amazon to send messages by using ADM. -
getEnabled
Specifies whether to enable the ADM channel for the application. -
builder
- Returns:
- a
CfnADMChannelProps.Builder
ofCfnADMChannelProps
-