Class ProcessingOutput
- java.lang.Object
-
- software.amazon.awssdk.services.sagemaker.model.ProcessingOutput
-
- All Implemented Interfaces:
Serializable
,SdkPojo
,ToCopyableBuilder<ProcessingOutput.Builder,ProcessingOutput>
@Generated("software.amazon.awssdk:codegen") public final class ProcessingOutput extends Object implements SdkPojo, Serializable, ToCopyableBuilder<ProcessingOutput.Builder,ProcessingOutput>
Describes the results of a processing job. The processing output must specify exactly one of either
S3Output
orFeatureStoreOutput
types.- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interface
ProcessingOutput.Builder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Boolean
appManaged()
WhenTrue
, output operations such as data upload are managed natively by the processing job application.static ProcessingOutput.Builder
builder()
boolean
equals(Object obj)
boolean
equalsBySdkFields(Object obj)
ProcessingFeatureStoreOutput
featureStoreOutput()
Configuration for processing job outputs in Amazon SageMaker Feature Store.<T> Optional<T>
getValueForField(String fieldName, Class<T> clazz)
int
hashCode()
String
outputName()
The name for the processing job output.ProcessingS3Output
s3Output()
Configuration for processing job outputs in Amazon S3.List<SdkField<?>>
sdkFields()
static Class<? extends ProcessingOutput.Builder>
serializableBuilderClass()
ProcessingOutput.Builder
toBuilder()
String
toString()
Returns a string representation of this object.-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface software.amazon.awssdk.utils.builder.ToCopyableBuilder
copy
-
-
-
-
Method Detail
-
outputName
public final String outputName()
The name for the processing job output.
- Returns:
- The name for the processing job output.
-
s3Output
public final ProcessingS3Output s3Output()
Configuration for processing job outputs in Amazon S3.
- Returns:
- Configuration for processing job outputs in Amazon S3.
-
featureStoreOutput
public final ProcessingFeatureStoreOutput featureStoreOutput()
Configuration for processing job outputs in Amazon SageMaker Feature Store. This processing output type is only supported when
AppManaged
is specified.- Returns:
- Configuration for processing job outputs in Amazon SageMaker Feature Store. This processing output type
is only supported when
AppManaged
is specified.
-
appManaged
public final 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.- Returns:
- 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.
-
toBuilder
public ProcessingOutput.Builder toBuilder()
- Specified by:
toBuilder
in interfaceToCopyableBuilder<ProcessingOutput.Builder,ProcessingOutput>
-
builder
public static ProcessingOutput.Builder builder()
-
serializableBuilderClass
public static Class<? extends ProcessingOutput.Builder> serializableBuilderClass()
-
equalsBySdkFields
public final boolean equalsBySdkFields(Object obj)
- Specified by:
equalsBySdkFields
in interfaceSdkPojo
-
toString
public final String toString()
Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be redacted from this string using a placeholder value.
-
-