Class: Aws::Wickr::Types::BasicDeviceObject
- Inherits:
-
Struct
- Object
- Struct
- Aws::Wickr::Types::BasicDeviceObject
- Defined in:
- gems/aws-sdk-wickr/lib/aws-sdk-wickr/types.rb
Overview
Represents a device where a user has logged into Wickr, containing information about the device's type, status, and login history.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#app_id ⇒ String
The unique application ID for the Wickr app on this device.
-
#created ⇒ String
The timestamp when the device first appeared in the Wickr database.
-
#last_login ⇒ String
The timestamp when the device last successfully logged into Wickr.
-
#status_text ⇒ String
The current status of the device, either 'Active' or 'Reset' depending on whether the device is currently active or has been marked for reset.
-
#suspend ⇒ Boolean
Indicates whether the device is suspended.
-
#type ⇒ String
The operating system of the device (e.g., 'MacOSX', 'Windows', 'iOS', 'Android').
Instance Attribute Details
#app_id ⇒ String
The unique application ID for the Wickr app on this device.
64 65 66 67 68 69 70 71 72 73 |
# File 'gems/aws-sdk-wickr/lib/aws-sdk-wickr/types.rb', line 64 class BasicDeviceObject < Struct.new( :app_id, :created, :last_login, :status_text, :suspend, :type) SENSITIVE = [] include Aws::Structure end |
#created ⇒ String
The timestamp when the device first appeared in the Wickr database.
64 65 66 67 68 69 70 71 72 73 |
# File 'gems/aws-sdk-wickr/lib/aws-sdk-wickr/types.rb', line 64 class BasicDeviceObject < Struct.new( :app_id, :created, :last_login, :status_text, :suspend, :type) SENSITIVE = [] include Aws::Structure end |
#last_login ⇒ String
The timestamp when the device last successfully logged into Wickr. This is also used to determine SSO idle time.
64 65 66 67 68 69 70 71 72 73 |
# File 'gems/aws-sdk-wickr/lib/aws-sdk-wickr/types.rb', line 64 class BasicDeviceObject < Struct.new( :app_id, :created, :last_login, :status_text, :suspend, :type) SENSITIVE = [] include Aws::Structure end |
#status_text ⇒ String
The current status of the device, either 'Active' or 'Reset' depending on whether the device is currently active or has been marked for reset.
64 65 66 67 68 69 70 71 72 73 |
# File 'gems/aws-sdk-wickr/lib/aws-sdk-wickr/types.rb', line 64 class BasicDeviceObject < Struct.new( :app_id, :created, :last_login, :status_text, :suspend, :type) SENSITIVE = [] include Aws::Structure end |
#suspend ⇒ Boolean
Indicates whether the device is suspended.
64 65 66 67 68 69 70 71 72 73 |
# File 'gems/aws-sdk-wickr/lib/aws-sdk-wickr/types.rb', line 64 class BasicDeviceObject < Struct.new( :app_id, :created, :last_login, :status_text, :suspend, :type) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
The operating system of the device (e.g., 'MacOSX', 'Windows', 'iOS', 'Android').
64 65 66 67 68 69 70 71 72 73 |
# File 'gems/aws-sdk-wickr/lib/aws-sdk-wickr/types.rb', line 64 class BasicDeviceObject < Struct.new( :app_id, :created, :last_login, :status_text, :suspend, :type) SENSITIVE = [] include Aws::Structure end |