Class: Aws::ECS::Types::ExecuteCommandConfiguration
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::ECS::Types::ExecuteCommandConfiguration
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-ecs/types.rb
 
Overview
The details of the execute command configuration.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #kms_key_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Specify an Key Management Service key ID to encrypt the data between the local client and the container.
 - 
  
    
      #log_configuration  ⇒ Types::ExecuteCommandLogConfiguration 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The log configuration for the results of the execute command actions.
 - 
  
    
      #logging  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The log setting to use for redirecting logs for your execute command results.
 
Instance Attribute Details
#kms_key_id ⇒ String
Specify an Key Management Service key ID to encrypt the data between the local client and the container.
      4764 4765 4766 4767 4768 4769 4770  | 
    
      # File 'lib/aws-sdk-ecs/types.rb', line 4764 class ExecuteCommandConfiguration < Struct.new( :kms_key_id, :logging, :log_configuration) SENSITIVE = [] include Aws::Structure end  | 
  
#log_configuration ⇒ Types::ExecuteCommandLogConfiguration
The log configuration for the results of the execute command actions. The logs can be sent to CloudWatch Logs or an Amazon S3 bucket. When ‘logging=OVERRIDE` is specified, a `logConfiguration` must be provided.
      4764 4765 4766 4767 4768 4769 4770  | 
    
      # File 'lib/aws-sdk-ecs/types.rb', line 4764 class ExecuteCommandConfiguration < Struct.new( :kms_key_id, :logging, :log_configuration) SENSITIVE = [] include Aws::Structure end  | 
  
#logging ⇒ String
The log setting to use for redirecting logs for your execute command results. The following log settings are available.
- 
‘NONE`: The execute command session is not logged.
 - 
‘DEFAULT`: The `awslogs` configuration in the task definition is used. If no logging parameter is specified, it defaults to this value. If no `awslogs` log driver is configured in the task definition, the output won’t be logged.
 - 
‘OVERRIDE`: Specify the logging details as a part of `logConfiguration`. If the `OVERRIDE` logging option is specified, the `logConfiguration` is required.
 
      4764 4765 4766 4767 4768 4769 4770  | 
    
      # File 'lib/aws-sdk-ecs/types.rb', line 4764 class ExecuteCommandConfiguration < Struct.new( :kms_key_id, :logging, :log_configuration) SENSITIVE = [] include Aws::Structure end  |