Interface CandidateProperties.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<CandidateProperties.Builder,CandidateProperties>,SdkBuilder<CandidateProperties.Builder,CandidateProperties>,SdkPojo
- Enclosing class:
- CandidateProperties
public static interface CandidateProperties.Builder extends SdkPojo, CopyableBuilder<CandidateProperties.Builder,CandidateProperties>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default CandidateProperties.BuildercandidateArtifactLocations(Consumer<CandidateArtifactLocations.Builder> candidateArtifactLocations)The Amazon S3 prefix to the artifacts generated for an AutoML candidate.CandidateProperties.BuildercandidateArtifactLocations(CandidateArtifactLocations candidateArtifactLocations)The Amazon S3 prefix to the artifacts generated for an AutoML candidate.CandidateProperties.BuildercandidateMetrics(Collection<MetricDatum> candidateMetrics)Information about the candidate metrics for an AutoML job.CandidateProperties.BuildercandidateMetrics(Consumer<MetricDatum.Builder>... candidateMetrics)Information about the candidate metrics for an AutoML job.CandidateProperties.BuildercandidateMetrics(MetricDatum... candidateMetrics)Information about the candidate metrics for an AutoML job.-
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
-
candidateArtifactLocations
CandidateProperties.Builder candidateArtifactLocations(CandidateArtifactLocations candidateArtifactLocations)
The Amazon S3 prefix to the artifacts generated for an AutoML candidate.
- Parameters:
candidateArtifactLocations- The Amazon S3 prefix to the artifacts generated for an AutoML candidate.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
candidateArtifactLocations
default CandidateProperties.Builder candidateArtifactLocations(Consumer<CandidateArtifactLocations.Builder> candidateArtifactLocations)
The Amazon S3 prefix to the artifacts generated for an AutoML candidate.
This is a convenience method that creates an instance of theCandidateArtifactLocations.Builderavoiding the need to create one manually viaCandidateArtifactLocations.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tocandidateArtifactLocations(CandidateArtifactLocations).- Parameters:
candidateArtifactLocations- a consumer that will call methods onCandidateArtifactLocations.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
candidateArtifactLocations(CandidateArtifactLocations)
-
candidateMetrics
CandidateProperties.Builder candidateMetrics(Collection<MetricDatum> candidateMetrics)
Information about the candidate metrics for an AutoML job.
- Parameters:
candidateMetrics- Information about the candidate metrics for an AutoML job.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
candidateMetrics
CandidateProperties.Builder candidateMetrics(MetricDatum... candidateMetrics)
Information about the candidate metrics for an AutoML job.
- Parameters:
candidateMetrics- Information about the candidate metrics for an AutoML job.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
candidateMetrics
CandidateProperties.Builder candidateMetrics(Consumer<MetricDatum.Builder>... candidateMetrics)
Information about the candidate metrics for an AutoML job.
This is a convenience method that creates an instance of theMetricDatum.Builderavoiding the need to create one manually viaMetricDatum.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#candidateMetrics(List.) - Parameters:
candidateMetrics- a consumer that will call methods onMetricDatum.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#candidateMetrics(java.util.Collection)
-
-