Class: Aws::ElasticsearchService::Types::LogPublishingOption
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElasticsearchService::Types::LogPublishingOption
- 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
-
#cloud_watch_logs_log_group_arn ⇒ String
ARN of the Cloudwatch log group to which log needs to be published.
-
#enabled ⇒ Boolean
Specifies whether given log publishing option is enabled or not.
Instance Attribute Details
#cloud_watch_logs_log_group_arn ⇒ String
ARN of the Cloudwatch log group to which log needs to be published.
3090 3091 3092 3093 3094 3095 |
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 3090 class LogPublishingOption < Struct.new( :cloud_watch_logs_log_group_arn, :enabled) SENSITIVE = [] include Aws::Structure end |
#enabled ⇒ Boolean
Specifies whether given log publishing option is enabled or not.
3090 3091 3092 3093 3094 3095 |
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 3090 class LogPublishingOption < Struct.new( :cloud_watch_logs_log_group_arn, :enabled) SENSITIVE = [] include Aws::Structure end |