Class CfnFilterPropsMixin.MapFilterProperty
An object that describes details of a map filter.
Implements
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.InspectorV2
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnFilterPropsMixin.MapFilterProperty : CfnFilterPropsMixin.IMapFilterProperty
Syntax (vb)
Public Class CfnFilterPropsMixin.MapFilterProperty Implements CfnFilterPropsMixin.IMapFilterProperty
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.CfnPropertyMixins.AWS.InspectorV2;
var mapFilterProperty = new MapFilterProperty {
Comparison = "comparison",
Key = "key",
Value = "value"
};
Synopsis
Constructors
| MapFilterProperty() | An object that describes details of a map filter. |
Properties
| Comparison | The operator to use when comparing values in the filter. |
| Key | The tag key used in the filter. |
| Value | The tag value used in the filter. |
Constructors
MapFilterProperty()
An object that describes details of a map filter.
public MapFilterProperty()
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.CfnPropertyMixins.AWS.InspectorV2;
var mapFilterProperty = new MapFilterProperty {
Comparison = "comparison",
Key = "key",
Value = "value"
};
Properties
Comparison
The operator to use when comparing values in the filter.
public string? Comparison { get; set; }
Property Value
Remarks
Key
The tag key used in the filter.
public string? Key { get; set; }
Property Value
Remarks
Value
The tag value used in the filter.
public string? Value { get; set; }