Interface Result.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Result.Builder,Result>,SdkBuilder<Result.Builder,Result>,SdkPojo
- Enclosing class:
- Result
public static interface Result.Builder extends SdkPojo, CopyableBuilder<Result.Builder,Result>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default Result.BuilderanalysisStatus(Consumer<AnalysisStatusUnion.Builder> analysisStatus)The error in server analysis.Result.BuilderanalysisStatus(AnalysisStatusUnion analysisStatus)The error in server analysis.Result.BuilderanalysisType(String analysisType)The error in server analysis.Result.BuilderanalysisType(AnalysisType analysisType)The error in server analysis.Result.BuilderantipatternReportResultList(Collection<AntipatternReportResult> antipatternReportResultList)The error in server analysis.Result.BuilderantipatternReportResultList(Consumer<AntipatternReportResult.Builder>... antipatternReportResultList)The error in server analysis.Result.BuilderantipatternReportResultList(AntipatternReportResult... antipatternReportResultList)The error in server analysis.Result.BuilderstatusMessage(String statusMessage)The error in server analysis.-
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
-
analysisStatus
Result.Builder analysisStatus(AnalysisStatusUnion analysisStatus)
The error in server analysis.
- Parameters:
analysisStatus- The error in server analysis.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
analysisStatus
default Result.Builder analysisStatus(Consumer<AnalysisStatusUnion.Builder> analysisStatus)
The error in server analysis.
This is a convenience method that creates an instance of theAnalysisStatusUnion.Builderavoiding the need to create one manually viaAnalysisStatusUnion.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toanalysisStatus(AnalysisStatusUnion).- Parameters:
analysisStatus- a consumer that will call methods onAnalysisStatusUnion.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
analysisStatus(AnalysisStatusUnion)
-
analysisType
Result.Builder analysisType(String analysisType)
The error in server analysis.
- Parameters:
analysisType- The error in server analysis.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
AnalysisType,AnalysisType
-
analysisType
Result.Builder analysisType(AnalysisType analysisType)
The error in server analysis.
- Parameters:
analysisType- The error in server analysis.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
AnalysisType,AnalysisType
-
antipatternReportResultList
Result.Builder antipatternReportResultList(Collection<AntipatternReportResult> antipatternReportResultList)
The error in server analysis.
- Parameters:
antipatternReportResultList- The error in server analysis.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
antipatternReportResultList
Result.Builder antipatternReportResultList(AntipatternReportResult... antipatternReportResultList)
The error in server analysis.
- Parameters:
antipatternReportResultList- The error in server analysis.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
antipatternReportResultList
Result.Builder antipatternReportResultList(Consumer<AntipatternReportResult.Builder>... antipatternReportResultList)
The error in server analysis.
This is a convenience method that creates an instance of theAntipatternReportResult.Builderavoiding the need to create one manually viaAntipatternReportResult.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#antipatternReportResultList(List.) - Parameters:
antipatternReportResultList- a consumer that will call methods onAntipatternReportResult.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#antipatternReportResultList(java.util.Collection)
-
statusMessage
Result.Builder statusMessage(String statusMessage)
The error in server analysis.
- Parameters:
statusMessage- The error in server analysis.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-