Interface CfnModelPackagePropsMixin.DataSourceProperty

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

@Stability(Stable) public static interface CfnModelPackagePropsMixin.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.cfnpropertymixins.services.sagemaker.*;
 DataSourceProperty dataSourceProperty = DataSourceProperty.builder()
         .s3DataSource(S3DataSourceProperty.builder()
                 .s3DataType("s3DataType")
                 .s3Uri("s3Uri")
                 .build())
         .build();
 

See Also: