Struct rusoto_snowball::S3Resource[][src]

pub struct S3Resource {
    pub bucket_arn: Option<String>,
    pub key_range: Option<KeyRange>,
}

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.

Fields

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

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.

Trait Implementations

impl Default for S3Resource
[src]

Returns the "default value" for a type. Read more

impl Debug for S3Resource
[src]

Formats the value using the given formatter. Read more

impl Clone for S3Resource
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for S3Resource
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

impl Send for S3Resource

impl Sync for S3Resource