interface StringFilterProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.InspectorV2.CfnFilterPropsMixin.StringFilterProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsinspectorv2#CfnFilterPropsMixin_StringFilterProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.inspectorv2.CfnFilterPropsMixin.StringFilterProperty |
Python | aws_cdk.cfn_property_mixins.aws_inspectorv2.CfnFilterPropsMixin.StringFilterProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_inspectorv2 » CfnFilterPropsMixin » StringFilterProperty |
An object that describes the details of a string 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 stringFilterProperty: inspectorv2.CfnFilterPropsMixin.StringFilterProperty = {
comparison: 'comparison',
value: 'value',
};
Properties
| Name | Type | Description |
|---|---|---|
| comparison? | string | The operator to use when comparing values in the filter. |
| value? | string | The value to filter on. |
comparison?
Type:
string
(optional)
The operator to use when comparing values in the filter.
value?
Type:
string
(optional)
The value to filter on.

.NET
Go
Java
Python
TypeScript