interface PackageFilterProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.InspectorV2.Mixins.CfnFilterPropsMixin.PackageFilterProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsinspectorv2/mixins#CfnFilterPropsMixin_PackageFilterProperty |
Java | software.amazon.awscdk.mixins.preview.services.inspectorv2.mixins.CfnFilterPropsMixin.PackageFilterProperty |
Python | aws_cdk.mixins_preview.aws_inspectorv2.mixins.CfnFilterPropsMixin.PackageFilterProperty |
TypeScript | @aws-cdk/mixins-preview » aws_inspectorv2 » mixins » CfnFilterPropsMixin » PackageFilterProperty |
Contains information on the details of a package 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 packageFilterProperty: inspectorv2_mixins.CfnFilterPropsMixin.PackageFilterProperty = {
architecture: {
comparison: 'comparison',
value: 'value',
},
epoch: {
lowerInclusive: 123,
upperInclusive: 123,
},
filePath: {
comparison: 'comparison',
value: 'value',
},
name: {
comparison: 'comparison',
value: 'value',
},
release: {
comparison: 'comparison',
value: 'value',
},
sourceLambdaLayerArn: {
comparison: 'comparison',
value: 'value',
},
sourceLayerHash: {
comparison: 'comparison',
value: 'value',
},
version: {
comparison: 'comparison',
value: 'value',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| architecture? | IResolvable | String | An object that contains details on the package architecture type to filter on. |
| epoch? | IResolvable | Number | An object that contains details on the package epoch to filter on. |
| file | IResolvable | String | |
| name? | IResolvable | String | An object that contains details on the name of the package to filter on. |
| release? | IResolvable | String | An object that contains details on the package release to filter on. |
| source | IResolvable | String | |
| source | IResolvable | String | An object that contains details on the source layer hash to filter on. |
| version? | IResolvable | String | The package version to filter on. |
architecture?
Type:
IResolvable | String
(optional)
An object that contains details on the package architecture type to filter on.
epoch?
Type:
IResolvable | Number
(optional)
An object that contains details on the package epoch to filter on.
filePath?
Type:
IResolvable | String
(optional)
name?
Type:
IResolvable | String
(optional)
An object that contains details on the name of the package to filter on.
release?
Type:
IResolvable | String
(optional)
An object that contains details on the package release to filter on.
sourceLambdaLayerArn?
Type:
IResolvable | String
(optional)
sourceLayerHash?
Type:
IResolvable | String
(optional)
An object that contains details on the source layer hash to filter on.
version?
Type:
IResolvable | String
(optional)
The package version to filter on.

.NET
Go
Java
Python
TypeScript