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
1914 1915 1916 1917 1918 1919 |
# File 'gems/aws-sdk-ssm/lib/aws-sdk-ssm/types.rb', line 1914 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.
1914 1915 1916 1917 1918 1919 |
# File 'gems/aws-sdk-ssm/lib/aws-sdk-ssm/types.rb', line 1914 class CloudWatchOutputConfig < Struct.new( :cloud_watch_log_group_name, :cloud_watch_output_enabled) SENSITIVE = [] include Aws::Structure end |