CopyableBuilder<PutSubscriptionFilterRequest.Builder,PutSubscriptionFilterRequest>
, SdkBuilder<PutSubscriptionFilterRequest.Builder,PutSubscriptionFilterRequest>
public static interface PutSubscriptionFilterRequest.Builder extends CopyableBuilder<PutSubscriptionFilterRequest.Builder,PutSubscriptionFilterRequest>
Modifier and Type | Method | Description |
---|---|---|
PutSubscriptionFilterRequest.Builder |
destinationArn(String destinationArn) |
The ARN of the destination to deliver matching log events to.
|
PutSubscriptionFilterRequest.Builder |
distribution(String distribution) |
The method used to distribute log data to the destination, when the destination is an Amazon Kinesis stream.
|
PutSubscriptionFilterRequest.Builder |
distribution(Distribution distribution) |
The method used to distribute log data to the destination, when the destination is an Amazon Kinesis stream.
|
PutSubscriptionFilterRequest.Builder |
filterName(String filterName) |
A name for the subscription filter.
|
PutSubscriptionFilterRequest.Builder |
filterPattern(String filterPattern) |
A filter pattern for subscribing to a filtered stream of log events.
|
PutSubscriptionFilterRequest.Builder |
logGroupName(String logGroupName) |
The name of the log group.
|
PutSubscriptionFilterRequest.Builder |
roleArn(String roleArn) |
The ARN of an IAM role that grants CloudWatch Logs permissions to deliver ingested log events to the
destination stream.
|
copy
apply, build
PutSubscriptionFilterRequest.Builder logGroupName(String logGroupName)
The name of the log group.
logGroupName
- The name of the log group.PutSubscriptionFilterRequest.Builder filterName(String filterName)
A name for the subscription filter. If you are updating an existing filter, you must specify the correct name
in filterName
. Otherwise, the call will fail because you cannot associate a second filter with a
log group. To find the name of the filter currently associated with a log group, use
DescribeSubscriptionFilters.
filterName
- A name for the subscription filter. If you are updating an existing filter, you must specify the
correct name in filterName
. Otherwise, the call will fail because you cannot associate a
second filter with a log group. To find the name of the filter currently associated with a log group,
use DescribeSubscriptionFilters.PutSubscriptionFilterRequest.Builder filterPattern(String filterPattern)
A filter pattern for subscribing to a filtered stream of log events.
filterPattern
- A filter pattern for subscribing to a filtered stream of log events.PutSubscriptionFilterRequest.Builder destinationArn(String destinationArn)
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.
An Amazon Kinesis Firehose stream belonging to the same account as the subscription filter, for same-account delivery.
An AWS Lambda function belonging to the same account as the subscription filter, for same-account delivery.
destinationArn
- 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.
An Amazon Kinesis Firehose stream belonging to the same account as the subscription filter, for same-account delivery.
An AWS Lambda function belonging to the same account as the subscription filter, for same-account delivery.
PutSubscriptionFilterRequest.Builder roleArn(String roleArn)
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.
roleArn
- 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.PutSubscriptionFilterRequest.Builder distribution(String distribution)
The method used to distribute log data to the destination, when the destination is an Amazon Kinesis stream. By default, log data is grouped by log stream. For a more even distribution, you can group log data randomly.
distribution
- The method used to distribute log data to the destination, when the destination is an Amazon Kinesis
stream. By default, log data is grouped by log stream. For a more even distribution, you can group log
data randomly.Distribution
PutSubscriptionFilterRequest.Builder distribution(Distribution distribution)
The method used to distribute log data to the destination, when the destination is an Amazon Kinesis stream. By default, log data is grouped by log stream. For a more even distribution, you can group log data randomly.
distribution
- The method used to distribute log data to the destination, when the destination is an Amazon Kinesis
stream. By default, log data is grouped by log stream. For a more even distribution, you can group log
data randomly.Distribution
Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.