interface FileSourceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SageMaker.CfnModelPackagePropsMixin.FileSourceProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssagemaker#CfnModelPackagePropsMixin_FileSourceProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.sagemaker.CfnModelPackagePropsMixin.FileSourceProperty |
Python | aws_cdk.cfn_property_mixins.aws_sagemaker.CfnModelPackagePropsMixin.FileSourceProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_sagemaker » 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 { aws_sagemaker as sagemaker } from '@aws-cdk/cfn-property-mixins';
const fileSourceProperty: sagemaker.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