Show / Hide Table of Contents

Class CfnBaiduChannelProps

Properties for defining a CfnBaiduChannel.

Inheritance
object
CfnBaiduChannelProps
Implements
ICfnBaiduChannelProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.Pinpoint
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnBaiduChannelProps : ICfnBaiduChannelProps
Syntax (vb)
Public Class CfnBaiduChannelProps Implements ICfnBaiduChannelProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-baiduchannel.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.Pinpoint;

             var cfnBaiduChannelProps = new CfnBaiduChannelProps {
                 ApiKey = "apiKey",
                 ApplicationId = "applicationId",
                 SecretKey = "secretKey",

                 // the properties below are optional
                 Enabled = false
             };

Synopsis

Constructors

CfnBaiduChannelProps()

Properties for defining a CfnBaiduChannel.

Properties

ApiKey

The API key that you received from the Baidu Cloud Push service to communicate with the service.

ApplicationId

The unique identifier for the Amazon Pinpoint application that you're configuring the Baidu channel for.

Enabled

Specifies whether to enable the Baidu channel for the application.

SecretKey

The secret key that you received from the Baidu Cloud Push service to communicate with the service.

Constructors

CfnBaiduChannelProps()

Properties for defining a CfnBaiduChannel.

public CfnBaiduChannelProps()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-baiduchannel.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.Pinpoint;

             var cfnBaiduChannelProps = new CfnBaiduChannelProps {
                 ApiKey = "apiKey",
                 ApplicationId = "applicationId",
                 SecretKey = "secretKey",

                 // the properties below are optional
                 Enabled = false
             };

Properties

ApiKey

The API key that you received from the Baidu Cloud Push service to communicate with the service.

public string ApiKey { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-baiduchannel.html#cfn-pinpoint-baiduchannel-apikey

ApplicationId

The unique identifier for the Amazon Pinpoint application that you're configuring the Baidu channel for.

public string ApplicationId { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-baiduchannel.html#cfn-pinpoint-baiduchannel-applicationid

Enabled

Specifies whether to enable the Baidu channel for the application.

public object? Enabled { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-baiduchannel.html#cfn-pinpoint-baiduchannel-enabled

SecretKey

The secret key that you received from the Baidu Cloud Push service to communicate with the service.

public string SecretKey { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-baiduchannel.html#cfn-pinpoint-baiduchannel-secretkey

Implements

ICfnBaiduChannelProps
Back to top Generated by DocFX