Class: Aws::Snowball::Types::TargetOnDeviceService
- Inherits:
-
Struct
- Object
- Struct
- Aws::Snowball::Types::TargetOnDeviceService
- Defined in:
- gems/aws-sdk-snowball/lib/aws-sdk-snowball/types.rb
Overview
Note:
When making an API call, you may pass TargetOnDeviceService data as a hash:
{
service_name: "NFS_ON_DEVICE_SERVICE", # accepts NFS_ON_DEVICE_SERVICE, S3_ON_DEVICE_SERVICE
transfer_option: "IMPORT", # accepts IMPORT, EXPORT, LOCAL_USE
}
An object that represents the service or services on the Snow Family device that your transferred data will be exported from or imported into. Amazon Web Services Snow Family supports Amazon S3 and NFS (Network File System).
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#service_name ⇒ String
Specifies the name of the service on the Snow Family device that your transferred data will be exported from or imported into.
-
#transfer_option ⇒ String
Specifies whether the data is being imported or exported.
Instance Attribute Details
#service_name ⇒ String
Specifies the name of the service on the Snow Family device that your transferred data will be exported from or imported into.
2621 2622 2623 2624 2625 2626 |
# File 'gems/aws-sdk-snowball/lib/aws-sdk-snowball/types.rb', line 2621 class TargetOnDeviceService < Struct.new( :service_name, :transfer_option) SENSITIVE = [] include Aws::Structure end |
#transfer_option ⇒ String
Specifies whether the data is being imported or exported. You can import or export the data, or use it locally on the device.
2621 2622 2623 2624 2625 2626 |
# File 'gems/aws-sdk-snowball/lib/aws-sdk-snowball/types.rb', line 2621 class TargetOnDeviceService < Struct.new( :service_name, :transfer_option) SENSITIVE = [] include Aws::Structure end |