Class: Aws::Pinpoint::Types::AttributesResource

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

Overview

Provides information about the type and the names of attributes that were removed from all the endpoints that are associated with an application.

Instance Attribute Summary collapse

Instance Attribute Details

#application_idString

The unique identifier for the application.

Returns:

  • (String)


2001
2002
2003
2004
2005
2006
# File 'lib/aws-sdk-pinpoint/types.rb', line 2001

class AttributesResource < Struct.new(
  :application_id,
  :attribute_type,
  :attributes)
  include Aws::Structure
end

#attribute_typeString

The type of attribute or attributes that were removed from the endpoints. Valid values are:

  • endpoint-custom-attributes - Custom attributes that describe endpoints.

  • endpoint-metric-attributes - Custom metrics that your app reports to Amazon Pinpoint for endpoints.

  • endpoint-user-attributes - Custom attributes that describe users.

Returns:

  • (String)


2001
2002
2003
2004
2005
2006
# File 'lib/aws-sdk-pinpoint/types.rb', line 2001

class AttributesResource < Struct.new(
  :application_id,
  :attribute_type,
  :attributes)
  include Aws::Structure
end

#attributesArray<String>

An array that specifies the names of the attributes that were removed from the endpoints.

Returns:

  • (Array<String>)


2001
2002
2003
2004
2005
2006
# File 'lib/aws-sdk-pinpoint/types.rb', line 2001

class AttributesResource < Struct.new(
  :application_id,
  :attribute_type,
  :attributes)
  include Aws::Structure
end