aws-cdk-lib.aws_sagemaker.CfnModelPackage.FileSourceProperty

interface FileSourceProperty

LanguageType name
.NETAmazon.CDK.AWS.Sagemaker.CfnModelPackage.FileSourceProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnModelPackage_FileSourceProperty
Javasoftware.amazon.awscdk.services.sagemaker.CfnModelPackage.FileSourceProperty
Pythonaws_cdk.aws_sagemaker.CfnModelPackage.FileSourceProperty
TypeScript aws-cdk-lib » aws_sagemaker » CfnModelPackage » FileSourceProperty

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 { aws_sagemaker as sagemaker } from 'aws-cdk-lib';
const fileSourceProperty: sagemaker.CfnModelPackage.FileSourceProperty = {
  s3Uri: 's3Uri',

  // the properties below are optional
  contentDigest: 'contentDigest',
  contentType: 'contentType',
};

Properties

NameTypeDescription
s3UristringThe Amazon S3 URI for the file source.
contentDigest?stringThe digest of the file source.
contentType?stringThe type of content stored in the file source.

s3Uri

Type: string

The Amazon S3 URI for the file source.


contentDigest?

Type: string (optional)

The digest of the file source.


contentType?

Type: string (optional)

The type of content stored in the file source.