Interface CfnBaiduChannelProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnBaiduChannelProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.120.0 (build 192dc88)",
date="2025-12-12T17:54:18.309Z")
@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 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.- 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.Returns union: either
BooleanorIResolvable- See Also:
-
builder
- Returns:
- a
CfnBaiduChannelProps.BuilderofCfnBaiduChannelProps
-