interface CfnBaiduChannelMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Pinpoint.Mixins.CfnBaiduChannelMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awspinpoint/mixins#CfnBaiduChannelMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.pinpoint.mixins.CfnBaiduChannelMixinProps |
Python | aws_cdk.mixins_preview.aws_pinpoint.mixins.CfnBaiduChannelMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_pinpoint » mixins » 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 { mixins as pinpoint_mixins } from '@aws-cdk/mixins-preview/aws-pinpoint';
const cfnBaiduChannelMixinProps: pinpoint_mixins.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