Interface CfnTransformJobPropsMixin.TransformOutputProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTransformJobPropsMixin.TransformOutputProperty.Jsii$Proxy
- Enclosing class:
CfnTransformJobPropsMixin
@Stability(Stable)
public static interface CfnTransformJobPropsMixin.TransformOutputProperty
extends software.amazon.jsii.JsiiSerializable
Describes the results of the transform job.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.sagemaker.*;
TransformOutputProperty transformOutputProperty = TransformOutputProperty.builder()
.accept("accept")
.assembleWith("assembleWith")
.kmsKeyId("kmsKeyId")
.s3OutputPath("s3OutputPath")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTransformJobPropsMixin.TransformOutputPropertystatic final classAn implementation forCfnTransformJobPropsMixin.TransformOutputProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe MIME type used to specify the output data.default StringDefines how to assemble the results of the transform job as a single S3 object.default StringThe AWS KMS key that Amazon SageMaker uses to encrypt the model artifacts at rest using Amazon S3 server-side encryption.default StringThe Amazon S3 path where you want Amazon SageMaker to store the results of the transform job.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAccept
The MIME type used to specify the output data.- See Also:
-
getAssembleWith
Defines how to assemble the results of the transform job as a single S3 object.- See Also:
-
getKmsKeyId
The AWS KMS key that Amazon SageMaker uses to encrypt the model artifacts at rest using Amazon S3 server-side encryption.- See Also:
-
getS3OutputPath
The Amazon S3 path where you want Amazon SageMaker to store the results of the transform job.- See Also:
-
builder
-