Interface BatchInferenceJobOutput.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<BatchInferenceJobOutput.Builder,
,BatchInferenceJobOutput> SdkBuilder<BatchInferenceJobOutput.Builder,
,BatchInferenceJobOutput> SdkPojo
- Enclosing class:
BatchInferenceJobOutput
public static interface BatchInferenceJobOutput.Builder
extends SdkPojo, CopyableBuilder<BatchInferenceJobOutput.Builder,BatchInferenceJobOutput>
-
Method Summary
Modifier and TypeMethodDescriptiondefault BatchInferenceJobOutput.Builder
s3DataDestination
(Consumer<S3DataConfig.Builder> s3DataDestination) Information on the Amazon S3 bucket in which the batch inference job's output is stored.s3DataDestination
(S3DataConfig s3DataDestination) Information on the Amazon S3 bucket in which the batch inference job's output is stored.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 Details
-
s3DataDestination
Information on the Amazon S3 bucket in which the batch inference job's output is stored.
- Parameters:
s3DataDestination
- Information on the Amazon S3 bucket in which the batch inference job's output is stored.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
s3DataDestination
default BatchInferenceJobOutput.Builder s3DataDestination(Consumer<S3DataConfig.Builder> s3DataDestination) Information on the Amazon S3 bucket in which the batch inference job's output is stored.
This is a convenience method that creates an instance of theS3DataConfig.Builder
avoiding the need to create one manually viaS3DataConfig.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tos3DataDestination(S3DataConfig)
.- Parameters:
s3DataDestination
- a consumer that will call methods onS3DataConfig.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-