Class: AWSCDK::Sagemaker::CfnSpace::FSXLustreFileSystemProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::Sagemaker::CfnSpace::FSXLustreFileSystemProperty
- Defined in:
- sagemaker/cfn_space.rb
Overview
A custom file system in Amazon FSx for Lustre.
Instance Attribute Summary collapse
-
#file_system_id ⇒ String
readonly
Amazon FSx for Lustre file system ID.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(file_system_id:) ⇒ FSXLustreFileSystemProperty
constructor
A new instance of FSXLustreFileSystemProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(file_system_id:) ⇒ FSXLustreFileSystemProperty
Returns a new instance of FSXLustreFileSystemProperty.
829 830 831 832 |
# File 'sagemaker/cfn_space.rb', line 829 def initialize(file_system_id:) @file_system_id = file_system_id Jsii::Type.check_type(@file_system_id, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "fileSystemId") end |
Instance Attribute Details
#file_system_id ⇒ String (readonly)
Amazon FSx for Lustre file system ID.
838 839 840 |
# File 'sagemaker/cfn_space.rb', line 838 def file_system_id @file_system_id end |
Class Method Details
.jsii_properties ⇒ Object
840 841 842 843 844 |
# File 'sagemaker/cfn_space.rb', line 840 def self.jsii_properties { :file_system_id => "fileSystemId", } end |
Instance Method Details
#to_jsii ⇒ Object
846 847 848 849 850 851 852 |
# File 'sagemaker/cfn_space.rb', line 846 def to_jsii result = {} result.merge!({ "fileSystemId" => @file_system_id, }) result.compact end |