Class: Aws::Snowball::Types::KeyRange
- Inherits:
-
Struct
- Object
- Struct
- Aws::Snowball::Types::KeyRange
- 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
-
#begin_marker ⇒ String
The key that starts an optional key range for an export job.
-
#end_marker ⇒ String
The key that ends an optional key range for an export job.
Instance Attribute Details
#begin_marker ⇒ String
The key that starts an optional key range for an export job. Ranges are inclusive and UTF-8 binary sorted.
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_marker ⇒ String
The key that ends an optional key range for an export job. Ranges are inclusive and UTF-8 binary sorted.
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 |