Class: Aws::Snowball::Types::S3Resource
- Inherits:
-
Struct
- Object
- Struct
- Aws::Snowball::Types::S3Resource
- Defined in:
- gems/aws-sdk-snowball/lib/aws-sdk-snowball/types.rb
Overview
Each S3Resource
object represents an Amazon S3 bucket that your
transferred data will be exported from or imported into. For export
jobs, this object can have an optional KeyRange
value. The length of
the range is defined at job creation, and has either an inclusive
BeginMarker
, an inclusive EndMarker
, or both. Ranges are UTF-8
binary sorted.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#bucket_arn ⇒ String
The Amazon Resource Name (ARN) of an Amazon S3 bucket.
-
#key_range ⇒ Types::KeyRange
For export jobs, you can provide an optional
KeyRange
within a specific Amazon S3 bucket. -
#target_on_device_services ⇒ Array<Types::TargetOnDeviceService>
Specifies the service or services on the Snow Family device that your transferred data will be exported from or imported into.
Instance Attribute Details
#bucket_arn ⇒ String
The Amazon Resource Name (ARN) of an Amazon S3 bucket.
2336 2337 2338 2339 2340 2341 2342 |
# File 'gems/aws-sdk-snowball/lib/aws-sdk-snowball/types.rb', line 2336 class S3Resource < Struct.new( :bucket_arn, :key_range, :target_on_device_services) SENSITIVE = [] include Aws::Structure end |
#key_range ⇒ Types::KeyRange
For export jobs, you can provide an optional KeyRange
within a
specific Amazon S3 bucket. The length of the range is defined at job
creation, and has either an inclusive BeginMarker
, an inclusive
EndMarker
, or both. Ranges are UTF-8 binary sorted.
2336 2337 2338 2339 2340 2341 2342 |
# File 'gems/aws-sdk-snowball/lib/aws-sdk-snowball/types.rb', line 2336 class S3Resource < Struct.new( :bucket_arn, :key_range, :target_on_device_services) SENSITIVE = [] include Aws::Structure end |
#target_on_device_services ⇒ Array<Types::TargetOnDeviceService>
Specifies 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).
2336 2337 2338 2339 2340 2341 2342 |
# File 'gems/aws-sdk-snowball/lib/aws-sdk-snowball/types.rb', line 2336 class S3Resource < Struct.new( :bucket_arn, :key_range, :target_on_device_services) SENSITIVE = [] include Aws::Structure end |