interface CfnBaiduChannelMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Pinpoint.CfnBaiduChannelMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awspinpoint#CfnBaiduChannelMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.pinpoint.CfnBaiduChannelMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_pinpoint.CfnBaiduChannelMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_pinpoint » CfnBaiduChannelMixinProps |
Properties for CfnBaiduChannelPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_pinpoint as pinpoint } from '@aws-cdk/cfn-property-mixins';
const cfnBaiduChannelMixinProps: pinpoint.CfnBaiduChannelMixinProps = {
apiKey: 'apiKey',
applicationId: 'applicationId',
enabled: false,
secretKey: 'secretKey',
};
Properties
| Name | Type | Description |
|---|---|---|
| api | string | The API key that you received from the Baidu Cloud Push service to communicate with the service. |
| application | string | The unique identifier for the Amazon Pinpoint application that you're configuring the Baidu channel for. |
| enabled? | boolean | IResolvable | Specifies whether to enable the Baidu channel for the application. |
| secret | string | The secret key that you received from the Baidu Cloud Push service to communicate with the service. |
apiKey?
Type:
string
(optional)
The API key that you received from the Baidu Cloud Push service to communicate with the service.
applicationId?
Type:
string
(optional)
The unique identifier for the Amazon Pinpoint application that you're configuring the Baidu channel for.
enabled?
Type:
boolean | IResolvable
(optional)
Specifies whether to enable the Baidu channel for the application.
secretKey?
Type:
string
(optional)
The secret key that you received from the Baidu Cloud Push service to communicate with the service.

.NET
Go
Java
Python
TypeScript