public static interface DescribeAutoMlJobResponse.Builder extends SageMakerResponse.Builder, SdkPojo, CopyableBuilder<DescribeAutoMlJobResponse.Builder,DescribeAutoMlJobResponse>
Modifier and Type | Method and Description |
---|---|
DescribeAutoMlJobResponse.Builder |
autoMLJobArn(String autoMLJobArn)
Returns the ARN of the AutoML job.
|
DescribeAutoMlJobResponse.Builder |
autoMLJobArtifacts(AutoMLJobArtifacts autoMLJobArtifacts)
Returns information on the job's artifacts found in
AutoMLJobArtifacts . |
default DescribeAutoMlJobResponse.Builder |
autoMLJobArtifacts(Consumer<AutoMLJobArtifacts.Builder> autoMLJobArtifacts)
Returns information on the job's artifacts found in
AutoMLJobArtifacts . |
DescribeAutoMlJobResponse.Builder |
autoMLJobConfig(AutoMLJobConfig autoMLJobConfig)
Returns the configuration for the AutoML job.
|
default DescribeAutoMlJobResponse.Builder |
autoMLJobConfig(Consumer<AutoMLJobConfig.Builder> autoMLJobConfig)
Returns the configuration for the AutoML job.
|
DescribeAutoMlJobResponse.Builder |
autoMLJobName(String autoMLJobName)
Returns the name of the AutoML job.
|
DescribeAutoMlJobResponse.Builder |
autoMLJobObjective(AutoMLJobObjective autoMLJobObjective)
Returns the job's objective.
|
default DescribeAutoMlJobResponse.Builder |
autoMLJobObjective(Consumer<AutoMLJobObjective.Builder> autoMLJobObjective)
Returns the job's objective.
|
DescribeAutoMlJobResponse.Builder |
autoMLJobSecondaryStatus(AutoMLJobSecondaryStatus autoMLJobSecondaryStatus)
Returns the secondary status of the AutoML job.
|
DescribeAutoMlJobResponse.Builder |
autoMLJobSecondaryStatus(String autoMLJobSecondaryStatus)
Returns the secondary status of the AutoML job.
|
DescribeAutoMlJobResponse.Builder |
autoMLJobStatus(AutoMLJobStatus autoMLJobStatus)
Returns the status of the AutoML job.
|
DescribeAutoMlJobResponse.Builder |
autoMLJobStatus(String autoMLJobStatus)
Returns the status of the AutoML job.
|
DescribeAutoMlJobResponse.Builder |
bestCandidate(AutoMLCandidate bestCandidate)
Returns the job's best
AutoMLCandidate . |
default DescribeAutoMlJobResponse.Builder |
bestCandidate(Consumer<AutoMLCandidate.Builder> bestCandidate)
Returns the job's best
AutoMLCandidate . |
DescribeAutoMlJobResponse.Builder |
creationTime(Instant creationTime)
Returns the creation time of the AutoML job.
|
DescribeAutoMlJobResponse.Builder |
endTime(Instant endTime)
Returns the end time of the AutoML job.
|
DescribeAutoMlJobResponse.Builder |
failureReason(String failureReason)
Returns the failure reason for an AutoML job, when applicable.
|
DescribeAutoMlJobResponse.Builder |
generateCandidateDefinitionsOnly(Boolean generateCandidateDefinitionsOnly)
Indicates whether the output for an AutoML job generates candidate definitions only.
|
DescribeAutoMlJobResponse.Builder |
inputDataConfig(AutoMLChannel... inputDataConfig)
Returns the input data configuration for the AutoML job..
|
DescribeAutoMlJobResponse.Builder |
inputDataConfig(Collection<AutoMLChannel> inputDataConfig)
Returns the input data configuration for the AutoML job..
|
DescribeAutoMlJobResponse.Builder |
inputDataConfig(Consumer<AutoMLChannel.Builder>... inputDataConfig)
Returns the input data configuration for the AutoML job..
|
DescribeAutoMlJobResponse.Builder |
lastModifiedTime(Instant lastModifiedTime)
Returns the job's last modified time.
|
default DescribeAutoMlJobResponse.Builder |
modelDeployConfig(Consumer<ModelDeployConfig.Builder> modelDeployConfig)
Indicates whether the model was deployed automatically to an endpoint and the name of that endpoint if
deployed automatically.
|
DescribeAutoMlJobResponse.Builder |
modelDeployConfig(ModelDeployConfig modelDeployConfig)
Indicates whether the model was deployed automatically to an endpoint and the name of that endpoint if
deployed automatically.
|
default DescribeAutoMlJobResponse.Builder |
modelDeployResult(Consumer<ModelDeployResult.Builder> modelDeployResult)
Provides information about endpoint for the model deployment.
|
DescribeAutoMlJobResponse.Builder |
modelDeployResult(ModelDeployResult modelDeployResult)
Provides information about endpoint for the model deployment.
|
DescribeAutoMlJobResponse.Builder |
outputDataConfig(AutoMLOutputDataConfig outputDataConfig)
Returns the job's output data config.
|
default DescribeAutoMlJobResponse.Builder |
outputDataConfig(Consumer<AutoMLOutputDataConfig.Builder> outputDataConfig)
Returns the job's output data config.
|
DescribeAutoMlJobResponse.Builder |
partialFailureReasons(AutoMLPartialFailureReason... partialFailureReasons)
Returns a list of reasons for partial failures within an AutoML job.
|
DescribeAutoMlJobResponse.Builder |
partialFailureReasons(Collection<AutoMLPartialFailureReason> partialFailureReasons)
Returns a list of reasons for partial failures within an AutoML job.
|
DescribeAutoMlJobResponse.Builder |
partialFailureReasons(Consumer<AutoMLPartialFailureReason.Builder>... partialFailureReasons)
Returns a list of reasons for partial failures within an AutoML job.
|
DescribeAutoMlJobResponse.Builder |
problemType(ProblemType problemType)
Returns the job's problem type.
|
DescribeAutoMlJobResponse.Builder |
problemType(String problemType)
Returns the job's problem type.
|
default DescribeAutoMlJobResponse.Builder |
resolvedAttributes(Consumer<ResolvedAttributes.Builder> resolvedAttributes)
This contains
ProblemType , AutoMLJobObjective and CompletionCriteria . |
DescribeAutoMlJobResponse.Builder |
resolvedAttributes(ResolvedAttributes resolvedAttributes)
This contains
ProblemType , AutoMLJobObjective and CompletionCriteria . |
DescribeAutoMlJobResponse.Builder |
roleArn(String roleArn)
The Amazon Resource Name (ARN) of the Amazon Web Services Identity and Access Management (IAM) role that has
read permission to the input data location and write permission to the output data location in Amazon S3.
|
build, responseMetadata, responseMetadata
sdkHttpResponse, sdkHttpResponse
equalsBySdkFields, sdkFields
copy
applyMutation, build
DescribeAutoMlJobResponse.Builder autoMLJobName(String autoMLJobName)
Returns the name of the AutoML job.
autoMLJobName
- Returns the name of the AutoML job.DescribeAutoMlJobResponse.Builder autoMLJobArn(String autoMLJobArn)
Returns the ARN of the AutoML job.
autoMLJobArn
- Returns the ARN of the AutoML job.DescribeAutoMlJobResponse.Builder inputDataConfig(Collection<AutoMLChannel> inputDataConfig)
Returns the input data configuration for the AutoML job..
inputDataConfig
- Returns the input data configuration for the AutoML job..DescribeAutoMlJobResponse.Builder inputDataConfig(AutoMLChannel... inputDataConfig)
Returns the input data configuration for the AutoML job..
inputDataConfig
- Returns the input data configuration for the AutoML job..DescribeAutoMlJobResponse.Builder inputDataConfig(Consumer<AutoMLChannel.Builder>... inputDataConfig)
Returns the input data configuration for the AutoML job..
This is a convenience that creates an instance of theList.Builder
avoiding the need
to create one manually via List#builder()
.
When the Consumer
completes, List.Builder#build()
is called immediately and
its result is passed to #inputDataConfig(List)
.inputDataConfig
- a consumer that will call methods on List.Builder
#inputDataConfig(List)
DescribeAutoMlJobResponse.Builder outputDataConfig(AutoMLOutputDataConfig outputDataConfig)
Returns the job's output data config.
outputDataConfig
- Returns the job's output data config.default DescribeAutoMlJobResponse.Builder outputDataConfig(Consumer<AutoMLOutputDataConfig.Builder> outputDataConfig)
Returns the job's output data config.
This is a convenience that creates an instance of theAutoMLOutputDataConfig.Builder
avoiding the
need to create one manually via AutoMLOutputDataConfig.builder()
.
When the Consumer
completes, SdkBuilder.build()
is called immediately and
its result is passed to outputDataConfig(AutoMLOutputDataConfig)
.outputDataConfig
- a consumer that will call methods on AutoMLOutputDataConfig.Builder
outputDataConfig(AutoMLOutputDataConfig)
DescribeAutoMlJobResponse.Builder roleArn(String roleArn)
The Amazon Resource Name (ARN) of the Amazon Web Services Identity and Access Management (IAM) role that has read permission to the input data location and write permission to the output data location in Amazon S3.
roleArn
- The Amazon Resource Name (ARN) of the Amazon Web Services Identity and Access Management (IAM) role
that has read permission to the input data location and write permission to the output data location
in Amazon S3.DescribeAutoMlJobResponse.Builder autoMLJobObjective(AutoMLJobObjective autoMLJobObjective)
Returns the job's objective.
autoMLJobObjective
- Returns the job's objective.default DescribeAutoMlJobResponse.Builder autoMLJobObjective(Consumer<AutoMLJobObjective.Builder> autoMLJobObjective)
Returns the job's objective.
This is a convenience that creates an instance of theAutoMLJobObjective.Builder
avoiding the need to
create one manually via AutoMLJobObjective.builder()
.
When the Consumer
completes, SdkBuilder.build()
is called immediately and its
result is passed to autoMLJobObjective(AutoMLJobObjective)
.autoMLJobObjective
- a consumer that will call methods on AutoMLJobObjective.Builder
autoMLJobObjective(AutoMLJobObjective)
DescribeAutoMlJobResponse.Builder problemType(String problemType)
Returns the job's problem type.
problemType
- Returns the job's problem type.ProblemType
,
ProblemType
DescribeAutoMlJobResponse.Builder problemType(ProblemType problemType)
Returns the job's problem type.
problemType
- Returns the job's problem type.ProblemType
,
ProblemType
DescribeAutoMlJobResponse.Builder autoMLJobConfig(AutoMLJobConfig autoMLJobConfig)
Returns the configuration for the AutoML job.
autoMLJobConfig
- Returns the configuration for the AutoML job.default DescribeAutoMlJobResponse.Builder autoMLJobConfig(Consumer<AutoMLJobConfig.Builder> autoMLJobConfig)
Returns the configuration for the AutoML job.
This is a convenience that creates an instance of theAutoMLJobConfig.Builder
avoiding the need to
create one manually via AutoMLJobConfig.builder()
.
When the Consumer
completes, SdkBuilder.build()
is called immediately and its
result is passed to autoMLJobConfig(AutoMLJobConfig)
.autoMLJobConfig
- a consumer that will call methods on AutoMLJobConfig.Builder
autoMLJobConfig(AutoMLJobConfig)
DescribeAutoMlJobResponse.Builder creationTime(Instant creationTime)
Returns the creation time of the AutoML job.
creationTime
- Returns the creation time of the AutoML job.DescribeAutoMlJobResponse.Builder endTime(Instant endTime)
Returns the end time of the AutoML job.
endTime
- Returns the end time of the AutoML job.DescribeAutoMlJobResponse.Builder lastModifiedTime(Instant lastModifiedTime)
Returns the job's last modified time.
lastModifiedTime
- Returns the job's last modified time.DescribeAutoMlJobResponse.Builder failureReason(String failureReason)
Returns the failure reason for an AutoML job, when applicable.
failureReason
- Returns the failure reason for an AutoML job, when applicable.DescribeAutoMlJobResponse.Builder partialFailureReasons(Collection<AutoMLPartialFailureReason> partialFailureReasons)
Returns a list of reasons for partial failures within an AutoML job.
partialFailureReasons
- Returns a list of reasons for partial failures within an AutoML job.DescribeAutoMlJobResponse.Builder partialFailureReasons(AutoMLPartialFailureReason... partialFailureReasons)
Returns a list of reasons for partial failures within an AutoML job.
partialFailureReasons
- Returns a list of reasons for partial failures within an AutoML job.DescribeAutoMlJobResponse.Builder partialFailureReasons(Consumer<AutoMLPartialFailureReason.Builder>... partialFailureReasons)
Returns a list of reasons for partial failures within an AutoML job.
This is a convenience that creates an instance of theList.Builder
avoiding the need to create one manually via List#builder()
.
When the Consumer
completes, List.Builder#build()
is called
immediately and its result is passed to #partialFailureReasons(List)
.partialFailureReasons
- a consumer that will call methods on List.Builder
#partialFailureReasons(List)
DescribeAutoMlJobResponse.Builder bestCandidate(AutoMLCandidate bestCandidate)
Returns the job's best AutoMLCandidate
.
bestCandidate
- Returns the job's best AutoMLCandidate
.default DescribeAutoMlJobResponse.Builder bestCandidate(Consumer<AutoMLCandidate.Builder> bestCandidate)
Returns the job's best AutoMLCandidate
.
AutoMLCandidate.Builder
avoiding the need to
create one manually via AutoMLCandidate.builder()
.
When the Consumer
completes, SdkBuilder.build()
is called immediately and its
result is passed to bestCandidate(AutoMLCandidate)
.bestCandidate
- a consumer that will call methods on AutoMLCandidate.Builder
bestCandidate(AutoMLCandidate)
DescribeAutoMlJobResponse.Builder autoMLJobStatus(String autoMLJobStatus)
Returns the status of the AutoML job.
autoMLJobStatus
- Returns the status of the AutoML job.AutoMLJobStatus
,
AutoMLJobStatus
DescribeAutoMlJobResponse.Builder autoMLJobStatus(AutoMLJobStatus autoMLJobStatus)
Returns the status of the AutoML job.
autoMLJobStatus
- Returns the status of the AutoML job.AutoMLJobStatus
,
AutoMLJobStatus
DescribeAutoMlJobResponse.Builder autoMLJobSecondaryStatus(String autoMLJobSecondaryStatus)
Returns the secondary status of the AutoML job.
autoMLJobSecondaryStatus
- Returns the secondary status of the AutoML job.AutoMLJobSecondaryStatus
,
AutoMLJobSecondaryStatus
DescribeAutoMlJobResponse.Builder autoMLJobSecondaryStatus(AutoMLJobSecondaryStatus autoMLJobSecondaryStatus)
Returns the secondary status of the AutoML job.
autoMLJobSecondaryStatus
- Returns the secondary status of the AutoML job.AutoMLJobSecondaryStatus
,
AutoMLJobSecondaryStatus
DescribeAutoMlJobResponse.Builder generateCandidateDefinitionsOnly(Boolean generateCandidateDefinitionsOnly)
Indicates whether the output for an AutoML job generates candidate definitions only.
generateCandidateDefinitionsOnly
- Indicates whether the output for an AutoML job generates candidate definitions only.DescribeAutoMlJobResponse.Builder autoMLJobArtifacts(AutoMLJobArtifacts autoMLJobArtifacts)
Returns information on the job's artifacts found in AutoMLJobArtifacts
.
autoMLJobArtifacts
- Returns information on the job's artifacts found in AutoMLJobArtifacts
.default DescribeAutoMlJobResponse.Builder autoMLJobArtifacts(Consumer<AutoMLJobArtifacts.Builder> autoMLJobArtifacts)
Returns information on the job's artifacts found in AutoMLJobArtifacts
.
AutoMLJobArtifacts.Builder
avoiding the need to
create one manually via AutoMLJobArtifacts.builder()
.
When the Consumer
completes, SdkBuilder.build()
is called immediately and its
result is passed to autoMLJobArtifacts(AutoMLJobArtifacts)
.autoMLJobArtifacts
- a consumer that will call methods on AutoMLJobArtifacts.Builder
autoMLJobArtifacts(AutoMLJobArtifacts)
DescribeAutoMlJobResponse.Builder resolvedAttributes(ResolvedAttributes resolvedAttributes)
This contains ProblemType
, AutoMLJobObjective
and CompletionCriteria
.
If you do not provide these values, they are auto-inferred. If you do provide them, the values used are the
ones you provide.
resolvedAttributes
- This contains ProblemType
, AutoMLJobObjective
and
CompletionCriteria
. If you do not provide these values, they are auto-inferred. If you do
provide them, the values used are the ones you provide.default DescribeAutoMlJobResponse.Builder resolvedAttributes(Consumer<ResolvedAttributes.Builder> resolvedAttributes)
This contains ProblemType
, AutoMLJobObjective
and CompletionCriteria
.
If you do not provide these values, they are auto-inferred. If you do provide them, the values used are the
ones you provide.
ResolvedAttributes.Builder
avoiding the need to
create one manually via ResolvedAttributes.builder()
.
When the Consumer
completes, SdkBuilder.build()
is called immediately and its
result is passed to resolvedAttributes(ResolvedAttributes)
.resolvedAttributes
- a consumer that will call methods on ResolvedAttributes.Builder
resolvedAttributes(ResolvedAttributes)
DescribeAutoMlJobResponse.Builder modelDeployConfig(ModelDeployConfig modelDeployConfig)
Indicates whether the model was deployed automatically to an endpoint and the name of that endpoint if deployed automatically.
modelDeployConfig
- Indicates whether the model was deployed automatically to an endpoint and the name of that endpoint if
deployed automatically.default DescribeAutoMlJobResponse.Builder modelDeployConfig(Consumer<ModelDeployConfig.Builder> modelDeployConfig)
Indicates whether the model was deployed automatically to an endpoint and the name of that endpoint if deployed automatically.
This is a convenience that creates an instance of theModelDeployConfig.Builder
avoiding the need to
create one manually via ModelDeployConfig.builder()
.
When the Consumer
completes, SdkBuilder.build()
is called immediately and its
result is passed to modelDeployConfig(ModelDeployConfig)
.modelDeployConfig
- a consumer that will call methods on ModelDeployConfig.Builder
modelDeployConfig(ModelDeployConfig)
DescribeAutoMlJobResponse.Builder modelDeployResult(ModelDeployResult modelDeployResult)
Provides information about endpoint for the model deployment.
modelDeployResult
- Provides information about endpoint for the model deployment.default DescribeAutoMlJobResponse.Builder modelDeployResult(Consumer<ModelDeployResult.Builder> modelDeployResult)
Provides information about endpoint for the model deployment.
This is a convenience that creates an instance of theModelDeployResult.Builder
avoiding the need to
create one manually via ModelDeployResult.builder()
.
When the Consumer
completes, SdkBuilder.build()
is called immediately and its
result is passed to modelDeployResult(ModelDeployResult)
.modelDeployResult
- a consumer that will call methods on ModelDeployResult.Builder
modelDeployResult(ModelDeployResult)
Copyright © 2021. All rights reserved.