PutSubscriptionFilterRequest
public struct PutSubscriptionFilterRequest : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
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 delivery 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.
Declaration
Swift
public let destinationArn: 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 stream.
Declaration
Swift
public let distribution: Distribution?
-
A name for the subscription filter. If you are updating an existing filter, you must specify the correct name in filterName. Otherwise, the call fails 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.
Declaration
Swift
public let filterName: String
-
A filter pattern for subscribing to a filtered stream of log events.
Declaration
Swift
public let filterPattern: String
-
The name of the log group.
Declaration
Swift
public let logGroupName: 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.
Declaration
Swift
public let roleArn: String?
-
Undocumented
Declaration
Swift
public init(destinationArn: String, distribution: Distribution? = nil, filterName: String, filterPattern: String, logGroupName: String, roleArn: String? = nil)
-
Declaration
Swift
public func validate(name: String) throws