SegmentResponse

public struct SegmentResponse : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • The unique identifier for the application that the segment is associated with.

    Declaration

    Swift

    public let applicationId: String
  • arn

    The Amazon Resource Name (ARN) of the segment.

    Declaration

    Swift

    public let arn: String
  • The date and time when the segment was created.

    Declaration

    Swift

    public let creationDate: String
  • The dimension settings for the segment.

    Declaration

    Swift

    public let dimensions: SegmentDimensions?
  • id

    The unique identifier for the segment.

    Declaration

    Swift

    public let id: String
  • The settings for the import job that’s associated with the segment.

    Declaration

    Swift

    public let importDefinition: SegmentImportResource?
  • The date and time when the segment was last modified.

    Declaration

    Swift

    public let lastModifiedDate: String?
  • The name of the segment.

    Declaration

    Swift

    public let name: String?
  • 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

    Swift

    public let segmentGroups: SegmentGroupList?
  • 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

    Swift

    public let segmentType: SegmentType
  • 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

    Swift

    public let tags: [String : String]?
  • The version number of the segment.

    Declaration

    Swift

    public let version: Int?
  • Undocumented

    Declaration

    Swift

    public init(applicationId: String, arn: String, creationDate: String, dimensions: SegmentDimensions? = nil, id: String, importDefinition: SegmentImportResource? = nil, lastModifiedDate: String? = nil, name: String? = nil, segmentGroups: SegmentGroupList? = nil, segmentType: SegmentType, tags: [String : String]? = nil, version: Int? = nil)