Class: Aws::Snowball::Types::OnDeviceServiceConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::Snowball::Types::OnDeviceServiceConfiguration
- Defined in:
- gems/aws-sdk-snowball/lib/aws-sdk-snowball/types.rb
Overview
Note:
When making an API call, you may pass OnDeviceServiceConfiguration data as a hash:
{
nfs_on_device_service: {
storage_limit: 1,
storage_unit: "TB", # accepts TB
},
tgw_on_device_service: {
storage_limit: 1,
storage_unit: "TB", # accepts TB
},
}
An object that represents the metadata and configuration settings for services on an Amazon Web Services Snow Family device.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#nfs_on_device_service ⇒ Types::NFSOnDeviceServiceConfiguration
Represents the NFS (Network File System) service on a Snow Family device.
-
#tgw_on_device_service ⇒ Types::TGWOnDeviceServiceConfiguration
Represents the Storage Gateway service Tape Gateway type on a Snow Family device.
Instance Attribute Details
#nfs_on_device_service ⇒ Types::NFSOnDeviceServiceConfiguration
Represents the NFS (Network File System) service on a Snow Family device.
2400 2401 2402 2403 2404 2405 |
# File 'gems/aws-sdk-snowball/lib/aws-sdk-snowball/types.rb', line 2400 class OnDeviceServiceConfiguration < Struct.new( :nfs_on_device_service, :tgw_on_device_service) SENSITIVE = [] include Aws::Structure end |
#tgw_on_device_service ⇒ Types::TGWOnDeviceServiceConfiguration
Represents the Storage Gateway service Tape Gateway type on a Snow Family device.
2400 2401 2402 2403 2404 2405 |
# File 'gems/aws-sdk-snowball/lib/aws-sdk-snowball/types.rb', line 2400 class OnDeviceServiceConfiguration < Struct.new( :nfs_on_device_service, :tgw_on_device_service) SENSITIVE = [] include Aws::Structure end |