Class: Aws::Lightsail::Types::Session
- Inherits:
-
Struct
- Object
- Struct
- Aws::Lightsail::Types::Session
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-lightsail/types.rb
Overview
Describes a web-based, remote graphical user interface (GUI), NICE DCV session. The session is used to access a virtual computer’s operating system or application.
Constant Summary collapse
- SENSITIVE =
[:url]
Instance Attribute Summary collapse
-
#is_primary ⇒ Boolean
When true, this Boolean value indicates the primary session for the specified resource.
-
#name ⇒ String
The session name.
-
#url ⇒ String
The session URL.
Instance Attribute Details
#is_primary ⇒ Boolean
When true, this Boolean value indicates the primary session for the specified resource.
13622 13623 13624 13625 13626 13627 13628 |
# File 'lib/aws-sdk-lightsail/types.rb', line 13622 class Session < Struct.new( :name, :url, :is_primary) SENSITIVE = [:url] include Aws::Structure end |