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 CVSS base score.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 CVSS version that generated 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, sdkFields
-
-
-
-
Method Detail
-
baseScore
CvssScore.Builder baseScore(Double baseScore)
The CVSS base score.
- Parameters:
baseScore- The CVSS base score.- 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.
-
version
CvssScore.Builder version(String version)
The CVSS version that generated the score.
- Parameters:
version- The CVSS version that generated the 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.
-
-