Interface CfnModel.S3DataSourceProperty

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

@Stability(Stable) public static interface CfnModel.S3DataSourceProperty extends software.amazon.jsii.JsiiSerializable
Describes the S3 data source.

Your input bucket must be in the same AWS region as your training 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.*;
 S3DataSourceProperty s3DataSourceProperty = S3DataSourceProperty.builder()
         .compressionType("compressionType")
         .s3DataType("s3DataType")
         .s3Uri("s3Uri")
         // the properties below are optional
         .hubAccessConfig(HubAccessConfigProperty.builder()
                 .hubContentArn("hubContentArn")
                 .build())
         .modelAccessConfig(ModelAccessConfigProperty.builder()
                 .acceptEula(false)
                 .build())
         .build();
 

See Also: