Interface ProcessingOutput.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ProcessingOutput.Builder,ProcessingOutput>,SdkBuilder<ProcessingOutput.Builder,ProcessingOutput>,SdkPojo
- Enclosing class:
- ProcessingOutput
public static interface ProcessingOutput.Builder extends SdkPojo, CopyableBuilder<ProcessingOutput.Builder,ProcessingOutput>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description ProcessingOutput.BuilderappManaged(Boolean appManaged)WhenTrue, output operations such as data upload are managed natively by the processing job application.default ProcessingOutput.BuilderfeatureStoreOutput(Consumer<ProcessingFeatureStoreOutput.Builder> featureStoreOutput)Configuration for processing job outputs in Amazon SageMaker Feature Store.ProcessingOutput.BuilderfeatureStoreOutput(ProcessingFeatureStoreOutput featureStoreOutput)Configuration for processing job outputs in Amazon SageMaker Feature Store.ProcessingOutput.BuilderoutputName(String outputName)The name for the processing job output.default ProcessingOutput.Builders3Output(Consumer<ProcessingS3Output.Builder> s3Output)Configuration for processing job outputs in Amazon S3.ProcessingOutput.Builders3Output(ProcessingS3Output s3Output)Configuration for processing job outputs in Amazon S3.-
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
-
outputName
ProcessingOutput.Builder outputName(String outputName)
The name for the processing job output.
- Parameters:
outputName- The name for the processing job output.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
s3Output
ProcessingOutput.Builder s3Output(ProcessingS3Output s3Output)
Configuration for processing job outputs in Amazon S3.
- Parameters:
s3Output- Configuration for processing job outputs in Amazon S3.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
s3Output
default ProcessingOutput.Builder s3Output(Consumer<ProcessingS3Output.Builder> s3Output)
Configuration for processing job outputs in Amazon S3.
This is a convenience method that creates an instance of theProcessingS3Output.Builderavoiding the need to create one manually viaProcessingS3Output.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tos3Output(ProcessingS3Output).- Parameters:
s3Output- a consumer that will call methods onProcessingS3Output.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
s3Output(ProcessingS3Output)
-
featureStoreOutput
ProcessingOutput.Builder featureStoreOutput(ProcessingFeatureStoreOutput featureStoreOutput)
Configuration for processing job outputs in Amazon SageMaker Feature Store. This processing output type is only supported when
AppManagedis specified.- Parameters:
featureStoreOutput- Configuration for processing job outputs in Amazon SageMaker Feature Store. This processing output type is only supported whenAppManagedis specified.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
featureStoreOutput
default ProcessingOutput.Builder featureStoreOutput(Consumer<ProcessingFeatureStoreOutput.Builder> featureStoreOutput)
Configuration for processing job outputs in Amazon SageMaker Feature Store. This processing output type is only supported when
This is a convenience method that creates an instance of theAppManagedis specified.ProcessingFeatureStoreOutput.Builderavoiding the need to create one manually viaProcessingFeatureStoreOutput.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tofeatureStoreOutput(ProcessingFeatureStoreOutput).- Parameters:
featureStoreOutput- a consumer that will call methods onProcessingFeatureStoreOutput.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
featureStoreOutput(ProcessingFeatureStoreOutput)
-
appManaged
ProcessingOutput.Builder appManaged(Boolean appManaged)
When
True, output operations such as data upload are managed natively by the processing job application. WhenFalse(default), output operations are managed by Amazon SageMaker.- Parameters:
appManaged- WhenTrue, output operations such as data upload are managed natively by the processing job application. WhenFalse(default), output operations are managed by Amazon SageMaker.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-