Interface CvssScore.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<CvssScore.Builder,CvssScore>,SdkBuilder<CvssScore.Builder,CvssScore>,SdkPojo
- Enclosing class:
- CvssScore
public static interface CvssScore.Builder extends SdkPojo, CopyableBuilder<CvssScore.Builder,CvssScore>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CvssScore.BuilderbaseScore(Double baseScore)The base CVSS score used for the finding.CvssScore.BuilderscoringVector(String scoringVector)The vector string of the CVSS score.CvssScore.Buildersource(String source)The source of the CVSS score.CvssScore.Builderversion(String version)The version of CVSS used for the score.-
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
-
baseScore
CvssScore.Builder baseScore(Double baseScore)
The base CVSS score used for the finding.
- Parameters:
baseScore- The base CVSS score used for the finding.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
scoringVector
CvssScore.Builder scoringVector(String scoringVector)
The vector string of the CVSS score.
- Parameters:
scoringVector- The vector string of the CVSS score.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
source
CvssScore.Builder source(String source)
The source of the CVSS score.
- Parameters:
source- The source of the CVSS score.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
version
CvssScore.Builder version(String version)
The version of CVSS used for the score.
- Parameters:
version- The version of CVSS used for the score.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-