Class: Aws::Support::Types::UploadRange

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#end_indexInteger

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.

Returns:

  • (Integer)


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_indexInteger

The starting part index of the range, inclusive. Part indexes start at 1.

Returns:

  • (Integer)


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