Class: Aws::Personalize::Types::EventTrackerSummary
- Inherits:
-
Struct
- Object
- Struct
- Aws::Personalize::Types::EventTrackerSummary
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-personalize/types.rb
Overview
Provides a summary of the properties of an event tracker. For a complete listing, call the [DescribeEventTracker] API.
[1]: docs.aws.amazon.com/personalize/latest/dg/API_DescribeEventTracker.html
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#creation_date_time ⇒ Time
The date and time (in Unix time) that the event tracker was created.
-
#event_tracker_arn ⇒ String
The Amazon Resource Name (ARN) of the event tracker.
-
#last_updated_date_time ⇒ Time
The date and time (in Unix time) that the event tracker was last updated.
-
#name ⇒ String
The name of the event tracker.
-
#status ⇒ String
The status of the event tracker.
Instance Attribute Details
#creation_date_time ⇒ Time
The date and time (in Unix time) that the event tracker was created.
3483 3484 3485 3486 3487 3488 3489 3490 3491 |
# File 'lib/aws-sdk-personalize/types.rb', line 3483 class EventTrackerSummary < Struct.new( :name, :event_tracker_arn, :status, :creation_date_time, :last_updated_date_time) SENSITIVE = [] include Aws::Structure end |
#event_tracker_arn ⇒ String
The Amazon Resource Name (ARN) of the event tracker.
3483 3484 3485 3486 3487 3488 3489 3490 3491 |
# File 'lib/aws-sdk-personalize/types.rb', line 3483 class EventTrackerSummary < Struct.new( :name, :event_tracker_arn, :status, :creation_date_time, :last_updated_date_time) SENSITIVE = [] include Aws::Structure end |
#last_updated_date_time ⇒ Time
The date and time (in Unix time) that the event tracker was last updated.
3483 3484 3485 3486 3487 3488 3489 3490 3491 |
# File 'lib/aws-sdk-personalize/types.rb', line 3483 class EventTrackerSummary < Struct.new( :name, :event_tracker_arn, :status, :creation_date_time, :last_updated_date_time) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the event tracker.
3483 3484 3485 3486 3487 3488 3489 3490 3491 |
# File 'lib/aws-sdk-personalize/types.rb', line 3483 class EventTrackerSummary < Struct.new( :name, :event_tracker_arn, :status, :creation_date_time, :last_updated_date_time) SENSITIVE = [] include Aws::Structure end |
#status ⇒ 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
3483 3484 3485 3486 3487 3488 3489 3490 3491 |
# File 'lib/aws-sdk-personalize/types.rb', line 3483 class EventTrackerSummary < Struct.new( :name, :event_tracker_arn, :status, :creation_date_time, :last_updated_date_time) SENSITIVE = [] include Aws::Structure end |