Interface CfnModelPackage.DataSourceProperty

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

@Stability(Stable) public static interface CfnModelPackage.DataSourceProperty extends software.amazon.jsii.JsiiSerializable
Describes the location of the channel data.

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.*;
 DataSourceProperty dataSourceProperty = DataSourceProperty.builder()
         .s3DataSource(S3DataSourceProperty.builder()
                 .s3DataType("s3DataType")
                 .s3Uri("s3Uri")
                 .build())
         .build();
 

See Also: