Class: Aws::Support::Types::UploadRange
- Inherits:
-
Struct
- Object
- Struct
- Aws::Support::Types::UploadRange
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-support/types.rb
Overview
The range of part indexes for which to return presigned upload URLs from GetAttachmentUploadLinks.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#end_index ⇒ Integer
The ending part index of the range, exclusive.
-
#start_index ⇒ Integer
The starting part index of the range, inclusive.
Instance Attribute Details
#end_index ⇒ Integer
The ending part index of the range, exclusive. The range is
half-open: startIndex is inclusive and endIndex is exclusive.
For example, a range with startIndex of 1 and endIndex of 4
requests URLs for parts 1, 2, and 3. The range size (endIndex -
startIndex) must not exceed 10. If you omit endIndex, the
service defaults to startIndex + 10, capped by the total number of
parts.
2240 2241 2242 2243 2244 2245 |
# File 'lib/aws-sdk-support/types.rb', line 2240 class UploadRange < Struct.new( :start_index, :end_index) SENSITIVE = [] include Aws::Structure end |
#start_index ⇒ Integer
The starting part index of the range, inclusive. Part indexes start at 1.
2240 2241 2242 2243 2244 2245 |
# File 'lib/aws-sdk-support/types.rb', line 2240 class UploadRange < Struct.new( :start_index, :end_index) SENSITIVE = [] include Aws::Structure end |