Class: Aws::ECS::Types::Session
- Inherits:
-
Struct
- Object
- Struct
- Aws::ECS::Types::Session
- Defined in:
- gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb
Overview
The details for the execute command session.
Constant Summary collapse
- SENSITIVE =
[:token_value]
Instance Attribute Summary collapse
-
#session_id ⇒ String
The ID of the execute command session.
-
#stream_url ⇒ String
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.
-
#token_value ⇒ String
An encrypted token value containing session and caller information.
Instance Attribute Details
#session_id ⇒ String
The ID of the execute command session.
11377 11378 11379 11380 11381 11382 11383 |
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 11377 class Session < Struct.new( :session_id, :stream_url, :token_value) SENSITIVE = [:token_value] include Aws::Structure end |
#stream_url ⇒ String
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.
11377 11378 11379 11380 11381 11382 11383 |
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 11377 class Session < Struct.new( :session_id, :stream_url, :token_value) SENSITIVE = [:token_value] include Aws::Structure end |
#token_value ⇒ String
An encrypted token value containing session and caller information. It's used to authenticate the connection to the container.
11377 11378 11379 11380 11381 11382 11383 |
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 11377 class Session < Struct.new( :session_id, :stream_url, :token_value) SENSITIVE = [:token_value] include Aws::Structure end |