Class: Aws::EMR::Types::S3MonitoringConfiguration

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-emr/types.rb

Overview

The Amazon S3 configuration for monitoring log publishing. You can configure your step to send log information to Amazon S3. When it’s specified, it takes precedence over the cluster’s logging configuration. If you don’t specify this configuration entirely, or omit individual fields, EMR falls back to cluster-level logging behavior.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#encryption_key_arnString

The KMS key ARN to encrypt the logs published to the given Amazon S3 destination.

Returns:

  • (String)


6050
6051
6052
6053
6054
6055
# File 'lib/aws-sdk-emr/types.rb', line 6050

class S3MonitoringConfiguration < Struct.new(
  :log_uri,
  :encryption_key_arn)
  SENSITIVE = []
  include Aws::Structure
end

#log_uriString

The Amazon S3 destination URI for log publishing.

Returns:

  • (String)


6050
6051
6052
6053
6054
6055
# File 'lib/aws-sdk-emr/types.rb', line 6050

class S3MonitoringConfiguration < Struct.new(
  :log_uri,
  :encryption_key_arn)
  SENSITIVE = []
  include Aws::Structure
end