@Generated(value="jsii-pacmak/1.58.0 (build f8ba112)",
date="2022-05-20T22:20:06.160Z")
public interface TransformOutput
Example:
SageMakerCreateTransformJob.Builder.create(this, "Batch Inference") .transformJobName("MyTransformJob") .modelName("MyModelName") .modelClientOptions(ModelClientOptions.builder() .invocationsMaxRetries(3) // default is 0 .invocationsTimeout(Duration.minutes(5)) .build()) .transformInput(TransformInput.builder() .transformDataSource(TransformDataSource.builder() .s3DataSource(TransformS3DataSource.builder() .s3Uri("s3://inputbucket/train") .s3DataType(S3DataType.S3_PREFIX) .build()) .build()) .build()) .transformOutput(TransformOutput.builder() .s3OutputPath("s3://outputbucket/TransformJobOutputPath") .build()) .transformResources(TransformResources.builder() .instanceCount(1) .instanceType(InstanceType.of(InstanceClass.M4, InstanceSize.XLARGE)) .build()) .build();
Modifier and Type | Interface and Description |
---|---|
static class |
TransformOutput.Builder
A builder for
TransformOutput |
static class |
TransformOutput.Jsii$Proxy
An implementation for
TransformOutput |
Modifier and Type | Method and Description |
---|---|
static TransformOutput.Builder |
builder() |
default java.lang.String |
getAccept()
MIME type used to specify the output data.
|
default AssembleWith |
getAssembleWith()
Defines how to assemble the results of the transform job as a single S3 object.
|
default IKey |
getEncryptionKey()
AWS KMS key that Amazon SageMaker uses to encrypt the model artifacts at rest using Amazon S3 server-side encryption.
|
java.lang.String |
getS3OutputPath()
S3 path where you want Amazon SageMaker to store the results of the transform job.
|
java.lang.String getS3OutputPath()
default java.lang.String getAccept()
Default: - None
default AssembleWith getAssembleWith()
Default: - None
default IKey getEncryptionKey()
Default: - default KMS key for Amazon S3 for your role's account.
static TransformOutput.Builder builder()
TransformOutput.Builder
of TransformOutput