class CfnADMChannelPropsMixin
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Pinpoint.Mixins.CfnADMChannelPropsMixin |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awspinpoint/mixins#CfnADMChannelPropsMixin |
Java | software.amazon.awscdk.mixins.preview.services.pinpoint.mixins.CfnADMChannelPropsMixin |
Python | aws_cdk.mixins_preview.aws_pinpoint.mixins.CfnADMChannelPropsMixin |
TypeScript | @aws-cdk/mixins-preview » aws_pinpoint » mixins » CfnADMChannelPropsMixin |
Implements
IMixin
Extends
Mixin
A channel is a type of platform that you can deliver messages to.
You can use the ADM channel to send push notifications through the Amazon Device Messaging (ADM) service to apps that run on Amazon devices, such as Kindle Fire tablets. Before you can use Amazon Pinpoint to send messages to Amazon devices, you have to enable the ADM channel for an Amazon Pinpoint application.
The ADMChannel resource represents the status and authentication settings for the ADM channel for an application.
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 } from '@aws-cdk/mixins-preview';
import { mixins as pinpoint_mixins } from '@aws-cdk/mixins-preview/aws-pinpoint';
const cfnADMChannelPropsMixin = new pinpoint_mixins.CfnADMChannelPropsMixin({
applicationId: 'applicationId',
clientId: 'clientId',
clientSecret: 'clientSecret',
enabled: false,
}, /* all optional props */ {
strategy: mixins.PropertyMergeStrategy.OVERRIDE,
});
Initializer
new CfnADMChannelPropsMixin(props: CfnADMChannelMixinProps, options?: CfnPropertyMixinOptions)
Parameters
- props
Cfn— L1 properties to apply.ADMChannel Mixin Props - options
Cfn— Mixin options.Property Mixin Options
Create a mixin to apply properties to AWS::Pinpoint::ADMChannel.
Properties
| Name | Type | Description |
|---|---|---|
| props | Cfn | |
| strategy | Property | |
| static CFN_PROPERTY_KEYS | string[] |
props
Type:
Cfn
strategy
Type:
Property
static CFN_PROPERTY_KEYS
Type:
string[]
Methods
| Name | Description |
|---|---|
| apply | Apply the mixin properties to the construct. |
| supports(construct) | Check if this mixin supports the given construct. |
applyTo(construct)
public applyTo(construct: IConstruct): IConstruct
Parameters
- construct
IConstruct
Returns
Apply the mixin properties to the construct.
supports(construct)
public supports(construct: IConstruct): boolean
Parameters
- construct
IConstruct
Returns
boolean
Check if this mixin supports the given construct.

.NET
Go
Java
Python
TypeScript