Struct aws_sdk_personalize::model::EventTracker [−][src]
#[non_exhaustive]pub struct EventTracker {
pub name: Option<String>,
pub event_tracker_arn: Option<String>,
pub account_id: Option<String>,
pub tracking_id: Option<String>,
pub dataset_group_arn: Option<String>,
pub status: Option<String>,
pub creation_date_time: Option<DateTime>,
pub last_updated_date_time: Option<DateTime>,
}Expand description
Provides information about an event tracker.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.name: Option<String>The name of the event tracker.
event_tracker_arn: Option<String>The ARN of the event tracker.
account_id: Option<String>The Amazon Web Services account that owns the event tracker.
tracking_id: Option<String>The ID of the event tracker. Include this ID in requests to the PutEvents API.
dataset_group_arn: Option<String>The Amazon Resource Name (ARN) of the dataset group that receives the event data.
status: 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
creation_date_time: Option<DateTime>The date and time (in Unix format) that the event tracker was created.
last_updated_date_time: Option<DateTime>The date and time (in Unix time) that the event tracker was last updated.
Implementations
The ARN of the event tracker.
The Amazon Web Services account that owns the event tracker.
The ID of the event tracker. Include this ID in requests to the PutEvents API.
The Amazon Resource Name (ARN) of the dataset group that receives the event data.
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
The date and time (in Unix format) that the event tracker was created.
The date and time (in Unix time) that the event tracker was last updated.
Creates a new builder-style object to manufacture EventTracker
Trait Implementations
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
Auto Trait Implementations
impl RefUnwindSafe for EventTracker
impl Send for EventTracker
impl Sync for EventTracker
impl Unpin for EventTracker
impl UnwindSafe for EventTracker
Blanket Implementations
Mutably borrows from an owned value. Read more
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
