aws-cdk-lib.aws_inspectorv2.CfnFilter.MapFilterProperty

interface MapFilterProperty

LanguageType name
.NETAmazon.CDK.AWS.InspectorV2.CfnFilter.MapFilterProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsinspectorv2#CfnFilter_MapFilterProperty
Javasoftware.amazon.awscdk.services.inspectorv2.CfnFilter.MapFilterProperty
Pythonaws_cdk.aws_inspectorv2.CfnFilter.MapFilterProperty
TypeScript aws-cdk-lib » aws_inspectorv2 » CfnFilter » 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-lib';
const mapFilterProperty: inspectorv2.CfnFilter.MapFilterProperty = {
  comparison: 'comparison',

  // the properties below are optional
  key: 'key',
  value: 'value',
};

Properties

NameTypeDescription
comparisonstringThe operator to use when comparing values in the filter.
key?stringThe tag key used in the filter.
value?stringThe tag value used in the filter.

comparison

Type: string

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.