interface FilterCriterionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.RTBFabric.Mixins.CfnLinkPropsMixin.FilterCriterionProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsrtbfabric/mixins#CfnLinkPropsMixin_FilterCriterionProperty |
Java | software.amazon.awscdk.mixins.preview.services.rtbfabric.mixins.CfnLinkPropsMixin.FilterCriterionProperty |
Python | aws_cdk.mixins_preview.aws_rtbfabric.mixins.CfnLinkPropsMixin.FilterCriterionProperty |
TypeScript | @aws-cdk/mixins-preview » aws_rtbfabric » mixins » 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 { mixins as rtbfabric_mixins } from '@aws-cdk/mixins-preview/aws-rtbfabric';
const filterCriterionProperty: rtbfabric_mixins.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