interface FilterProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.RTBFabric.CfnLink.FilterProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsrtbfabric#CfnLink_FilterProperty |
Java | software.amazon.awscdk.services.rtbfabric.CfnLink.FilterProperty |
Python | aws_cdk.aws_rtbfabric.CfnLink.FilterProperty |
TypeScript | aws-cdk-lib » aws_rtbfabric » CfnLink » FilterProperty |
Describes the configuration of a filter.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_rtbfabric as rtbfabric } from 'aws-cdk-lib';
const filterProperty: rtbfabric.CfnLink.FilterProperty = {
criteria: [{
path: 'path',
values: ['values'],
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| criteria | IResolvable | (IResolvable | Filter)[] | Describes the criteria for a filter. |
criteria
Type:
IResolvable | (IResolvable | Filter)[]
Describes the criteria for a filter.

.NET
Go
Java
Python
TypeScript