Class: Aws::Firehose::Types::CloudWatchLoggingOptions
- Inherits:
-
Struct
- Object
- Struct
- Aws::Firehose::Types::CloudWatchLoggingOptions
- Defined in:
- gems/aws-sdk-firehose/lib/aws-sdk-firehose/types.rb
Overview
Describes the Amazon CloudWatch logging options for your Firehose stream.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#enabled ⇒ Boolean
Enables or disables CloudWatch logging.
-
#log_group_name ⇒ String
The CloudWatch group name for logging.
-
#log_stream_name ⇒ String
The CloudWatch log stream name for logging.
Instance Attribute Details
#enabled ⇒ Boolean
Enables or disables CloudWatch logging.
678 679 680 681 682 683 684 |
# File 'gems/aws-sdk-firehose/lib/aws-sdk-firehose/types.rb', line 678 class CloudWatchLoggingOptions < Struct.new( :enabled, :log_group_name, :log_stream_name) SENSITIVE = [] include Aws::Structure end |
#log_group_name ⇒ String
The CloudWatch group name for logging. This value is required if CloudWatch logging is enabled.
678 679 680 681 682 683 684 |
# File 'gems/aws-sdk-firehose/lib/aws-sdk-firehose/types.rb', line 678 class CloudWatchLoggingOptions < Struct.new( :enabled, :log_group_name, :log_stream_name) SENSITIVE = [] include Aws::Structure end |
#log_stream_name ⇒ String
The CloudWatch log stream name for logging. This value is required if CloudWatch logging is enabled.
678 679 680 681 682 683 684 |
# File 'gems/aws-sdk-firehose/lib/aws-sdk-firehose/types.rb', line 678 class CloudWatchLoggingOptions < Struct.new( :enabled, :log_group_name, :log_stream_name) SENSITIVE = [] include Aws::Structure end |