Interface CfnModelPackage.FileSourceProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnModelPackage.FileSourceProperty.Jsii$Proxy
- Enclosing class:
CfnModelPackage
@Stability(Stable)
public static interface CfnModelPackage.FileSourceProperty
extends software.amazon.jsii.JsiiSerializable
Contains details regarding the file source.
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.*;
FileSourceProperty fileSourceProperty = FileSourceProperty.builder()
.s3Uri("s3Uri")
// the properties below are optional
.contentDigest("contentDigest")
.contentType("contentType")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnModelPackage.FileSourcePropertystatic final classAn implementation forCfnModelPackage.FileSourceProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getS3Uri
The Amazon S3 URI for the file source.- See Also:
-
getContentDigest
The digest of the file source.- See Also:
-
getContentType
The type of content stored in the file source.- See Also:
-
builder
-