Interface CfnModelPackage.S3ModelDataSourceProperty

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

@Stability(Stable) public static interface CfnModelPackage.S3ModelDataSourceProperty extends software.amazon.jsii.JsiiSerializable
Specifies the S3 location of ML model data to deploy.

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.*;
 S3ModelDataSourceProperty s3ModelDataSourceProperty = S3ModelDataSourceProperty.builder()
         .compressionType("compressionType")
         .s3DataType("s3DataType")
         .s3Uri("s3Uri")
         // the properties below are optional
         .modelAccessConfig(ModelAccessConfigProperty.builder()
                 .acceptEula(false)
                 .build())
         .build();
 

See Also: