Class: Aws::EMR::Types::CloudWatchLogConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::EMR::Types::CloudWatchLogConfiguration
- Defined in:
- gems/aws-sdk-emr/lib/aws-sdk-emr/types.rb
Overview
Holds CloudWatch log configuration settings and metadata that specify settings like log files to monitor and where to send them.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#enabled ⇒ Boolean
Specifies if CloudWatch logging is enabled.
-
#encryption_key_arn ⇒ String
The ARN of the encryption key used to encrypt the logs.
-
#log_group_name ⇒ String
The name of the CloudWatch log group where logs are published.
-
#log_stream_name_prefix ⇒ String
The prefix of the log stream name.
-
#log_types ⇒ Hash<String,Array<String>>
A map of log types to file names for publishing logs to the standard output or standard error streams for CloudWatch.
Instance Attribute Details
#enabled ⇒ Boolean
Specifies if CloudWatch logging is enabled.
596 597 598 599 600 601 602 603 604 |
# File 'gems/aws-sdk-emr/lib/aws-sdk-emr/types.rb', line 596 class CloudWatchLogConfiguration < Struct.new( :enabled, :log_group_name, :log_stream_name_prefix, :encryption_key_arn, :log_types) SENSITIVE = [] include Aws::Structure end |
#encryption_key_arn ⇒ String
The ARN of the encryption key used to encrypt the logs.
596 597 598 599 600 601 602 603 604 |
# File 'gems/aws-sdk-emr/lib/aws-sdk-emr/types.rb', line 596 class CloudWatchLogConfiguration < Struct.new( :enabled, :log_group_name, :log_stream_name_prefix, :encryption_key_arn, :log_types) SENSITIVE = [] include Aws::Structure end |
#log_group_name ⇒ String
The name of the CloudWatch log group where logs are published.
596 597 598 599 600 601 602 603 604 |
# File 'gems/aws-sdk-emr/lib/aws-sdk-emr/types.rb', line 596 class CloudWatchLogConfiguration < Struct.new( :enabled, :log_group_name, :log_stream_name_prefix, :encryption_key_arn, :log_types) SENSITIVE = [] include Aws::Structure end |
#log_stream_name_prefix ⇒ String
The prefix of the log stream name.
596 597 598 599 600 601 602 603 604 |
# File 'gems/aws-sdk-emr/lib/aws-sdk-emr/types.rb', line 596 class CloudWatchLogConfiguration < Struct.new( :enabled, :log_group_name, :log_stream_name_prefix, :encryption_key_arn, :log_types) SENSITIVE = [] include Aws::Structure end |
#log_types ⇒ Hash<String,Array<String>>
A map of log types to file names for publishing logs to the standard output or standard error streams for CloudWatch. Valid log types include STEP_LOGS, SPARK_DRIVER, and SPARK_EXECUTOR. Valid file names for each type include STDOUT and STDERR.
596 597 598 599 600 601 602 603 604 |
# File 'gems/aws-sdk-emr/lib/aws-sdk-emr/types.rb', line 596 class CloudWatchLogConfiguration < Struct.new( :enabled, :log_group_name, :log_stream_name_prefix, :encryption_key_arn, :log_types) SENSITIVE = [] include Aws::Structure end |