Class: Aws::ElasticsearchService::Types::LogPublishingOption
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElasticsearchService::Types::LogPublishingOption
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-elasticsearchservice/types.rb
Overview
Note:
When making an API call, you may pass LogPublishingOption data as a hash:
{
cloud_watch_logs_log_group_arn: "CloudWatchLogsLogGroupArn",
enabled: false,
}
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.
3405 3406 3407 3408 3409 3410 |
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 3405 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.
3405 3406 3407 3408 3409 3410 |
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 3405 class LogPublishingOption < Struct.new( :cloud_watch_logs_log_group_arn, :enabled) SENSITIVE = [] include Aws::Structure end |