Interface SeverityUpdate.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<SeverityUpdate.Builder,SeverityUpdate>,SdkBuilder<SeverityUpdate.Builder,SeverityUpdate>,SdkPojo
- Enclosing class:
- SeverityUpdate
public static interface SeverityUpdate.Builder extends SdkPojo, CopyableBuilder<SeverityUpdate.Builder,SeverityUpdate>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SeverityUpdate.Builderlabel(String label)The severity value of the finding.SeverityUpdate.Builderlabel(SeverityLabel label)The severity value of the finding.SeverityUpdate.Buildernormalized(Integer normalized)The normalized severity for the finding.SeverityUpdate.Builderproduct(Double product)The native severity as defined by the Amazon Web Services service or integrated partner product that generated the finding.-
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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
normalized
SeverityUpdate.Builder normalized(Integer normalized)
The normalized severity for the finding. This attribute is to be deprecated in favor of
Label.If you provide
Normalizedand don't provideLabel,Labelis set automatically as follows.-
0 -
INFORMATIONAL -
1–39 -
LOW -
40–69 -
MEDIUM -
70–89 -
HIGH -
90–100 -
CRITICAL
- Parameters:
normalized- The normalized severity for the finding. This attribute is to be deprecated in favor ofLabel.If you provide
Normalizedand don't provideLabel,Labelis set automatically as follows.-
0 -
INFORMATIONAL -
1–39 -
LOW -
40–69 -
MEDIUM -
70–89 -
HIGH -
90–100 -
CRITICAL
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-
product
SeverityUpdate.Builder product(Double product)
The native severity as defined by the Amazon Web Services service or integrated partner product that generated the finding.
- Parameters:
product- The native severity as defined by the Amazon Web Services service or integrated partner product that generated the finding.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
label
SeverityUpdate.Builder label(String label)
The severity value of the finding. The allowed values are the following.
-
INFORMATIONAL- No issue was found. -
LOW- The issue does not require action on its own. -
MEDIUM- The issue must be addressed but not urgently. -
HIGH- The issue must be addressed as a priority. -
CRITICAL- The issue must be remediated immediately to avoid it escalating.
- Parameters:
label- The severity value of the finding. The allowed values are the following.-
INFORMATIONAL- No issue was found. -
LOW- The issue does not require action on its own. -
MEDIUM- The issue must be addressed but not urgently. -
HIGH- The issue must be addressed as a priority. -
CRITICAL- The issue must be remediated immediately to avoid it escalating.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
SeverityLabel,SeverityLabel
-
-
label
SeverityUpdate.Builder label(SeverityLabel label)
The severity value of the finding. The allowed values are the following.
-
INFORMATIONAL- No issue was found. -
LOW- The issue does not require action on its own. -
MEDIUM- The issue must be addressed but not urgently. -
HIGH- The issue must be addressed as a priority. -
CRITICAL- The issue must be remediated immediately to avoid it escalating.
- Parameters:
label- The severity value of the finding. The allowed values are the following.-
INFORMATIONAL- No issue was found. -
LOW- The issue does not require action on its own. -
MEDIUM- The issue must be addressed but not urgently. -
HIGH- The issue must be addressed as a priority. -
CRITICAL- The issue must be remediated immediately to avoid it escalating.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
SeverityLabel,SeverityLabel
-
-
-