Class: Aws::Lightsail::Types::Session

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-lightsail/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

Instance Attribute Details

#is_primaryBoolean

When true, this Boolean value indicates the primary session for the specified resource.

Returns:

  • (Boolean)


13607
13608
13609
13610
13611
13612
13613
# File 'gems/aws-sdk-lightsail/lib/aws-sdk-lightsail/types.rb', line 13607

class Session < Struct.new(
  :name,
  :url,
  :is_primary)
  SENSITIVE = [:url]
  include Aws::Structure
end

#nameString

The session name.

Returns:

  • (String)


13607
13608
13609
13610
13611
13612
13613
# File 'gems/aws-sdk-lightsail/lib/aws-sdk-lightsail/types.rb', line 13607

class Session < Struct.new(
  :name,
  :url,
  :is_primary)
  SENSITIVE = [:url]
  include Aws::Structure
end

#urlString

The session URL.

Returns:

  • (String)


13607
13608
13609
13610
13611
13612
13613
# File 'gems/aws-sdk-lightsail/lib/aws-sdk-lightsail/types.rb', line 13607

class Session < Struct.new(
  :name,
  :url,
  :is_primary)
  SENSITIVE = [:url]
  include Aws::Structure
end