Class PutSubscriptionFilterRequest

    • Method Detail

      • logGroupName

        public final String logGroupName()

        The name of the log group.

        Returns:
        The name of the log group.
      • filterName

        public final String filterName()

        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:
        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.
      • filterPattern

        public final String filterPattern()

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

        Returns:
        A filter pattern for subscribing to a filtered stream of log events.
      • destinationArn

        public final 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.

          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:
        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.

      • roleArn

        public final 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.

        Returns:
        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.
      • distribution

        public final Distribution distribution()

        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.

        If the service returns an enum value that is not available in the current SDK version, distribution will return Distribution.UNKNOWN_TO_SDK_VERSION. The raw value returned by the service is available from distributionAsString().

        Returns:
        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.
        See Also:
        Distribution
      • distributionAsString

        public final String distributionAsString()

        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.

        If the service returns an enum value that is not available in the current SDK version, distribution will return Distribution.UNKNOWN_TO_SDK_VERSION. The raw value returned by the service is available from distributionAsString().

        Returns:
        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.
        See Also:
        Distribution
      • applyOnTransformedLogs

        public final Boolean applyOnTransformedLogs()

        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.

        Returns:
        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.

      • fieldSelectionCriteria

        public final String fieldSelectionCriteria()

        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.

        Returns:
        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.
      • hasEmitSystemFields

        public final boolean hasEmitSystemFields()
        For responses, this returns true if the service returned a value for the EmitSystemFields property. This DOES NOT check that the value is non-empty (for which, you should check the isEmpty() method on the property). This is useful because the SDK will never return a null collection or map, but you may need to differentiate between the service returning nothing (or null) and the service returning an empty collection or map. For requests, this returns true if a value for the property was specified in the request builder, and false if a value was not specified.
      • emitSystemFields

        public final List<String> emitSystemFields()

        A list of system fields to include in the log events sent to the subscription destination. Valid values are @aws.account and @aws.region. These fields provide source information for centralized log data in the forwarded payload.

        Attempts to modify the collection returned by this method will result in an UnsupportedOperationException.

        This method will never return null. If you would like to know whether the service returned this field (so that you can differentiate between null and empty), you can use the hasEmitSystemFields() method.

        Returns:
        A list of system fields to include in the log events sent to the subscription destination. Valid values are @aws.account and @aws.region. These fields provide source information for centralized log data in the forwarded payload.
      • toString

        public final String toString()
        Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be redacted from this string using a placeholder value.
        Overrides:
        toString in class Object