class
Amazonite::CloudWatchLogs::PutSubscriptionFilterRequest
- Amazonite::CloudWatchLogs::PutSubscriptionFilterRequest
- Reference
- Object
Included Modules
- JSON::Serializable
Defined in:
cloudwatch_logs/put_subscription_filter_request.crConstructors
- .new(log_group_name : String, filter_name : String, filter_pattern : String, destination_arn : String, role_arn : String | Nil = nil, distribution : Distribution | Nil = nil, apply_on_transformed_logs : Bool | Nil = nil, field_selection_criteria : String | Nil = nil, emit_system_fields : Array(String) | Nil = nil)
- .new(pull : JSON::PullParser)
Instance Method Summary
-
#==(other : self)
Returns
trueif this reference is the same as other. -
#apply_on_transformed_logs : Bool | Nil
This parameter is valid only for log groups that have an active log transformer.
-
#apply_on_transformed_logs=(apply_on_transformed_logs : Bool | Nil)
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.
-
#destination_arn=(destination_arn : String)
The ARN of the destination to deliver matching log events to.
-
#distribution : Distribution | Nil
The method used to distribute log data to the destination.
-
#distribution=(distribution : Distribution | Nil)
The method used to distribute log data to the destination.
-
#emit_system_fields : Array(String) | Nil
A list of system fields to include in the log events sent to the subscription destination.
-
#emit_system_fields=(emit_system_fields : Array(String) | Nil)
A list of system fields to include in the log events sent to the subscription destination.
-
#field_selection_criteria : String | Nil
A filter expression that specifies which log events should be processed by this subscription filter based on system fields such as source account and source region.
-
#field_selection_criteria=(field_selection_criteria : String | Nil)
A filter expression that specifies which log events should be processed by this subscription filter based on system fields such as source account and source region.
-
#filter_name : String
A name for the subscription filter.
-
#filter_name=(filter_name : String)
A name for the subscription filter.
-
#filter_pattern : String
A filter pattern for subscribing to a filtered stream of log events.
-
#filter_pattern=(filter_pattern : String)
A filter pattern for subscribing to a filtered stream of log events.
-
#hash(hasher)
See
Object#hash(hasher) -
#log_group_name : String
The name of the log group.
-
#log_group_name=(log_group_name : String)
The name of the log group.
-
#role_arn : String | Nil
The ARN of an IAM role that grants CloudWatch Logs permissions to deliver ingested log events to the destination stream.
-
#role_arn=(role_arn : String | Nil)
The ARN of an IAM role that grants CloudWatch Logs permissions to deliver ingested log events to the destination stream.
- #validate! : Nil
Constructor Detail
Instance Method Detail
Returns true if this reference is the same as other. Invokes same?.
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.
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.
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.
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.
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.
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.
A list of system fields to include in the log events sent to the subscription destination. Valid
values are @aws.account, @aws.region, and @source.log. These fields provide source
information for centralized log data in the forwarded payload.
A list of system fields to include in the log events sent to the subscription destination. Valid
values are @aws.account, @aws.region, and @source.log. These fields provide source
information for centralized log data in the forwarded payload.
A filter expression that specifies which log events should be processed by this subscription
filter based on system fields such as source account and source region. Uses selection criteria
syntax with operators like =, !=, AND, OR, IN, NOT IN. Example: @aws.region NOT IN ["cn-north-1"] or @aws.account = "123456789012" AND @aws.region = "us-east-1". Maximum
length: 2000 characters.
A filter expression that specifies which log events should be processed by this subscription
filter based on system fields such as source account and source region. Uses selection criteria
syntax with operators like =, !=, AND, OR, IN, NOT IN. Example: @aws.region NOT IN ["cn-north-1"] or @aws.account = "123456789012" AND @aws.region = "us-east-1". Maximum
length: 2000 characters.
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.
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.
A filter pattern for subscribing to a filtered stream of log events.
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.
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.