Interface TestingDataResult.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<TestingDataResult.Builder,TestingDataResult>,SdkBuilder<TestingDataResult.Builder,TestingDataResult>,SdkPojo
- Enclosing class:
- TestingDataResult
public static interface TestingDataResult.Builder extends SdkPojo, CopyableBuilder<TestingDataResult.Builder,TestingDataResult>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default TestingDataResult.Builderinput(Consumer<TestingData.Builder> input)The testing dataset that was supplied for training.TestingDataResult.Builderinput(TestingData input)The testing dataset that was supplied for training.default TestingDataResult.Builderoutput(Consumer<TestingData.Builder> output)The subset of the dataset that was actually tested.TestingDataResult.Builderoutput(TestingData output)The subset of the dataset that was actually tested.default TestingDataResult.Buildervalidation(Consumer<ValidationData.Builder> validation)The location of the data validation manifest.TestingDataResult.Buildervalidation(ValidationData validation)The location of the data validation manifest.-
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
-
input
TestingDataResult.Builder input(TestingData input)
The testing dataset that was supplied for training.
- Parameters:
input- The testing dataset that was supplied for training.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
input
default TestingDataResult.Builder input(Consumer<TestingData.Builder> input)
The testing dataset that was supplied for training.
This is a convenience method that creates an instance of theTestingData.Builderavoiding the need to create one manually viaTestingData.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toinput(TestingData).- Parameters:
input- a consumer that will call methods onTestingData.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
input(TestingData)
-
output
TestingDataResult.Builder output(TestingData output)
The subset of the dataset that was actually tested. Some images (assets) might not be tested due to file formatting and other issues.
- Parameters:
output- The subset of the dataset that was actually tested. Some images (assets) might not be tested due to file formatting and other issues.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
output
default TestingDataResult.Builder output(Consumer<TestingData.Builder> output)
The subset of the dataset that was actually tested. Some images (assets) might not be tested due to file formatting and other issues.
This is a convenience method that creates an instance of theTestingData.Builderavoiding the need to create one manually viaTestingData.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tooutput(TestingData).- Parameters:
output- a consumer that will call methods onTestingData.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
output(TestingData)
-
validation
TestingDataResult.Builder validation(ValidationData validation)
The location of the data validation manifest. The data validation manifest is created for the test dataset during model training.
- Parameters:
validation- The location of the data validation manifest. The data validation manifest is created for the test dataset during model training.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
validation
default TestingDataResult.Builder validation(Consumer<ValidationData.Builder> validation)
The location of the data validation manifest. The data validation manifest is created for the test dataset during model training.
This is a convenience method that creates an instance of theValidationData.Builderavoiding the need to create one manually viaValidationData.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tovalidation(ValidationData).- Parameters:
validation- a consumer that will call methods onValidationData.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
validation(ValidationData)
-
-