Interface Severity.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Severity.Builder,Severity>,SdkBuilder<Severity.Builder,Severity>,SdkPojo
- Enclosing class:
- Severity
public static interface Severity.Builder extends SdkPojo, CopyableBuilder<Severity.Builder,Severity>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Severity.Builderdescription(String description)The qualitative representation of the finding's severity, ranging from Low (least severe) to High (most severe).Severity.Builderdescription(SeverityDescription description)The qualitative representation of the finding's severity, ranging from Low (least severe) to High (most severe).Severity.Builderscore(Long score)The numerical representation of the finding's severity, ranging from 1 (least severe) to 3 (most severe).-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
description
Severity.Builder description(String description)
The qualitative representation of the finding's severity, ranging from Low (least severe) to High (most severe).
- Parameters:
description- The qualitative representation of the finding's severity, ranging from Low (least severe) to High (most severe).- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
SeverityDescription,SeverityDescription
-
description
Severity.Builder description(SeverityDescription description)
The qualitative representation of the finding's severity, ranging from Low (least severe) to High (most severe).
- Parameters:
description- The qualitative representation of the finding's severity, ranging from Low (least severe) to High (most severe).- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
SeverityDescription,SeverityDescription
-
score
Severity.Builder score(Long score)
The numerical representation of the finding's severity, ranging from 1 (least severe) to 3 (most severe).
- Parameters:
score- The numerical representation of the finding's severity, ranging from 1 (least severe) to 3 (most severe).- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-