interface SearchFilterProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ResourceExplorer2.Mixins.CfnViewPropsMixin.SearchFilterProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsresourceexplorer2/mixins#CfnViewPropsMixin_SearchFilterProperty |
Java | software.amazon.awscdk.mixins.preview.services.resourceexplorer2.mixins.CfnViewPropsMixin.SearchFilterProperty |
Python | aws_cdk.mixins_preview.aws_resourceexplorer2.mixins.CfnViewPropsMixin.SearchFilterProperty |
TypeScript | @aws-cdk/mixins-preview » aws_resourceexplorer2 » mixins » CfnViewPropsMixin » SearchFilterProperty |
A search filter defines which resources can be part of a search query result set.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as resourceexplorer2_mixins } from '@aws-cdk/mixins-preview/aws-resourceexplorer2';
const searchFilterProperty: resourceexplorer2_mixins.CfnViewPropsMixin.SearchFilterProperty = {
filterString: 'filterString',
};
Properties
| Name | Type | Description |
|---|---|---|
| filter | string | The string that contains the search keywords, prefixes, and operators to control the results that can be returned by a Search operation. |
filterString?
Type:
string
(optional)
The string that contains the search keywords, prefixes, and operators to control the results that can be returned by a Search operation.
For information about the supported syntax, see Search query reference in the AWS Resource Explorer User Guide .
This query string in the context of this operation supports only filter prefixes with optional operators . It doesn't support free-form text. For example, the string
region:us* service:ec2 -tag:stage=prodincludes all Amazon EC2 resources in any AWS Region that begin with the lettersusand are not tagged with a keyStagethat has the valueprod.

.NET
Go
Java
Python
TypeScript