Interface CfnGCMChannelMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnGCMChannelMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:20:02.298Z")
@Stability(Stable)
public interface CfnGCMChannelMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnGCMChannelPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.pinpoint.*;
CfnGCMChannelMixinProps cfnGCMChannelMixinProps = CfnGCMChannelMixinProps.builder()
.apiKey("apiKey")
.applicationId("applicationId")
.defaultAuthenticationMethod("defaultAuthenticationMethod")
.enabled(false)
.serviceJson("serviceJson")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnGCMChannelMixinPropsstatic final classAn implementation forCfnGCMChannelMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe Web API key, also called the server key , that you received from Google to communicate with Google services.default StringThe unique identifier for the Amazon Pinpoint application that the GCM channel applies to.default StringThe default authentication method used for GCM.default ObjectSpecifies whether to enable the GCM channel for the Amazon Pinpoint application.default StringThe contents of the JSON file provided by Google during registration in order to generate an access token for authentication.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getApiKey
The Web API key, also called the server key , that you received from Google to communicate with Google services.- See Also:
-
getApplicationId
The unique identifier for the Amazon Pinpoint application that the GCM channel applies to.- See Also:
-
getDefaultAuthenticationMethod
The default authentication method used for GCM.Values are either "TOKEN" or "KEY". Defaults to "KEY".
- See Also:
-
getEnabled
Specifies whether to enable the GCM channel for the Amazon Pinpoint application.Returns union: either
BooleanorIResolvable- See Also:
-
getServiceJson
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 .
- See Also:
-
builder
- Returns:
- a
CfnGCMChannelMixinProps.BuilderofCfnGCMChannelMixinProps
-