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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnModelPackage.DataSourcePropertystatic final classAn implementation forCfnModelPackage.DataSourceProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The S3 location of the data source that is associated with a channel.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getS3DataSource
The S3 location of the data source that is associated with a channel. -
builder
-