Class: Aws::ElasticsearchService::Types::LogPublishingOption

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

Overview

Log Publishing option that is set for given domain. Attributes and their details: * CloudWatchLogsLogGroupArn: ARN of the Cloudwatch log group to which

log needs to be published.
  • Enabled: Whether the log publishing for given log type is enabled or not

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#cloud_watch_logs_log_group_arnString

ARN of the Cloudwatch log group to which log needs to be published.

Returns:

  • (String)


3093
3094
3095
3096
3097
3098
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 3093

class LogPublishingOption < Struct.new(
  :cloud_watch_logs_log_group_arn,
  :enabled)
  SENSITIVE = []
  include Aws::Structure
end

#enabledBoolean

Specifies whether given log publishing option is enabled or not.

Returns:

  • (Boolean)


3093
3094
3095
3096
3097
3098
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 3093

class LogPublishingOption < Struct.new(
  :cloud_watch_logs_log_group_arn,
  :enabled)
  SENSITIVE = []
  include Aws::Structure
end