AWSPinpointTargetingAttributesResource

Objective-C

@interface AWSPinpointTargetingAttributesResource

Swift

class AWSPinpointTargetingAttributesResource

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

Required parameters: [AttributeType, ApplicationId]

  • The unique identifier for the application.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable applicationId;

    Swift

    var applicationId: String? { get set }
  • 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.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSString *_Nullable attributeType;

    Swift

    var attributeType: String? { get set }
  • An array that specifies the names of the attributes that were removed from the endpoints.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSArray<NSString *> *_Nullable attributes;

    Swift

    var attributes: [String]? { get set }