Class: Aws::CodeCatalyst::Types::DevEnvironmentAccessDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeCatalyst::Types::DevEnvironmentAccessDetails
- Includes:
- Structure
- Defined in:
- 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
-
#stream_url ⇒ String
The URL used to send commands to and from the Dev Environment.
-
#token_value ⇒ String
An encrypted token value that contains session and caller information used to authenticate the connection.
Instance Attribute Details
#stream_url ⇒ String
The URL used to send commands to and from the Dev Environment.
606 607 608 609 610 611 |
# File '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_value ⇒ String
An encrypted token value that contains session and caller information used to authenticate the connection.
606 607 608 609 610 611 |
# File '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 |