Class: Aws::ECS::Types::Session

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-ecs/types.rb

Overview

The details for the execute command session.

Constant Summary collapse

SENSITIVE =
[:token_value]

Instance Attribute Summary collapse

Instance Attribute Details

#session_idString

The ID of the execute command session.

Returns:

  • (String)


9789
9790
9791
9792
9793
9794
9795
# File 'lib/aws-sdk-ecs/types.rb', line 9789

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

#stream_urlString

A URL to the managed agent on the container that the SSM Session Manager client uses to send commands and receive output from the container.

Returns:

  • (String)


9789
9790
9791
9792
9793
9794
9795
# File 'lib/aws-sdk-ecs/types.rb', line 9789

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

#token_valueString

An encrypted token value containing session and caller information. It’s used to authenticate the connection to the container.

Returns:

  • (String)


9789
9790
9791
9792
9793
9794
9795
# File 'lib/aws-sdk-ecs/types.rb', line 9789

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