interface FilterCriterionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.RTBFabric.CfnLink.FilterCriterionProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsrtbfabric#CfnLink_FilterCriterionProperty |
Java | software.amazon.awscdk.services.rtbfabric.CfnLink.FilterCriterionProperty |
Python | aws_cdk.aws_rtbfabric.CfnLink.FilterCriterionProperty |
TypeScript | aws-cdk-lib » aws_rtbfabric » CfnLink » FilterCriterionProperty |
Describes the criteria for 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 filterCriterionProperty: rtbfabric.CfnLink.FilterCriterionProperty = {
path: 'path',
values: ['values'],
};
Properties
| Name | Type | Description |
|---|---|---|
| path | string | The path to filter. |
| values | string[] | The value to filter. |
path
Type:
string
The path to filter.
values
Type:
string[]
The value to filter.

.NET
Go
Java
Python
TypeScript