interface S3FileSystemConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins.CfnUserProfilePropsMixin.S3FileSystemConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssagemaker/mixins#CfnUserProfilePropsMixin_S3FileSystemConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.sagemaker.mixins.CfnUserProfilePropsMixin.S3FileSystemConfigProperty |
Python | aws_cdk.mixins_preview.aws_sagemaker.mixins.CfnUserProfilePropsMixin.S3FileSystemConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_sagemaker » mixins » CfnUserProfilePropsMixin » S3FileSystemConfigProperty |
Configuration for the custom Amazon S3 file system.
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 s3FileSystemConfigProperty: sagemaker_mixins.CfnUserProfilePropsMixin.S3FileSystemConfigProperty = {
mountPath: 'mountPath',
s3Uri: 's3Uri',
};
Properties
| Name | Type | Description |
|---|---|---|
| mount | string | The file system path where the Amazon S3 storage location will be mounted within the Amazon SageMaker Studio environment. |
| s3 | string | The Amazon S3 URI of the S3 file system configuration. |
mountPath?
Type:
string
(optional)
The file system path where the Amazon S3 storage location will be mounted within the Amazon SageMaker Studio environment.
s3Uri?
Type:
string
(optional)
The Amazon S3 URI of the S3 file system configuration.

.NET
Go
Java
Python
TypeScript