Class CfnLink.FilterProperty
Describes the configuration of a filter.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.RTBFabric
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnLink.FilterProperty : CfnLink.IFilterProperty
Syntax (vb)
Public Class CfnLink.FilterProperty Implements CfnLink.IFilterProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.RTBFabric;
var filterProperty = new FilterProperty {
Criteria = new [] { new FilterCriterionProperty {
Path = "path",
Values = new [] { "values" }
} }
};
Synopsis
Constructors
| FilterProperty() | Describes the configuration of a filter. |
Properties
| Criteria | Describes the criteria for a filter. |
Constructors
FilterProperty()
Describes the configuration of a filter.
public FilterProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.RTBFabric;
var filterProperty = new FilterProperty {
Criteria = new [] { new FilterCriterionProperty {
Path = "path",
Values = new [] { "values" }
} }
};
Properties
Criteria
Describes the criteria for a filter.
public object Criteria { get; set; }