interface S3FileSystemProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Sagemaker.CfnSpace.S3FileSystemProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnSpace_S3FileSystemProperty |
Java | software.amazon.awscdk.services.sagemaker.CfnSpace.S3FileSystemProperty |
Python | aws_cdk.aws_sagemaker.CfnSpace.S3FileSystemProperty |
TypeScript | aws-cdk-lib » aws_sagemaker » CfnSpace » 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-lib';
const s3FileSystemProperty: sagemaker.CfnSpace.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