Class: Aws::SSM::Types::CloudWatchOutputConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::SSM::Types::CloudWatchOutputConfig
- Includes:
- Aws::Structure
- Defined in:
- 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 `
1816 1817 1818 1819 1820 1821 |
# File 'lib/aws-sdk-ssm/types.rb', line 1816 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.
1816 1817 1818 1819 1820 1821 |
# File 'lib/aws-sdk-ssm/types.rb', line 1816 class CloudWatchOutputConfig < Struct.new( :cloud_watch_log_group_name, :cloud_watch_output_enabled) SENSITIVE = [] include Aws::Structure end |