Class: Aws::SageMaker::Types::S3FileSystem
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::S3FileSystem
- Defined in:
- gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb
Overview
A custom file system in Amazon S3. This is only supported in Amazon SageMaker Unified Studio.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#s3_uri ⇒ String
The Amazon S3 URI that specifies the location in S3 where files are stored, which is mounted within the Studio environment.
Instance Attribute Details
#s3_uri ⇒ String
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>/
.
43308 43309 43310 43311 43312 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 43308 class S3FileSystem < Struct.new( :s3_uri) SENSITIVE = [] include Aws::Structure end |