interface FileSourceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins.CfnModelPackagePropsMixin.FileSourceProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssagemaker/mixins#CfnModelPackagePropsMixin_FileSourceProperty |
Java | software.amazon.awscdk.mixins.preview.services.sagemaker.mixins.CfnModelPackagePropsMixin.FileSourceProperty |
Python | aws_cdk.mixins_preview.aws_sagemaker.mixins.CfnModelPackagePropsMixin.FileSourceProperty |
TypeScript | @aws-cdk/mixins-preview » aws_sagemaker » mixins » CfnModelPackagePropsMixin » 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 { mixins as sagemaker_mixins } from '@aws-cdk/mixins-preview/aws-sagemaker';
const fileSourceProperty: sagemaker_mixins.CfnModelPackagePropsMixin.FileSourceProperty = {
contentDigest: 'contentDigest',
contentType: 'contentType',
s3Uri: 's3Uri',
};
Properties
| Name | Type | Description |
|---|---|---|
| content | string | The digest of the file source. |
| content | string | The type of content stored in the file source. |
| s3 | 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.
s3Uri?
Type:
string
(optional)
The Amazon S3 URI for the file source.

.NET
Go
Java
Python
TypeScript