Class: Aws::SNS::PlatformApplication

Inherits:
Object
  • Object
show all
Extended by:
Deprecations
Defined in:
lib/aws-sdk-sns/platform_application.rb

Defined Under Namespace

Classes: Collection

Read-Only Attributes collapse

Actions collapse

Associations collapse

Instance Method Summary collapse

Constructor Details

#initialize(arn, options = {}) ⇒ PlatformApplication #initialize(options = {}) ⇒ PlatformApplication

Returns a new instance of PlatformApplication.

Overloads:



22
23
24
25
26
27
28
# File 'lib/aws-sdk-sns/platform_application.rb', line 22

def initialize(*args)
  options = Hash === args.last ? args.pop.dup : {}
  @arn = extract_arn(args, options)
  @data = options.delete(:data)
  @client = options.delete(:client) || Client.new(options)
  @waiter_block_warned = false
end

Instance Method Details

#arnString

Returns:

  • (String)


33
34
35
# File 'lib/aws-sdk-sns/platform_application.rb', line 33

def arn
  @arn
end

#attributesHash<String,String>

Attributes include the following:

  • ‘AppleCertificateExpiryDate` – The expiry date of the SSL certificate used to configure certificate-based authentication.

  • ‘ApplePlatformTeamID` – The Apple developer account ID used to configure token-based authentication.

  • ‘ApplePlatformBundleID` – The app identifier used to configure token-based authentication.

  • ‘AuthenticationMethod` – Returns the credential type used when sending push notifications from application to APNS/APNS_Sandbox, or application to GCM.

    • APNS – Returns the token or certificate.

    • GCM – Returns the token or key.

  • ‘EventEndpointCreated` – Topic ARN to which EndpointCreated event notifications should be sent.

  • ‘EventEndpointDeleted` – Topic ARN to which EndpointDeleted event notifications should be sent.

  • ‘EventEndpointUpdated` – Topic ARN to which EndpointUpdate event notifications should be sent.

  • ‘EventDeliveryFailure` – Topic ARN to which DeliveryFailure event notifications should be sent upon Direct Publish delivery failure (permanent) to one of the application’s endpoints.

Returns:

  • (Hash<String,String>)


69
70
71
# File 'lib/aws-sdk-sns/platform_application.rb', line 69

def attributes
  data[:attributes]
end

#clientClient

Returns:



76
77
78
# File 'lib/aws-sdk-sns/platform_application.rb', line 76

def client
  @client
end

#create_platform_endpoint(options = {}) ⇒ PlatformEndpoint

Examples:

Request syntax with placeholder values


platformendpoint = platform_application.create_platform_endpoint({
  token: "String", # required
  custom_user_data: "String",
  attributes: {
    "String" => "String",
  },
})

Parameters:

  • options (Hash) (defaults to: {})

    ({})

Options Hash (options):

  • :token (required, String)

    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 GCM (Firebase Cloud Messaging) or ADM, the device token equivalent is called the registration ID.

  • :custom_user_data (String)

    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.

  • :attributes (Hash<String,String>)

    For a list of attributes, see [ ‘SetEndpointAttributes` ][1].

    [1]: docs.aws.amazon.com/sns/latest/api/API_SetEndpointAttributes.html

Returns:



139
140
141
142
143
144
145
146
147
148
# File 'lib/aws-sdk-sns/platform_application.rb', line 139

def create_platform_endpoint(options = {})
  options = options.merge(platform_application_arn: @arn)
  resp = Aws::Plugins::UserAgent.feature('resource') do
    @client.create_platform_endpoint(options)
  end
  PlatformEndpoint.new(
    arn: resp.data.endpoint_arn,
    client: @client
  )
end

#dataTypes::GetPlatformApplicationAttributesResponse



98
99
100
101
# File 'lib/aws-sdk-sns/platform_application.rb', line 98

def data
  load unless @data
  @data
end

#data_loaded?Boolean

Returns ‘true` if this resource is loaded. Accessing attributes or #data on an unloaded resource will trigger a call to #load.

Returns:

  • (Boolean)

    Returns ‘true` if this resource is loaded. Accessing attributes or #data on an unloaded resource will trigger a call to #load.



106
107
108
# File 'lib/aws-sdk-sns/platform_application.rb', line 106

def data_loaded?
  !!@data
end

#delete(options = {}) ⇒ EmptyStructure

Examples:

Request syntax with placeholder values


platform_application.delete()

Parameters:

  • options (Hash) (defaults to: {})

    ({})

Returns:

  • (EmptyStructure)


155
156
157
158
159
160
161
# File 'lib/aws-sdk-sns/platform_application.rb', line 155

def delete(options = {})
  options = options.merge(platform_application_arn: @arn)
  resp = Aws::Plugins::UserAgent.feature('resource') do
    @client.delete_platform_application(options)
  end
  resp.data
end

#endpoints(options = {}) ⇒ PlatformEndpoint::Collection

Examples:

Request syntax with placeholder values


platform_application.endpoints()

Parameters:

  • options (Hash) (defaults to: {})

    ({})

Returns:



259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
# File 'lib/aws-sdk-sns/platform_application.rb', line 259

def endpoints(options = {})
  batches = Enumerator.new do |y|
    options = options.merge(platform_application_arn: @arn)
    resp = Aws::Plugins::UserAgent.feature('resource') do
      @client.list_endpoints_by_platform_application(options)
    end
    resp.each_page do |page|
      batch = []
      page.data.endpoints.each do |e|
        batch << PlatformEndpoint.new(
          arn: e.endpoint_arn,
          client: @client
        )
      end
      y.yield(batch)
    end
  end
  PlatformEndpoint::Collection.new(batches)
end

#identifiersObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Deprecated.


281
282
283
# File 'lib/aws-sdk-sns/platform_application.rb', line 281

def identifiers
  { arn: @arn }
end

#loadself Also known as: reload

Loads, or reloads #data for the current Aws::SNS::PlatformApplication. Returns ‘self` making it possible to chain methods.

platform_application.reload.data

Returns:

  • (self)


86
87
88
89
90
91
92
# File 'lib/aws-sdk-sns/platform_application.rb', line 86

def load
  resp = Aws::Plugins::UserAgent.feature('resource') do
    @client.get_platform_application_attributes(platform_application_arn: @arn)
  end
  @data = resp.data
  self
end

#set_attributes(options = {}) ⇒ EmptyStructure

Examples:

Request syntax with placeholder values


platform_application.set_attributes({
  attributes: { # required
    "String" => "String",
  },
})

Parameters:

  • options (Hash) (defaults to: {})

    ({})

Options Hash (options):

  • :attributes (required, Hash<String,String>)

    A map of the platform application attributes. Attributes in this map include the following:

    • ‘PlatformCredential` – The credential received from the notification service.

      • For ADM, ‘PlatformCredential`is client secret.

      • For Apple Services using certificate credentials, ‘PlatformCredential` is private key.

      • For Apple Services using token credentials, ‘PlatformCredential` is signing key.

      • For GCM (Firebase Cloud Messaging) using key credentials, there is no ‘PlatformPrincipal`. The `PlatformCredential` is `API key`.

      • For GCM (Firebase Cloud Messaging) using token credentials, there is no ‘PlatformPrincipal`. The `PlatformCredential` is a JSON formatted private key file. When using the Amazon Web Services CLI, the file must be in string format and special characters must be ignored. To format the file correctly, Amazon SNS recommends using the following command: “ SERVICE_JSON=`jq @json <<< cat service.json` “.

    ^

    • ‘PlatformPrincipal` – The principal received from the notification service.

      • For ADM, ‘PlatformPrincipal`is client id.

      • For Apple Services using certificate credentials, ‘PlatformPrincipal` is SSL certificate.

      • For Apple Services using token credentials, ‘PlatformPrincipal` is signing key ID.

      • For GCM (Firebase Cloud Messaging), there is no ‘PlatformPrincipal`.

    ^

    • ‘EventEndpointCreated` – Topic ARN to which `EndpointCreated` event notifications are sent.

    • ‘EventEndpointDeleted` – Topic ARN to which `EndpointDeleted` event notifications are sent.

    • ‘EventEndpointUpdated` – Topic ARN to which `EndpointUpdate` event notifications are sent.

    • ‘EventDeliveryFailure` – Topic ARN to which `DeliveryFailure` event notifications are sent upon Direct Publish delivery failure (permanent) to one of the application’s endpoints.

    • ‘SuccessFeedbackRoleArn` – IAM role ARN used to give Amazon SNS write access to use CloudWatch Logs on your behalf.

    • ‘FailureFeedbackRoleArn` – IAM role ARN used to give Amazon SNS write access to use CloudWatch Logs on your behalf.

    • ‘SuccessFeedbackSampleRate` – Sample rate percentage (0-100) of successfully delivered messages.

    The following attributes only apply to ‘APNs` token-based authentication:

    • ‘ApplePlatformTeamID` – The identifier that’s assigned to your Apple developer account team.

    • ‘ApplePlatformBundleID` – The bundle identifier that’s assigned to your iOS app.

Returns:

  • (EmptyStructure)


244
245
246
247
248
249
250
# File 'lib/aws-sdk-sns/platform_application.rb', line 244

def set_attributes(options = {})
  options = options.merge(platform_application_arn: @arn)
  resp = Aws::Plugins::UserAgent.feature('resource') do
    @client.set_platform_application_attributes(options)
  end
  resp.data
end