Interface CfnSubscriptionFilterProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnSubscriptionFilterProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:38.092Z") @Stability(Stable) public interface CfnSubscriptionFilterProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnSubscriptionFilter.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.logs.*;
 CfnSubscriptionFilterProps cfnSubscriptionFilterProps = CfnSubscriptionFilterProps.builder()
         .destinationArn("destinationArn")
         .filterPattern("filterPattern")
         .logGroupName("logGroupName")
         // the properties below are optional
         .distribution("distribution")
         .filterName("filterName")
         .roleArn("roleArn")
         .build();
 
  • Method Details

    • getDestinationArn

      @Stability(Stable) @NotNull String getDestinationArn()
      The Amazon Resource Name (ARN) of the destination.
    • getFilterPattern

      @Stability(Stable) @NotNull String getFilterPattern()
      The filtering expressions that restrict what gets delivered to the destination AWS resource.

      For more information about the filter pattern syntax, see Filter and Pattern Syntax .

    • getLogGroupName

      @Stability(Stable) @NotNull String getLogGroupName()
      The log group to associate with the subscription filter.

      All log events that are uploaded to this log group are filtered and delivered to the specified AWS resource if the filter pattern matches the log events.

    • getDistribution

      @Stability(Stable) @Nullable default String getDistribution()
      The method used to distribute log data to the destination, which can be either random or grouped by log stream.
    • getFilterName

      @Stability(Stable) @Nullable default String getFilterName()
      The name of the subscription filter.
    • getRoleArn

      @Stability(Stable) @Nullable default String getRoleArn()
      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.

    • builder

      @Stability(Stable) static CfnSubscriptionFilterProps.Builder builder()
      Returns:
      a CfnSubscriptionFilterProps.Builder of CfnSubscriptionFilterProps