Pinpoint / Client / delete_gcm_channel

delete_gcm_channel#

Pinpoint.Client.delete_gcm_channel(**kwargs)#

Disables the GCM channel for an application and deletes any existing settings for the channel.

See also: AWS API Documentation

Request Syntax

response = client.delete_gcm_channel(
    ApplicationId='string'
)
Parameters:

ApplicationId (string) –

[REQUIRED]

The unique identifier for the application. This identifier is displayed as the Project ID on the Amazon Pinpoint console.

Return type:

dict

Returns:

Response Syntax

{
    'GCMChannelResponse': {
        'ApplicationId': 'string',
        'CreationDate': 'string',
        'Credential': 'string',
        'DefaultAuthenticationMethod': 'string',
        'Enabled': True|False,
        'HasCredential': True|False,
        'HasFcmServiceCredentials': True|False,
        'Id': 'string',
        'IsArchived': True|False,
        'LastModifiedBy': 'string',
        'LastModifiedDate': 'string',
        'Platform': 'string',
        'Version': 123
    }
}

Response Structure

  • (dict) –

    The request succeeded.

    • GCMChannelResponse (dict) –

      Provides information about the status and settings of the GCM channel for an application. The GCM channel enables Amazon Pinpoint to send push notifications through the Firebase Cloud Messaging (FCM), formerly Google Cloud Messaging (GCM), service.

      • ApplicationId (string) –

        The unique identifier for the application that the GCM channel applies to.

      • CreationDate (string) –

        The date and time when the GCM channel was enabled.

      • Credential (string) –

        The Web API Key, also referred to as an API_KEY or server key, that you received from Google to communicate with Google services.

      • DefaultAuthenticationMethod (string) –

        The default authentication method used for GCM. Values are either “TOKEN” or “KEY”. Defaults to “KEY”.

      • Enabled (boolean) –

        Specifies whether the GCM channel is enabled for the application.

      • HasCredential (boolean) –

        (Not used) This property is retained only for backward compatibility.

      • HasFcmServiceCredentials (boolean) –

        Returns true if the JSON file provided by Google during registration process was used in the ServiceJson field of the request.

      • Id (string) –

        (Deprecated) An identifier for the GCM channel. This property is retained only for backward compatibility.

      • IsArchived (boolean) –

        Specifies whether the GCM channel is archived.

      • LastModifiedBy (string) –

        The user who last modified the GCM channel.

      • LastModifiedDate (string) –

        The date and time when the GCM channel was last modified.

      • Platform (string) –

        The type of messaging or notification platform for the channel. For the GCM channel, this value is GCM.

      • Version (integer) –

        The current version of the GCM channel.

Exceptions