interface PackageFilterProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.InspectorV2.CfnFilter.PackageFilterProperty | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsinspectorv2#CfnFilter_PackageFilterProperty | 
|  Java | software.amazon.awscdk.services.inspectorv2.CfnFilter.PackageFilterProperty | 
|  Python | aws_cdk.aws_inspectorv2.CfnFilter.PackageFilterProperty | 
|  TypeScript | aws-cdk-lib»aws_inspectorv2»CfnFilter»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 { aws_inspectorv2 as inspectorv2 } from 'aws-cdk-lib';
const packageFilterProperty: inspectorv2.CfnFilter.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.
