Interface CfnBaiduChannelProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnBaiduChannelProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.106.0 (build e852934)",
date="2025-02-05T22:42:07.892Z")
@Stability(Stable)
public interface CfnBaiduChannelProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnBaiduChannel
.
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.*; CfnBaiduChannelProps cfnBaiduChannelProps = CfnBaiduChannelProps.builder() .apiKey("apiKey") .applicationId("applicationId") .secretKey("secretKey") // the properties below are optional .enabled(false) .build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnBaiduChannelProps
static final class
An implementation forCfnBaiduChannelProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic CfnBaiduChannelProps.Builder
builder()
The API key that you received from the Baidu Cloud Push service to communicate with the service.The unique identifier for the Amazon Pinpoint application that you're configuring the Baidu channel for.default Object
Specifies whether to enable the Baidu channel for the application.The secret key that you received from the Baidu Cloud Push service to communicate with the service.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getApiKey
The API key that you received from the Baidu Cloud Push service to communicate with the service.- See Also:
-
getApplicationId
The unique identifier for the Amazon Pinpoint application that you're configuring the Baidu channel for.- See Also:
-
getSecretKey
The secret key that you received from the Baidu Cloud Push service to communicate with the service.- See Also:
-
getEnabled
Specifies whether to enable the Baidu channel for the application.- See Also:
-
builder
- Returns:
- a
CfnBaiduChannelProps.Builder
ofCfnBaiduChannelProps
-