interface MapFilterProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.InspectorV2.CfnFilterPropsMixin.MapFilterProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsinspectorv2#CfnFilterPropsMixin_MapFilterProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.inspectorv2.CfnFilterPropsMixin.MapFilterProperty |
Python | aws_cdk.cfn_property_mixins.aws_inspectorv2.CfnFilterPropsMixin.MapFilterProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_inspectorv2 » CfnFilterPropsMixin » MapFilterProperty |
An object that describes details of a map filter.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_inspectorv2 as inspectorv2 } from '@aws-cdk/cfn-property-mixins';
const mapFilterProperty: inspectorv2.CfnFilterPropsMixin.MapFilterProperty = {
comparison: 'comparison',
key: 'key',
value: 'value',
};
Properties
| Name | Type | Description |
|---|---|---|
| comparison? | string | The operator to use when comparing values in the filter. |
| key? | string | The tag key used in the filter. |
| value? | string | The tag value used in the filter. |
comparison?
Type:
string
(optional)
The operator to use when comparing values in the filter.
key?
Type:
string
(optional)
The tag key used in the filter.
value?
Type:
string
(optional)
The tag value used in the filter.

.NET
Go
Java
Python
TypeScript