Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

SegmentResponse

import type { SegmentResponse } from "https://aws-api.deno.dev/v0.4/services/pinpoint.ts?docs=full";

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

interface SegmentResponse {
ApplicationId: string;
Arn: string;
CreationDate: string;
Dimensions?: SegmentDimensions | null;
Id: string;
ImportDefinition?: SegmentImportResource | null;
LastModifiedDate?: string | null;
Name?: string | null;
SegmentGroups?: SegmentGroupList | null;
SegmentType: SegmentType;
tags?: {
[key: string]: string | null | undefined;
}
| null;
Version?: number | null;
}

§Properties

§
ApplicationId: string
[src]

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

§
Arn: string
[src]

The Amazon Resource Name (ARN) of the segment.

§
CreationDate: string
[src]

The date and time when the segment was created.

§
Dimensions?: SegmentDimensions | null
[src]

The dimension settings for the segment.

§
Id: string
[src]

The unique identifier for the segment.

§
ImportDefinition?: SegmentImportResource | null
[src]

The settings for the import job that's associated with the segment.

§
LastModifiedDate?: string | null
[src]

The date and time when the segment was last modified.

§
Name?: string | null
[src]

The name of the segment.

§
SegmentGroups?: SegmentGroupList | null
[src]

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.

§
SegmentType: SegmentType
[src]

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.
§
tags?: {
[key: string]: string | null | undefined;
}
| null
[src]

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.

§
Version?: number | null
[src]

The version number of the segment.