#[non_exhaustive]
pub struct SegmentResponse { pub application_id: Option<String>, pub arn: Option<String>, pub creation_date: Option<String>, pub dimensions: Option<SegmentDimensions>, pub id: Option<String>, pub import_definition: Option<SegmentImportResource>, pub last_modified_date: Option<String>, pub name: Option<String>, pub segment_groups: Option<SegmentGroupList>, pub segment_type: Option<SegmentType>, pub tags: Option<HashMap<String, String>>, pub version: i32, }
Expand description

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

Fields (Non-exhaustive)

This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.
application_id: Option<String>

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

arn: Option<String>

The Amazon Resource Name (ARN) of the segment.

creation_date: Option<String>

The date and time when the segment was created.

dimensions: Option<SegmentDimensions>

The dimension settings for the segment.

id: Option<String>

The unique identifier for the segment.

import_definition: Option<SegmentImportResource>

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

last_modified_date: Option<String>

The date and time when the segment was last modified.

name: Option<String>

The name of the segment.

segment_groups: Option<SegmentGroupList>

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.

segment_type: Option<SegmentType>

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: Option<HashMap<String, String>>

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: i32

The version number of the segment.

Implementations

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

The Amazon Resource Name (ARN) of the segment.

The date and time when the segment was created.

The dimension settings for the segment.

The unique identifier for the segment.

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

The date and time when the segment was last modified.

The name of the segment.

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.

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.

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.

The version number of the segment.

Creates a new builder-style object to manufacture SegmentResponse

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more