Interface CfnBaiduChannelProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnBaiduChannelProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:00.757Z")
@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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnBaiduChannelPropsstatic final classAn implementation forCfnBaiduChannelProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnBaiduChannelProps.Builderbuilder()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 ObjectSpecifies 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. -
getApplicationId
The unique identifier for the Amazon Pinpoint application that you're configuring the Baidu channel for. -
getSecretKey
The secret key that you received from the Baidu Cloud Push service to communicate with the service. -
getEnabled
Specifies whether to enable the Baidu channel for the application. -
builder
- Returns:
- a
CfnBaiduChannelProps.BuilderofCfnBaiduChannelProps
-