interface CfnADMChannelMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Pinpoint.Mixins.CfnADMChannelMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awspinpoint/mixins#CfnADMChannelMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.pinpoint.mixins.CfnADMChannelMixinProps |
Python | aws_cdk.mixins_preview.aws_pinpoint.mixins.CfnADMChannelMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_pinpoint » mixins » CfnADMChannelMixinProps |
Properties for CfnADMChannelPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-admchannel.html
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 cfnADMChannelMixinProps: pinpoint_mixins.CfnADMChannelMixinProps = {
applicationId: 'applicationId',
clientId: 'clientId',
clientSecret: 'clientSecret',
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
(optional)
The unique identifier for the Amazon Pinpoint application that the ADM channel applies to.
clientId?
Type:
string
(optional)
The Client ID that you received from Amazon to send messages by using ADM.
clientSecret?
Type:
string
(optional)
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
Go
Java
Python
TypeScript