interface FilterCriterionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.RTBFabric.CfnLinkPropsMixin.FilterCriterionProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsrtbfabric#CfnLinkPropsMixin_FilterCriterionProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.rtbfabric.CfnLinkPropsMixin.FilterCriterionProperty |
Python | aws_cdk.cfn_property_mixins.aws_rtbfabric.CfnLinkPropsMixin.FilterCriterionProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_rtbfabric » CfnLinkPropsMixin » 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/cfn-property-mixins';
const filterCriterionProperty: rtbfabric.CfnLinkPropsMixin.FilterCriterionProperty = {
path: 'path',
values: ['values'],
};
Properties
| Name | Type | Description |
|---|---|---|
| path? | string | The path to filter. |
| values? | string[] | The value to filter. |
path?
Type:
string
(optional)
The path to filter.
values?
Type:
string[]
(optional)
The value to filter.

.NET
Go
Java
Python
TypeScript