Interface CfnFilterPropsMixin.IPackageFilterProperty
Contains information on the details of a package filter.
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.InspectorV2
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public interface CfnFilterPropsMixin.IPackageFilterProperty
Syntax (vb)
Public Interface CfnFilterPropsMixin.IPackageFilterProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.InspectorV2;
var packageFilterProperty = new PackageFilterProperty {
Architecture = new StringFilterProperty {
Comparison = "comparison",
Value = "value"
},
Epoch = new NumberFilterProperty {
LowerInclusive = 123,
UpperInclusive = 123
},
FilePath = new StringFilterProperty {
Comparison = "comparison",
Value = "value"
},
Name = new StringFilterProperty {
Comparison = "comparison",
Value = "value"
},
Release = new StringFilterProperty {
Comparison = "comparison",
Value = "value"
},
SourceLambdaLayerArn = new StringFilterProperty {
Comparison = "comparison",
Value = "value"
},
SourceLayerHash = new StringFilterProperty {
Comparison = "comparison",
Value = "value"
},
Version = new StringFilterProperty {
Comparison = "comparison",
Value = "value"
}
};
Synopsis
Properties
| Architecture | An object that contains details on the package architecture type to filter on. |
| Epoch | An object that contains details on the package epoch to filter on. |
| FilePath | Contains information on the details of a package filter. |
| Name | An object that contains details on the name of the package to filter on. |
| Release | An object that contains details on the package release to filter on. |
| SourceLambdaLayerArn | Contains information on the details of a package filter. |
| SourceLayerHash | An object that contains details on the source layer hash to filter on. |
| Version | The package version to filter on. |
Properties
Architecture
An object that contains details on the package architecture type to filter on.
object? Architecture { get; }
Property Value
Remarks
Epoch
An object that contains details on the package epoch to filter on.
object? Epoch { get; }
Property Value
Remarks
FilePath
Contains information on the details of a package filter.
object? FilePath { get; }
Property Value
Remarks
Name
An object that contains details on the name of the package to filter on.
object? Name { get; }
Property Value
Remarks
Release
An object that contains details on the package release to filter on.
object? Release { get; }
Property Value
Remarks
SourceLambdaLayerArn
Contains information on the details of a package filter.
object? SourceLambdaLayerArn { get; }
Property Value
Remarks
SourceLayerHash
An object that contains details on the source layer hash to filter on.
object? SourceLayerHash { get; }
Property Value
Remarks
Version
The package version to filter on.
object? Version { get; }