interface CfnGCMChannelMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Pinpoint.Mixins.CfnGCMChannelMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awspinpoint/mixins#CfnGCMChannelMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.pinpoint.mixins.CfnGCMChannelMixinProps |
Python | aws_cdk.mixins_preview.aws_pinpoint.mixins.CfnGCMChannelMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_pinpoint » mixins » CfnGCMChannelMixinProps |
Properties for CfnGCMChannelPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pinpoint-gcmchannel.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 cfnGCMChannelMixinProps: pinpoint_mixins.CfnGCMChannelMixinProps = {
apiKey: 'apiKey',
applicationId: 'applicationId',
defaultAuthenticationMethod: 'defaultAuthenticationMethod',
enabled: false,
serviceJson: 'serviceJson',
};
Properties
| Name | Type | Description |
|---|---|---|
| api | string | The Web API key, also called the server key , that you received from Google to communicate with Google services. |
| application | string | The unique identifier for the Amazon Pinpoint application that the GCM channel applies to. |
| default | string | The default authentication method used for GCM. |
| enabled? | boolean | IResolvable | Specifies whether to enable the GCM channel for the Amazon Pinpoint application. |
| service | string | The contents of the JSON file provided by Google during registration in order to generate an access token for authentication. |
apiKey?
Type:
string
(optional)
The Web API key, also called the server key , that you received from Google to communicate with Google services.
applicationId?
Type:
string
(optional)
The unique identifier for the Amazon Pinpoint application that the GCM channel applies to.
defaultAuthenticationMethod?
Type:
string
(optional)
The default authentication method used for GCM.
Values are either "TOKEN" or "KEY". Defaults to "KEY".
enabled?
Type:
boolean | IResolvable
(optional)
Specifies whether to enable the GCM channel for the Amazon Pinpoint application.
serviceJson?
Type:
string
(optional)
The contents of the JSON file provided by Google during registration in order to generate an access token for authentication.
For more information see Migrate from legacy FCM APIs to HTTP v1 .

.NET
Go
Java
Python
TypeScript