Class: Aws::SNS::Types::ListEndpointsByPlatformApplicationInput

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
lib/aws-sdk-sns/types.rb

Overview

Note:

When making an API call, you may pass ListEndpointsByPlatformApplicationInput data as a hash:

{
  platform_application_arn: "String", # required
  next_token: "String",
}

Input for ListEndpointsByPlatformApplication action.

Instance Attribute Summary collapse

Instance Attribute Details

#next_tokenString

NextToken string is used when calling ListEndpointsByPlatformApplication action to retrieve additional records that are available after the first page results.

Returns:

  • (String)


673
674
675
676
677
# File 'lib/aws-sdk-sns/types.rb', line 673

class ListEndpointsByPlatformApplicationInput < Struct.new(
  :platform_application_arn,
  :next_token)
  include Aws::Structure
end

#platform_application_arnString

PlatformApplicationArn for ListEndpointsByPlatformApplicationInput action.

Returns:

  • (String)


673
674
675
676
677
# File 'lib/aws-sdk-sns/types.rb', line 673

class ListEndpointsByPlatformApplicationInput < Struct.new(
  :platform_application_arn,
  :next_token)
  include Aws::Structure
end