Interface CfnModelPackage.TransformOutputProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnModelPackage.TransformOutputProperty.Jsii$Proxy
Enclosing class:
CfnModelPackage

@Stability(Stable) public static interface CfnModelPackage.TransformOutputProperty extends software.amazon.jsii.JsiiSerializable
Describes the results of a 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.services.sagemaker.*;
 TransformOutputProperty transformOutputProperty = TransformOutputProperty.builder()
         .s3OutputPath("s3OutputPath")
         // the properties below are optional
         .accept("accept")
         .assembleWith("assembleWith")
         .kmsKeyId("kmsKeyId")
         .build();
 

See Also: