interface FilterProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.RTBFabric.CfnLinkPropsMixin.FilterProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsrtbfabric#CfnLinkPropsMixin_FilterProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.rtbfabric.CfnLinkPropsMixin.FilterProperty |
Python | aws_cdk.cfn_property_mixins.aws_rtbfabric.CfnLinkPropsMixin.FilterProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_rtbfabric » CfnLinkPropsMixin » 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/cfn-property-mixins';
const filterProperty: rtbfabric.CfnLinkPropsMixin.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)[]
(optional)
Describes the criteria for a filter.

.NET
Go
Java
Python
TypeScript