NAME
Paws::S3::ScanRange
USAGE
This class represents one of two things:
Arguments in a call to a service
Use the attributes of this class as arguments to methods. You shouldn't make instances of this class. Each attribute should be used as a named argument in the calls that expect this type of object.
As an example, if Att1 is expected to be a Paws::S3::ScanRange object:
$service_obj->Method(Att1 => { End => $value, ..., Start => $value });
Results returned from an API call
Use accessors for each attribute. If Att1 is expected to be an Paws::S3::ScanRange object:
$result = $service_obj->Method(...);
$result->Att1->End
DESCRIPTION
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. This parameter is optional, but when specified, it must not be empty. See RFC 2616, Section 14.35.1 about how to specify the start and end of the range.
ATTRIBUTES
End => Int
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. If only the End parameter is supplied, it is interpreted to mean scan the last N bytes of the file. For example, <scanrange><end>50</end></scanrange>
means scan the last 50 bytes.
Start => Int
Specifies the start of the byte range. This parameter is optional. Valid values: non-negative integers. The default value is 0. If only start is supplied, it means scan from that point to the end of the file.For example; <scanrange><start>50</start></scanrange>
means scan from byte 50 until the end of the file.
SEE ALSO
This class forms part of Paws, describing an object used in Paws::S3
BUGS and CONTRIBUTIONS
The source code is located here: https://github.com/pplu/aws-sdk-perl
Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues