Class: Aws::CodeCatalyst::Types::DevEnvironmentAccessDetails

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-codecatalyst/lib/aws-sdk-codecatalyst/types.rb

Overview

Information about connection details for a Dev Environment.

Constant Summary collapse

SENSITIVE =
[:stream_url, :token_value]

Instance Attribute Summary collapse

Instance Attribute Details

#stream_urlString

The URL used to send commands to and from the Dev Environment.

Returns:

  • (String)


606
607
608
609
610
611
# File 'gems/aws-sdk-codecatalyst/lib/aws-sdk-codecatalyst/types.rb', line 606

class DevEnvironmentAccessDetails < Struct.new(
  :stream_url,
  :token_value)
  SENSITIVE = [:stream_url, :token_value]
  include Aws::Structure
end

#token_valueString

An encrypted token value that contains session and caller information used to authenticate the connection.

Returns:

  • (String)


606
607
608
609
610
611
# File 'gems/aws-sdk-codecatalyst/lib/aws-sdk-codecatalyst/types.rb', line 606

class DevEnvironmentAccessDetails < Struct.new(
  :stream_url,
  :token_value)
  SENSITIVE = [:stream_url, :token_value]
  include Aws::Structure
end