AWSPinpointTargetingSegmentResponse

Objective-C

@interface AWSPinpointTargetingSegmentResponse

Swift

class AWSPinpointTargetingSegmentResponse

Provides information about the configuration, dimension, and other settings for a segment.

Required parameters: [SegmentType, CreationDate, Id, Arn, ApplicationId]

  • The unique identifier for the application that the segment is associated with.

    Declaration

    Objective-C

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

    Swift

    var applicationId: String? { get set }
  • arn

    The Amazon Resource Name (ARN) of the segment.

    Declaration

    Objective-C

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

    Swift

    var arn: String? { get set }
  • The date and time when the segment was created.

    Declaration

    Objective-C

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

    Swift

    var creationDate: String? { get set }
  • The dimension settings for the segment.

    Declaration

    Objective-C

    @property (nonatomic, strong) AWSPinpointTargetingSegmentDimensions *_Nullable dimensions;

    Swift

    var dimensions: AWSPinpointTargetingSegmentDimensions? { get set }
  • The unique identifier for the segment.

    Declaration

    Objective-C

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

    Swift

    var identifier: String? { get set }
  • The settings for the import job that’s associated with the segment.

    Declaration

    Objective-C

    @property (nonatomic, strong) AWSPinpointTargetingSegmentImportResource *_Nullable importDefinition;

    Swift

    var importDefinition: AWSPinpointTargetingSegmentImportResource? { get set }
  • The date and time when the segment was last modified.

    Declaration

    Objective-C

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

    Swift

    var lastModifiedDate: String? { get set }
  • The name of the segment.

    Declaration

    Objective-C

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

    Swift

    var name: String? { get set }
  • A list of one or more segment groups that apply to the segment. Each segment group consists of zero or more base segments and the dimensions that are applied to those base segments.

    Declaration

    Objective-C

    @property (nonatomic, strong) AWSPinpointTargetingSegmentGroupList *_Nullable segmentGroups;

    Swift

    var segmentGroups: AWSPinpointTargetingSegmentGroupList? { get set }
  • The segment type. Valid values are:

    • DIMENSIONAL - A dynamic segment, which is a segment that uses selection criteria that you specify and is based on endpoint data that’s reported by your app. Dynamic segments can change over time.

    • IMPORT - A static segment, which is a segment that uses selection criteria that you specify and is based on endpoint definitions that you import from a file. Imported segments are static; they don’t change over time.

    Declaration

    Objective-C

    @property (nonatomic) AWSPinpointTargetingSegmentType segmentType;

    Swift

    var segmentType: AWSPinpointTargetingSegmentType { get set }
  • The version number of the segment.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSNumber *_Nullable version;

    Swift

    var version: NSNumber? { get set }
  • A string-to-string map of key-value pairs that identifies the tags that are associated with the segment. Each tag consists of a required tag key and an associated tag value.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSDictionary<NSString *, NSString *> *_Nullable tags;

    Swift

    var tags: [String : String]? { get set }