/* * Copyright 2010-2014 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the sns-2010-03-31.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.SimpleNotificationService.Model { /// /// Container for the parameters to the CreatePlatformEndpoint operation. /// Creates an endpoint for a device and mobile app on one of the supported push notification /// services, such as FCM and APNS. CreatePlatformEndpoint requires the PlatformApplicationArn /// that is returned from CreatePlatformApplication. The EndpointArn that /// is returned when using CreatePlatformEndpoint can then be used by the /// Publish action to send a message to a mobile app or by the Subscribe /// action for subscription to a topic. The CreatePlatformEndpoint action /// is idempotent, so if the requester already owns an endpoint with the same device token /// and attributes, that endpoint's ARN is returned without creating a new endpoint. For /// more information, see Using /// Amazon SNS Mobile Push Notifications. /// /// /// /// When using CreatePlatformEndpoint with Baidu, two attributes must be /// provided: ChannelId and UserId. The token field must also contain the ChannelId. For /// more information, see Creating /// an Amazon SNS Endpoint for Baidu. /// /// public partial class CreatePlatformEndpointRequest : AmazonSimpleNotificationServiceRequest { private Dictionary _attributes = new Dictionary(); private string _customUserData; private string _platformApplicationArn; private string _token; /// /// Gets and sets the property Attributes. /// /// For a list of attributes, see SetEndpointAttributes. /// /// public Dictionary Attributes { get { return this._attributes; } set { this._attributes = value; } } // Check to see if Attributes property is set internal bool IsSetAttributes() { return this._attributes != null && this._attributes.Count > 0; } /// /// Gets and sets the property CustomUserData. /// /// Arbitrary user data to associate with the endpoint. Amazon SNS does not use this data. /// The data must be in UTF-8 format and less than 2KB. /// /// public string CustomUserData { get { return this._customUserData; } set { this._customUserData = value; } } // Check to see if CustomUserData property is set internal bool IsSetCustomUserData() { return this._customUserData != null; } /// /// Gets and sets the property PlatformApplicationArn. /// /// PlatformApplicationArn returned from CreatePlatformApplication is used to create a /// an endpoint. /// /// [AWSProperty(Required=true)] public string PlatformApplicationArn { get { return this._platformApplicationArn; } set { this._platformApplicationArn = value; } } // Check to see if PlatformApplicationArn property is set internal bool IsSetPlatformApplicationArn() { return this._platformApplicationArn != null; } /// /// Gets and sets the property Token. /// /// Unique identifier created by the notification service for an app on a device. The /// specific name for Token will vary, depending on which notification service is being /// used. For example, when using APNS as the notification service, you need the device /// token. Alternatively, when using FCM or ADM, the device token equivalent is called /// the registration ID. /// /// [AWSProperty(Required=true)] public string Token { get { return this._token; } set { this._token = value; } } // Check to see if Token property is set internal bool IsSetToken() { return this._token != null; } } }