interface FilterProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.Lambda.CfnEventSourceMapping.FilterProperty |
Java | software.amazon.awscdk.services.lambda.CfnEventSourceMapping.FilterProperty |
Python | aws_cdk.aws_lambda.CfnEventSourceMapping.FilterProperty |
TypeScript | @aws-cdk/aws-lambda » CfnEventSourceMapping » FilterProperty |
A structure within a FilterCriteria
object that defines an event filtering pattern.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as lambda from '@aws-cdk/aws-lambda';
const filterProperty: lambda.CfnEventSourceMapping.FilterProperty = {
pattern: 'pattern',
};
Properties
Name | Type | Description |
---|---|---|
pattern? | string | A filter pattern. |
pattern?
Type:
string
(optional)
A filter pattern.
For more information on the syntax of a filter pattern, see Filter rule syntax .