@Stability(value=Stable)
public static interface CfnModelPackage.FileSourceProperty
extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnModelPackage.FileSourceProperty.Builder
A builder for
CfnModelPackage.FileSourceProperty |
static class |
CfnModelPackage.FileSourceProperty.Jsii$Proxy
An implementation for
CfnModelPackage.FileSourceProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnModelPackage.FileSourceProperty.Builder |
builder() |
default String |
getContentDigest()
The digest of the file source.
|
default String |
getContentType()
The type of content stored in the file source.
|
String |
getS3Uri()
The Amazon S3 URI for the file source.
|
@Stability(value=Stable) @NotNull String getS3Uri()
@Stability(value=Stable) @Nullable default String getContentDigest()
@Stability(value=Stable) @Nullable default String getContentType()
@Stability(value=Stable) static CfnModelPackage.FileSourceProperty.Builder builder()
Copyright © 2022. All rights reserved.