[][src]Struct rusoto_personalize::EventTracker

pub struct EventTracker {
    pub account_id: Option<String>,
    pub creation_date_time: Option<f64>,
    pub dataset_group_arn: Option<String>,
    pub event_tracker_arn: Option<String>,
    pub last_updated_date_time: Option<f64>,
    pub name: Option<String>,
    pub status: Option<String>,
    pub tracking_id: Option<String>,
}

Provides information about an event tracker.

Fields

account_id: Option<String>

The Amazon AWS account that owns the event tracker.

creation_date_time: Option<f64>

The date and time (in Unix format) that the event tracker was created.

dataset_group_arn: Option<String>

The Amazon Resource Name (ARN) of the dataset group that receives the event data.

event_tracker_arn: Option<String>

The ARN of the event tracker.

last_updated_date_time: Option<f64>

The date and time (in Unix time) that the event tracker was last updated.

name: Option<String>

The name of the event tracker.

status: Option<String>

The status of the event tracker.

An event tracker can be in one of the following states:

  • CREATE PENDING > CREATE INPROGRESS > ACTIVE -or- CREATE FAILED

  • DELETE PENDING > DELETE INPROGRESS

tracking_id: Option<String>

The ID of the event tracker. Include this ID in requests to the PutEvents API.

Trait Implementations

impl Clone for EventTracker[src]

impl Debug for EventTracker[src]

impl Default for EventTracker[src]

impl<'de> Deserialize<'de> for EventTracker[src]

impl PartialEq<EventTracker> for EventTracker[src]

impl StructuralPartialEq for EventTracker[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.