Struct aws_sdk_personalize::model::EventTracker
source · #[non_exhaustive]pub struct EventTracker { /* private fields */ }
Expand description
Provides information about an event tracker.
Implementations§
source§impl EventTracker
impl EventTracker
sourcepub fn event_tracker_arn(&self) -> Option<&str>
pub fn event_tracker_arn(&self) -> Option<&str>
The ARN of the event tracker.
sourcepub fn account_id(&self) -> Option<&str>
pub fn account_id(&self) -> Option<&str>
The Amazon Web Services account that owns the event tracker.
sourcepub fn tracking_id(&self) -> Option<&str>
pub fn tracking_id(&self) -> Option<&str>
The ID of the event tracker. Include this ID in requests to the PutEvents API.
sourcepub fn dataset_group_arn(&self) -> Option<&str>
pub fn dataset_group_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the dataset group that receives the event data.
sourcepub fn status(&self) -> Option<&str>
pub fn status(&self) -> Option<&str>
The status of the event tracker.
An event tracker can be in one of the following states:
-
CREATE PENDING > CREATE IN_PROGRESS > ACTIVE -or- CREATE FAILED
-
DELETE PENDING > DELETE IN_PROGRESS
sourcepub fn creation_date_time(&self) -> Option<&DateTime>
pub fn creation_date_time(&self) -> Option<&DateTime>
The date and time (in Unix format) that the event tracker was created.
sourcepub fn last_updated_date_time(&self) -> Option<&DateTime>
pub fn last_updated_date_time(&self) -> Option<&DateTime>
The date and time (in Unix time) that the event tracker was last updated.
source§impl EventTracker
impl EventTracker
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture EventTracker
.
Trait Implementations§
source§impl Clone for EventTracker
impl Clone for EventTracker
source§fn clone(&self) -> EventTracker
fn clone(&self) -> EventTracker
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for EventTracker
impl Debug for EventTracker
source§impl PartialEq<EventTracker> for EventTracker
impl PartialEq<EventTracker> for EventTracker
source§fn eq(&self, other: &EventTracker) -> bool
fn eq(&self, other: &EventTracker) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.