Class: Aws::SSM::Types::CloudWatchOutputConfig
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::SSM::Types::CloudWatchOutputConfig
 
- Defined in:
- gems/aws-sdk-ssm/lib/aws-sdk-ssm/types.rb
Overview
Configuration options for sending command output to Amazon CloudWatch Logs.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #cloud_watch_log_group_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The name of the CloudWatch Logs log group where you want to send command output. 
- 
  
    
      #cloud_watch_output_enabled  ⇒ Boolean 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Enables Systems Manager to send command output to CloudWatch Logs. 
Instance Attribute Details
#cloud_watch_log_group_name ⇒ String
The name of the CloudWatch Logs log group where you want to send command output. If you don't specify a group name, Amazon Web Services Systems Manager automatically creates a log group for you. The log group uses the following naming format:
aws/ssm/SystemsManagerDocumentName
| 1941 1942 1943 1944 1945 1946 | # File 'gems/aws-sdk-ssm/lib/aws-sdk-ssm/types.rb', line 1941 class CloudWatchOutputConfig < Struct.new( :cloud_watch_log_group_name, :cloud_watch_output_enabled) SENSITIVE = [] include Aws::Structure end | 
#cloud_watch_output_enabled ⇒ Boolean
Enables Systems Manager to send command output to CloudWatch Logs.
| 1941 1942 1943 1944 1945 1946 | # File 'gems/aws-sdk-ssm/lib/aws-sdk-ssm/types.rb', line 1941 class CloudWatchOutputConfig < Struct.new( :cloud_watch_log_group_name, :cloud_watch_output_enabled) SENSITIVE = [] include Aws::Structure end |