Class: Aws::Snowball::Types::NFSOnDeviceServiceConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::Snowball::Types::NFSOnDeviceServiceConfiguration
- Defined in:
- gems/aws-sdk-snowball/lib/aws-sdk-snowball/types.rb
Overview
Note:
When making an API call, you may pass NFSOnDeviceServiceConfiguration data as a hash:
{
storage_limit: 1,
storage_unit: "TB", # accepts TB
}
An object that represents the metadata and configuration settings for the NFS (Network File System) service on an Amazon Web Services Snow Family device.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#storage_limit ⇒ Integer
The maximum NFS storage for one Snow Family device.
-
#storage_unit ⇒ String
The scale unit of the NFS storage on the device.
Instance Attribute Details
#storage_limit ⇒ Integer
The maximum NFS storage for one Snow Family device.
2309 2310 2311 2312 2313 2314 |
# File 'gems/aws-sdk-snowball/lib/aws-sdk-snowball/types.rb', line 2309 class NFSOnDeviceServiceConfiguration < Struct.new( :storage_limit, :storage_unit) SENSITIVE = [] include Aws::Structure end |
#storage_unit ⇒ String
The scale unit of the NFS storage on the device.
Valid values: TB.
2309 2310 2311 2312 2313 2314 |
# File 'gems/aws-sdk-snowball/lib/aws-sdk-snowball/types.rb', line 2309 class NFSOnDeviceServiceConfiguration < Struct.new( :storage_limit, :storage_unit) SENSITIVE = [] include Aws::Structure end |