Class: Aws::CloudWatchLogs::Types::PutSubscriptionFilterRequest

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-cloudwatchlogs/lib/aws-sdk-cloudwatchlogs/types.rb

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#destination_arnString

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.

Returns:

  • (String)


4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
# File 'gems/aws-sdk-cloudwatchlogs/lib/aws-sdk-cloudwatchlogs/types.rb', line 4251

class PutSubscriptionFilterRequest < Struct.new(
  :log_group_name,
  :filter_name,
  :filter_pattern,
  :destination_arn,
  :role_arn,
  :distribution)
  SENSITIVE = []
  include Aws::Structure
end

#distributionString

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.

Returns:

  • (String)


4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
# File 'gems/aws-sdk-cloudwatchlogs/lib/aws-sdk-cloudwatchlogs/types.rb', line 4251

class PutSubscriptionFilterRequest < Struct.new(
  :log_group_name,
  :filter_name,
  :filter_pattern,
  :destination_arn,
  :role_arn,
  :distribution)
  SENSITIVE = []
  include Aws::Structure
end

#filter_nameString

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.

Returns:

  • (String)


4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
# File 'gems/aws-sdk-cloudwatchlogs/lib/aws-sdk-cloudwatchlogs/types.rb', line 4251

class PutSubscriptionFilterRequest < Struct.new(
  :log_group_name,
  :filter_name,
  :filter_pattern,
  :destination_arn,
  :role_arn,
  :distribution)
  SENSITIVE = []
  include Aws::Structure
end

#filter_patternString

A filter pattern for subscribing to a filtered stream of log events.

Returns:

  • (String)


4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
# File 'gems/aws-sdk-cloudwatchlogs/lib/aws-sdk-cloudwatchlogs/types.rb', line 4251

class PutSubscriptionFilterRequest < Struct.new(
  :log_group_name,
  :filter_name,
  :filter_pattern,
  :destination_arn,
  :role_arn,
  :distribution)
  SENSITIVE = []
  include Aws::Structure
end

#log_group_nameString

The name of the log group.

Returns:

  • (String)


4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
# File 'gems/aws-sdk-cloudwatchlogs/lib/aws-sdk-cloudwatchlogs/types.rb', line 4251

class PutSubscriptionFilterRequest < Struct.new(
  :log_group_name,
  :filter_name,
  :filter_pattern,
  :destination_arn,
  :role_arn,
  :distribution)
  SENSITIVE = []
  include Aws::Structure
end

#role_arnString

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.

Returns:

  • (String)


4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
# File 'gems/aws-sdk-cloudwatchlogs/lib/aws-sdk-cloudwatchlogs/types.rb', line 4251

class PutSubscriptionFilterRequest < Struct.new(
  :log_group_name,
  :filter_name,
  :filter_pattern,
  :destination_arn,
  :role_arn,
  :distribution)
  SENSITIVE = []
  include Aws::Structure
end