Class: Aws::CodeCatalyst::Types::ExecuteCommandSessionConfiguration
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::CodeCatalyst::Types::ExecuteCommandSessionConfiguration
 
- Defined in:
- gems/aws-sdk-codecatalyst/lib/aws-sdk-codecatalyst/types.rb
Overview
Information about the commands that will be run on a Dev Environment when an SSH session begins.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #arguments  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    An array of arguments containing arguments and members. 
- 
  
    
      #command  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The command used at the beginning of the SSH session to a Dev Environment. 
Instance Attribute Details
#arguments ⇒ Array<String>
An array of arguments containing arguments and members.
| 927 928 929 930 931 932 | # File 'gems/aws-sdk-codecatalyst/lib/aws-sdk-codecatalyst/types.rb', line 927 class ExecuteCommandSessionConfiguration < Struct.new( :command, :arguments) SENSITIVE = [] include Aws::Structure end | 
#command ⇒ String
The command used at the beginning of the SSH session to a Dev Environment.
| 927 928 929 930 931 932 | # File 'gems/aws-sdk-codecatalyst/lib/aws-sdk-codecatalyst/types.rb', line 927 class ExecuteCommandSessionConfiguration < Struct.new( :command, :arguments) SENSITIVE = [] include Aws::Structure end |