Interface AssessmentReport.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<AssessmentReport.Builder,
,AssessmentReport> SdkBuilder<AssessmentReport.Builder,
,AssessmentReport> SdkPojo
- Enclosing class:
AssessmentReport
@Mutable
@NotThreadSafe
public static interface AssessmentReport.Builder
extends SdkPojo, CopyableBuilder<AssessmentReport.Builder,AssessmentReport>
-
Method Summary
Modifier and TypeMethodDescriptiondomainControllerIp
(String domainControllerIp) The IP address of the domain controller that was tested during the assessment.validations
(Collection<AssessmentValidation> validations) A list of validation results for different test categories performed against this domain controller.validations
(Consumer<AssessmentValidation.Builder>... validations) A list of validation results for different test categories performed against this domain controller.validations
(AssessmentValidation... validations) A list of validation results for different test categories performed against this domain controller.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 Details
-
domainControllerIp
The IP address of the domain controller that was tested during the assessment.
- Parameters:
domainControllerIp
- The IP address of the domain controller that was tested during the assessment.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
validations
A list of validation results for different test categories performed against this domain controller.
- Parameters:
validations
- A list of validation results for different test categories performed against this domain controller.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
validations
A list of validation results for different test categories performed against this domain controller.
- Parameters:
validations
- A list of validation results for different test categories performed against this domain controller.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
validations
A list of validation results for different test categories performed against this domain controller.
This is a convenience method that creates an instance of theAssessmentValidation.Builder
avoiding the need to create one manually viaAssessmentValidation.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tovalidations(List<AssessmentValidation>)
.- Parameters:
validations
- a consumer that will call methods onAssessmentValidation.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-