Table of Contents

Class ScanRange

Namespace
Amazon.S3.Model
Assembly
AWSSDK.S3.dll

Specifies the byte range of the object to get the records from. A record is processed when its first byte is contained by the range.

public class ScanRange
Inheritance
ScanRange
Inherited Members

Constructors

ScanRange()

public ScanRange()

Properties

End

Specifies the end of the byte range. This parameter is optional. Valid values: non-negative integers. The default value is one less than the size of the object being queried.

public long End { get; set; }

Property Value

long

Start

Specifies the start of the byte range. This parameter is optional. Valid values: non-negative integers. The default value is 0.

public long Start { get; set; }

Property Value

long