Class CfnBaiduChannel

java.lang.Object
software.amazon.jsii.JsiiObject
software.constructs.Construct
All Implemented Interfaces:
IInspectable, software.amazon.jsii.JsiiSerializable, software.constructs.IConstruct, software.constructs.IDependable

@Generated(value="jsii-pacmak/1.97.0 (build 729de35)", date="2024-04-18T17:54:20.525Z") @Stability(Stable) public class CfnBaiduChannel extends CfnResource implements IInspectable
A channel is a type of platform that you can deliver messages to.

You can use the Baidu channel to send notifications to the Baidu Cloud Push notification service. Before you can use Amazon Pinpoint to send notifications to the Baidu Cloud Push service, you have to enable the Baidu channel for an Amazon Pinpoint application.

The BaiduChannel resource represents the status and authentication settings of the Baidu channel for an application.

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.*;
 CfnBaiduChannel cfnBaiduChannel = CfnBaiduChannel.Builder.create(this, "MyCfnBaiduChannel")
         .apiKey("apiKey")
         .applicationId("applicationId")
         .secretKey("secretKey")
         // the properties below are optional
         .enabled(false)
         .build();
 

See Also:
  • Field Details

    • CFN_RESOURCE_TYPE_NAME

      @Stability(Stable) public static final String CFN_RESOURCE_TYPE_NAME
      The CloudFormation resource type name for this resource class.
  • Constructor Details

    • CfnBaiduChannel

      protected CfnBaiduChannel(software.amazon.jsii.JsiiObjectRef objRef)
    • CfnBaiduChannel

      protected CfnBaiduChannel(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
    • CfnBaiduChannel

      @Stability(Stable) public CfnBaiduChannel(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull CfnBaiduChannelProps props)
      Parameters:
      scope - Scope in which this resource is defined. This parameter is required.
      id - Construct identifier for this resource (unique in its scope). This parameter is required.
      props - Resource properties. This parameter is required.
  • Method Details

    • inspect

      @Stability(Stable) public void inspect(@NotNull TreeInspector inspector)
      Examines the CloudFormation resource and discloses attributes.

      Specified by:
      inspect in interface IInspectable
      Parameters:
      inspector - tree inspector to collect and process attributes. This parameter is required.
    • renderProperties

      @Stability(Stable) @NotNull protected Map<String,Object> renderProperties(@NotNull Map<String,Object> props)
      Overrides:
      renderProperties in class CfnResource
      Parameters:
      props - This parameter is required.
    • getAttrId

      @Stability(Stable) @NotNull public String getAttrId()
      (Deprecated) An identifier for the Baidu channel.

      This property is retained only for backward compatibility.

    • getCfnProperties

      @Stability(Stable) @NotNull protected Map<String,Object> getCfnProperties()
      Overrides:
      getCfnProperties in class CfnResource
    • getApiKey

      @Stability(Stable) @NotNull public String getApiKey()
      The API key that you received from the Baidu Cloud Push service to communicate with the service.
    • setApiKey

      @Stability(Stable) public void setApiKey(@NotNull String value)
      The API key that you received from the Baidu Cloud Push service to communicate with the service.
    • getApplicationId

      @Stability(Stable) @NotNull public String getApplicationId()
      The unique identifier for the Amazon Pinpoint application that you're configuring the Baidu channel for.
    • setApplicationId

      @Stability(Stable) public void setApplicationId(@NotNull String value)
      The unique identifier for the Amazon Pinpoint application that you're configuring the Baidu channel for.
    • getSecretKey

      @Stability(Stable) @NotNull public String getSecretKey()
      The secret key that you received from the Baidu Cloud Push service to communicate with the service.
    • setSecretKey

      @Stability(Stable) public void setSecretKey(@NotNull String value)
      The secret key that you received from the Baidu Cloud Push service to communicate with the service.
    • getEnabled

      @Stability(Stable) @Nullable public Object getEnabled()
      Specifies whether to enable the Baidu channel for the application.
    • setEnabled

      @Stability(Stable) public void setEnabled(@Nullable Boolean value)
      Specifies whether to enable the Baidu channel for the application.
    • setEnabled

      @Stability(Stable) public void setEnabled(@Nullable IResolvable value)
      Specifies whether to enable the Baidu channel for the application.