Class: Aws::Snowball::Types::KeyRange

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
lib/aws-sdk-snowball/types.rb

Overview

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.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#begin_markerString

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

Returns:

  • (String)


1703
1704
1705
1706
1707
1708
# File 'lib/aws-sdk-snowball/types.rb', line 1703

class KeyRange < Struct.new(
  :begin_marker,
  :end_marker)
  SENSITIVE = []
  include Aws::Structure
end

#end_markerString

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

Returns:

  • (String)


1703
1704
1705
1706
1707
1708
# File 'lib/aws-sdk-snowball/types.rb', line 1703

class KeyRange < Struct.new(
  :begin_marker,
  :end_marker)
  SENSITIVE = []
  include Aws::Structure
end