Struct rusoto_snowball::KeyRange[][src]

pub struct KeyRange {
    pub begin_marker: Option<String>,
    pub end_marker: Option<String>,
}

Contains a key range. For export jobs, a S3Resource 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 key that starts an optional key range for an export job. Ranges are inclusive and UTF-8 binary sorted.

The key that ends an optional key range for an export job. Ranges are inclusive and UTF-8 binary sorted.

Trait Implementations

impl Default for KeyRange
[src]

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

impl Debug for KeyRange
[src]

Formats the value using the given formatter. Read more

impl Clone for KeyRange
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for KeyRange
[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 KeyRange

impl Sync for KeyRange