Class: Aws::Pinpoint::Types::Session
- Inherits:
-
Struct
- Object
- Struct
- Aws::Pinpoint::Types::Session
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-pinpoint/types.rb
Overview
Provides information about a session.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#duration ⇒ Integer
The duration of the session, in milliseconds.
-
#id ⇒ String
The unique identifier for the session.
-
#start_timestamp ⇒ String
The date and time when the session began.
-
#stop_timestamp ⇒ String
The date and time when the session ended.
Instance Attribute Details
#duration ⇒ Integer
The duration of the session, in milliseconds.
11665 11666 11667 11668 11669 11670 11671 11672 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 11665 class Session < Struct.new( :duration, :id, :start_timestamp, :stop_timestamp) SENSITIVE = [] include Aws::Structure end |
#id ⇒ String
The unique identifier for the session.
11665 11666 11667 11668 11669 11670 11671 11672 |
# File 'lib/aws-sdk-pinpoint/types.rb', line 11665 class Session < Struct.new( :duration, :id, :start_timestamp, :stop_timestamp) SENSITIVE = [] include Aws::Structure end |