interface CfnADMChannelMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Pinpoint.CfnADMChannelMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awspinpoint#CfnADMChannelMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.pinpoint.CfnADMChannelMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_pinpoint.CfnADMChannelMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_pinpoint » 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 { aws_pinpoint as pinpoint } from '@aws-cdk/cfn-property-mixins';
const cfnADMChannelMixinProps: pinpoint.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