interface FindingSeverityCounts
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ImageBuilder.Events.EC2ImageBuilderCVEDetected.FindingSeverityCounts |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsimagebuilder/events#EC2ImageBuilderCVEDetected_FindingSeverityCounts |
Java | software.amazon.awscdk.mixins.preview.services.imagebuilder.events.EC2ImageBuilderCVEDetected.FindingSeverityCounts |
Python | aws_cdk.mixins_preview.aws_imagebuilder.events.EC2ImageBuilderCVEDetected.FindingSeverityCounts |
TypeScript | @aws-cdk/mixins-preview ยป aws_imagebuilder ยป events ยป EC2ImageBuilderCVEDetected ยป FindingSeverityCounts |
Type definition for Finding-severity-counts.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { events as imagebuilder_events } from '@aws-cdk/mixins-preview/aws-imagebuilder';
const findingSeverityCounts: imagebuilder_events.EC2ImageBuilderCVEDetected.FindingSeverityCounts = {
all: ['all'],
critical: ['critical'],
high: ['high'],
medium: ['medium'],
};
Properties
| Name | Type | Description |
|---|---|---|
| all? | string[] | all property. |
| critical? | string[] | critical property. |
| high? | string[] | high property. |
| medium? | string[] | medium property. |
all?
Type:
string[]
(optional, default: Do not filter on this field)
all property.
Specify an array of string values to match this event if the actual value of all is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
critical?
Type:
string[]
(optional, default: Do not filter on this field)
critical property.
Specify an array of string values to match this event if the actual value of critical is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
high?
Type:
string[]
(optional, default: Do not filter on this field)
high property.
Specify an array of string values to match this event if the actual value of high is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
medium?
Type:
string[]
(optional, default: Do not filter on this field)
medium property.
Specify an array of string values to match this event if the actual value of medium is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.

.NET
Go
Java
Python
TypeScript