interface StringFilterProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.InspectorV2.Mixins.CfnFilterPropsMixin.StringFilterProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsinspectorv2/mixins#CfnFilterPropsMixin_StringFilterProperty |
Java | software.amazon.awscdk.mixins.preview.services.inspectorv2.mixins.CfnFilterPropsMixin.StringFilterProperty |
Python | aws_cdk.mixins_preview.aws_inspectorv2.mixins.CfnFilterPropsMixin.StringFilterProperty |
TypeScript | @aws-cdk/mixins-preview » aws_inspectorv2 » mixins » 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 { mixins as inspectorv2_mixins } from '@aws-cdk/mixins-preview/aws-inspectorv2';
const stringFilterProperty: inspectorv2_mixins.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