interface S3FileSystemProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SageMaker.CfnSpacePropsMixin.S3FileSystemProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssagemaker#CfnSpacePropsMixin_S3FileSystemProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.sagemaker.CfnSpacePropsMixin.S3FileSystemProperty |
Python | aws_cdk.cfn_property_mixins.aws_sagemaker.CfnSpacePropsMixin.S3FileSystemProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_sagemaker » CfnSpacePropsMixin » S3FileSystemProperty |
A custom file system in Amazon S3.
This is only supported in Amazon SageMaker Unified Studio.
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 s3FileSystemProperty: sagemaker.CfnSpacePropsMixin.S3FileSystemProperty = {
s3Uri: 's3Uri',
};
Properties
| Name | Type | Description |
|---|---|---|
| s3 | string | The Amazon S3 URI that specifies the location in S3 where files are stored, which is mounted within the Studio environment. |
s3Uri?
Type:
string
(optional)
The Amazon S3 URI that specifies the location in S3 where files are stored, which is mounted within the Studio environment.
For example: s3://<bucket-name>/<prefix>/ .

.NET
Go
Java
Python
TypeScript