interface StringFilterProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.InspectorV2.CfnFilter.StringFilterProperty |
Java | software.amazon.awscdk.services.inspectorv2.CfnFilter.StringFilterProperty |
Python | aws_cdk.aws_inspectorv2.CfnFilter.StringFilterProperty |
TypeScript | @aws-cdk/aws-inspectorv2 » CfnFilter » 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 * as inspectorv2 from '@aws-cdk/aws-inspectorv2';
const stringFilterProperty: inspectorv2.CfnFilter.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
The operator to use when comparing values in the filter.
value
Type:
string
The value to filter on.

.NET
Java
Python
TypeScript