You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::Snowball::Types::S3Resource

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing S3Resource as input to an Aws::Client method, you can use a vanilla Hash:

{
  bucket_arn: "ResourceARN",
  key_range: {
    begin_marker: "String",
    end_marker: "String",
  },
}

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.

Instance Attribute Summary collapse

Instance Attribute Details

#bucket_arnString

The Amazon Resource Name (ARN) of an Amazon S3 bucket.

Returns:

  • (String)

    The Amazon Resource Name (ARN) of an Amazon S3 bucket.

#key_rangeTypes::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.

Returns:

  • (Types::KeyRange)

    For export jobs, you can provide an optional KeyRange within a specific Amazon S3 bucket.