Struct aws_sdk_personalize::model::EventTrackerSummary
source · #[non_exhaustive]pub struct EventTrackerSummary { /* private fields */ }
Expand description
Provides a summary of the properties of an event tracker. For a complete listing, call the DescribeEventTracker API.
Implementations§
source§impl EventTrackerSummary
impl EventTrackerSummary
sourcepub fn event_tracker_arn(&self) -> Option<&str>
pub fn event_tracker_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the event tracker.
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 time) 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 EventTrackerSummary
impl EventTrackerSummary
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture EventTrackerSummary
.
Trait Implementations§
source§impl Clone for EventTrackerSummary
impl Clone for EventTrackerSummary
source§fn clone(&self) -> EventTrackerSummary
fn clone(&self) -> EventTrackerSummary
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 EventTrackerSummary
impl Debug for EventTrackerSummary
source§impl PartialEq<EventTrackerSummary> for EventTrackerSummary
impl PartialEq<EventTrackerSummary> for EventTrackerSummary
source§fn eq(&self, other: &EventTrackerSummary) -> bool
fn eq(&self, other: &EventTrackerSummary) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.