interface CfnADMChannelProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Pinpoint.CfnADMChannelProps |
Java | software.amazon.awscdk.services.pinpoint.CfnADMChannelProps |
Python | aws_cdk.aws_pinpoint.CfnADMChannelProps |
TypeScript | @aws-cdk/aws-pinpoint » CfnADMChannelProps |
Properties for defining a CfnADMChannel.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as pinpoint from '@aws-cdk/aws-pinpoint';
const cfnADMChannelProps: pinpoint.CfnADMChannelProps = {
applicationId: 'applicationId',
clientId: 'clientId',
clientSecret: 'clientSecret',
// the properties below are optional
enabled: false,
};
Properties
| Name | Type | Description |
|---|---|---|
| application | string | The unique identifier for the Amazon Pinpoint application that the ADM channel applies to. |
| client | string | The Client ID that you received from Amazon to send messages by using ADM. |
| client | string | The Client Secret that you received from Amazon to send messages by using ADM. |
| enabled? | boolean | IResolvable | Specifies whether to enable the ADM channel for the application. |
applicationId
Type:
string
The unique identifier for the Amazon Pinpoint application that the ADM channel applies to.
clientId
Type:
string
The Client ID that you received from Amazon to send messages by using ADM.
clientSecret
Type:
string
The Client Secret that you received from Amazon to send messages by using ADM.
enabled?
Type:
boolean | IResolvable
(optional)
Specifies whether to enable the ADM channel for the application.

.NET
Java
Python
TypeScript