#[non_exhaustive]pub struct EventTrackerSummaryBuilder { /* private fields */ }Expand description
A builder for EventTrackerSummary.
Implementations§
source§impl EventTrackerSummaryBuilder
impl EventTrackerSummaryBuilder
sourcepub fn event_tracker_arn(self, input: impl Into<String>) -> Self
pub fn event_tracker_arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of the event tracker.
sourcepub fn set_event_tracker_arn(self, input: Option<String>) -> Self
pub fn set_event_tracker_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of the event tracker.
sourcepub fn get_event_tracker_arn(&self) -> &Option<String>
pub fn get_event_tracker_arn(&self) -> &Option<String>
The Amazon Resource Name (ARN) of the event tracker.
sourcepub fn status(self, input: impl Into<String>) -> Self
pub fn status(self, input: impl Into<String>) -> Self
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 set_status(self, input: Option<String>) -> Self
pub fn set_status(self, input: Option<String>) -> Self
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 get_status(&self) -> &Option<String>
pub fn get_status(&self) -> &Option<String>
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, input: DateTime) -> Self
pub fn creation_date_time(self, input: DateTime) -> Self
The date and time (in Unix time) that the event tracker was created.
sourcepub fn set_creation_date_time(self, input: Option<DateTime>) -> Self
pub fn set_creation_date_time(self, input: Option<DateTime>) -> Self
The date and time (in Unix time) that the event tracker was created.
sourcepub fn get_creation_date_time(&self) -> &Option<DateTime>
pub fn get_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, input: DateTime) -> Self
pub fn last_updated_date_time(self, input: DateTime) -> Self
The date and time (in Unix time) that the event tracker was last updated.
sourcepub fn set_last_updated_date_time(self, input: Option<DateTime>) -> Self
pub fn set_last_updated_date_time(self, input: Option<DateTime>) -> Self
The date and time (in Unix time) that the event tracker was last updated.
sourcepub fn get_last_updated_date_time(&self) -> &Option<DateTime>
pub fn get_last_updated_date_time(&self) -> &Option<DateTime>
The date and time (in Unix time) that the event tracker was last updated.
sourcepub fn build(self) -> EventTrackerSummary
pub fn build(self) -> EventTrackerSummary
Consumes the builder and constructs a EventTrackerSummary.
Trait Implementations§
source§impl Clone for EventTrackerSummaryBuilder
impl Clone for EventTrackerSummaryBuilder
source§fn clone(&self) -> EventTrackerSummaryBuilder
fn clone(&self) -> EventTrackerSummaryBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for EventTrackerSummaryBuilder
impl Debug for EventTrackerSummaryBuilder
source§impl Default for EventTrackerSummaryBuilder
impl Default for EventTrackerSummaryBuilder
source§fn default() -> EventTrackerSummaryBuilder
fn default() -> EventTrackerSummaryBuilder
source§impl PartialEq for EventTrackerSummaryBuilder
impl PartialEq for EventTrackerSummaryBuilder
source§fn eq(&self, other: &EventTrackerSummaryBuilder) -> bool
fn eq(&self, other: &EventTrackerSummaryBuilder) -> bool
self and other values to be equal, and is used
by ==.