Class: Aws::CloudWatchLogs::Types::PutSubscriptionFilterRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudWatchLogs::Types::PutSubscriptionFilterRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-cloudwatchlogs/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#apply_on_transformed_logs ⇒ Boolean
This parameter is valid only for log groups that have an active log transformer.
-
#destination_arn ⇒ String
The ARN of the destination to deliver matching log events to.
-
#distribution ⇒ String
The method used to distribute log data to the destination.
-
#filter_name ⇒ String
A name for the subscription filter.
-
#filter_pattern ⇒ String
A filter pattern for subscribing to a filtered stream of log events.
-
#log_group_name ⇒ String
The name of the log group.
-
#role_arn ⇒ String
The ARN of an IAM role that grants CloudWatch Logs permissions to deliver ingested log events to the destination stream.
Instance Attribute Details
#apply_on_transformed_logs ⇒ Boolean
This parameter is valid only for log groups that have an active log transformer. For more information about log transformers, see [PutTransformer].
If the log group uses either a log-group level or account-level transformer, and you specify ‘true`, the subscription filter will be applied on the transformed version of the log events instead of the original ingested log events.
[1]: docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_PutTransformer.html
6576 6577 6578 6579 6580 6581 6582 6583 6584 6585 6586 |
# File 'lib/aws-sdk-cloudwatchlogs/types.rb', line 6576 class PutSubscriptionFilterRequest < Struct.new( :log_group_name, :filter_name, :filter_pattern, :destination_arn, :role_arn, :distribution, :apply_on_transformed_logs) SENSITIVE = [] include Aws::Structure end |
#destination_arn ⇒ String
The ARN of the destination to deliver matching log events to. Currently, the supported destinations are:
-
An Amazon Kinesis stream belonging to the same account as the subscription filter, for same-account delivery.
-
A logical destination (specified using an ARN) belonging to a different account, for cross-account delivery.
If you’re setting up a cross-account subscription, the destination must have an IAM policy associated with it. The IAM policy must allow the sender to send logs to the destination. For more information, see [PutDestinationPolicy].
-
A Kinesis Data Firehose delivery stream belonging to the same account as the subscription filter, for same-account delivery.
-
A Lambda function belonging to the same account as the subscription filter, for same-account delivery.
[1]: docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_PutDestinationPolicy.html
6576 6577 6578 6579 6580 6581 6582 6583 6584 6585 6586 |
# File 'lib/aws-sdk-cloudwatchlogs/types.rb', line 6576 class PutSubscriptionFilterRequest < Struct.new( :log_group_name, :filter_name, :filter_pattern, :destination_arn, :role_arn, :distribution, :apply_on_transformed_logs) SENSITIVE = [] include Aws::Structure end |
#distribution ⇒ String
The method used to distribute log data to the destination. By default, log data is grouped by log stream, but the grouping can be set to random for a more even distribution. This property is only applicable when the destination is an Amazon Kinesis data stream.
6576 6577 6578 6579 6580 6581 6582 6583 6584 6585 6586 |
# File 'lib/aws-sdk-cloudwatchlogs/types.rb', line 6576 class PutSubscriptionFilterRequest < Struct.new( :log_group_name, :filter_name, :filter_pattern, :destination_arn, :role_arn, :distribution, :apply_on_transformed_logs) SENSITIVE = [] include Aws::Structure end |
#filter_name ⇒ String
A name for the subscription filter. If you are updating an existing filter, you must specify the correct name in ‘filterName`. To find the name of the filter currently associated with a log group, use [DescribeSubscriptionFilters].
[1]: docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_DescribeSubscriptionFilters.html
6576 6577 6578 6579 6580 6581 6582 6583 6584 6585 6586 |
# File 'lib/aws-sdk-cloudwatchlogs/types.rb', line 6576 class PutSubscriptionFilterRequest < Struct.new( :log_group_name, :filter_name, :filter_pattern, :destination_arn, :role_arn, :distribution, :apply_on_transformed_logs) SENSITIVE = [] include Aws::Structure end |
#filter_pattern ⇒ String
A filter pattern for subscribing to a filtered stream of log events.
6576 6577 6578 6579 6580 6581 6582 6583 6584 6585 6586 |
# File 'lib/aws-sdk-cloudwatchlogs/types.rb', line 6576 class PutSubscriptionFilterRequest < Struct.new( :log_group_name, :filter_name, :filter_pattern, :destination_arn, :role_arn, :distribution, :apply_on_transformed_logs) SENSITIVE = [] include Aws::Structure end |
#log_group_name ⇒ String
The name of the log group.
6576 6577 6578 6579 6580 6581 6582 6583 6584 6585 6586 |
# File 'lib/aws-sdk-cloudwatchlogs/types.rb', line 6576 class PutSubscriptionFilterRequest < Struct.new( :log_group_name, :filter_name, :filter_pattern, :destination_arn, :role_arn, :distribution, :apply_on_transformed_logs) SENSITIVE = [] include Aws::Structure end |
#role_arn ⇒ String
The ARN of an IAM role that grants CloudWatch Logs permissions to deliver ingested log events to the destination stream. You don’t need to provide the ARN when you are working with a logical destination for cross-account delivery.
6576 6577 6578 6579 6580 6581 6582 6583 6584 6585 6586 |
# File 'lib/aws-sdk-cloudwatchlogs/types.rb', line 6576 class PutSubscriptionFilterRequest < Struct.new( :log_group_name, :filter_name, :filter_pattern, :destination_arn, :role_arn, :distribution, :apply_on_transformed_logs) SENSITIVE = [] include Aws::Structure end |