PNG  IHDR;IDATxܻn0K )(pA 7LeG{ §㻢|ذaÆ 6lذaÆ 6lذaÆ 6lom$^yذag5bÆ 6lذaÆ 6lذa{ 6lذaÆ `}HFkm,mӪôô! x|'ܢ˟;E:9&ᶒ}{v]n&6 h_tڠ͵-ҫZ;Z$.Pkž)!o>}leQfJTu іچ\X=8Rن4`Vwl>nG^is"ms$ui?wbs[m6K4O.4%/bC%t Mז -lG6mrz2s%9s@-k9=)kB5\+͂Zsٲ Rn~GRC wIcIn7jJhۛNCS|j08yiHKֶۛkɈ+;SzL/F*\Ԕ#"5m2[S=gnaPeғL lذaÆ 6l^ḵaÆ 6lذaÆ 6lذa; _ذaÆ 6lذaÆ 6lذaÆ RIENDB` package Paws::S3::SelectObjectContent; use Moose; has Bucket => (is => 'ro', isa => 'Str', uri_name => 'Bucket', traits => ['ParamInURI'], required => 1); has ExpectedBucketOwner => (is => 'ro', isa => 'Str', header_name => 'x-amz-expected-bucket-owner', traits => ['ParamInHeader']); has Expression => (is => 'ro', isa => 'Str', required => 1); has ExpressionType => (is => 'ro', isa => 'Str', required => 1); has InputSerialization => (is => 'ro', isa => 'Paws::S3::InputSerialization', required => 1); has Key => (is => 'ro', isa => 'Str', uri_name => 'Key', traits => ['ParamInURI'], required => 1); has OutputSerialization => (is => 'ro', isa => 'Paws::S3::OutputSerialization', required => 1); has RequestProgress => (is => 'ro', isa => 'Paws::S3::RequestProgress'); has ScanRange => (is => 'ro', isa => 'Paws::S3::ScanRange'); has SSECustomerAlgorithm => (is => 'ro', isa => 'Str', header_name => 'x-amz-server-side-encryption-customer-algorithm', traits => ['ParamInHeader']); has SSECustomerKey => (is => 'ro', isa => 'Str', header_name => 'x-amz-server-side-encryption-customer-key', traits => ['ParamInHeader']); has SSECustomerKeyMD5 => (is => 'ro', isa => 'Str', header_name => 'x-amz-server-side-encryption-customer-key-MD5', traits => ['ParamInHeader']); use MooseX::ClassAttribute; class_has _api_call => (isa => 'Str', is => 'ro', default => 'SelectObjectContent'); class_has _api_uri => (isa => 'Str', is => 'ro', default => '/{Bucket}/{Key+}?select&select-type=2'); class_has _api_method => (isa => 'Str', is => 'ro', default => 'POST'); class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::S3::SelectObjectContentOutput'); class_has _result_key => (isa => 'Str', is => 'ro'); class_has _top_level_element => (isa => 'Str', is => 'ro', default => 'SelectObjectContentRequest'); class_has _top_level_namespace => (isa => 'Str', is => 'ro', default => 'http://s3.amazonaws.com/doc/2006-03-01/'); 1; ### main pod documentation begin ### =head1 NAME Paws::S3::SelectObjectContent - Arguments for method SelectObjectContent on L =head1 DESCRIPTION This class represents the parameters used for calling the method SelectObjectContent on the L service. Use the attributes of this class as arguments to method SelectObjectContent. You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to SelectObjectContent. =head1 SYNOPSIS my $s3 = Paws->service('S3'); my $SelectObjectContentOutput = $s3->SelectObjectContent( Bucket => 'MyBucketName', Expression => 'MyExpression', ExpressionType => 'SQL', InputSerialization => { CSV => { AllowQuotedRecordDelimiter => 1, # OPTIONAL Comments => 'MyComments', # OPTIONAL FieldDelimiter => 'MyFieldDelimiter', # OPTIONAL FileHeaderInfo => 'USE', # values: USE, IGNORE, NONE; OPTIONAL QuoteCharacter => 'MyQuoteCharacter', # OPTIONAL QuoteEscapeCharacter => 'MyQuoteEscapeCharacter', # OPTIONAL RecordDelimiter => 'MyRecordDelimiter', # OPTIONAL }, # OPTIONAL CompressionType => 'NONE', # values: NONE, GZIP, BZIP2; OPTIONAL JSON => { Type => 'DOCUMENT', # values: DOCUMENT, LINES; OPTIONAL }, # OPTIONAL Parquet => { }, # OPTIONAL }, Key => 'MyObjectKey', OutputSerialization => { CSV => { FieldDelimiter => 'MyFieldDelimiter', # OPTIONAL QuoteCharacter => 'MyQuoteCharacter', # OPTIONAL QuoteEscapeCharacter => 'MyQuoteEscapeCharacter', # OPTIONAL QuoteFields => 'ALWAYS', # values: ALWAYS, ASNEEDED; OPTIONAL RecordDelimiter => 'MyRecordDelimiter', # OPTIONAL }, # OPTIONAL JSON => { RecordDelimiter => 'MyRecordDelimiter', # OPTIONAL }, # OPTIONAL }, ExpectedBucketOwner => 'MyAccountId', # OPTIONAL RequestProgress => { Enabled => 1, # OPTIONAL }, # OPTIONAL SSECustomerAlgorithm => 'MySSECustomerAlgorithm', # OPTIONAL SSECustomerKey => 'MySSECustomerKey', # OPTIONAL SSECustomerKeyMD5 => 'MySSECustomerKeyMD5', # OPTIONAL ScanRange => { End => 1, # OPTIONAL Start => 1, # OPTIONAL }, # OPTIONAL ); # Results: my $Payload = $SelectObjectContentOutput->Payload; # Returns a L object. Values for attributes that are native types (Int, String, Float, etc) can passed as-is (scalar values). Values for complex Types (objects) can be passed as a HashRef. The keys and values of the hashref will be used to instance the underlying object. For the AWS API documentation, see L =head1 ATTRIBUTES =head2 B Bucket => Str The S3 bucket. =head2 ExpectedBucketOwner => Str The account ID of the expected bucket owner. If the bucket is owned by a different account, the request will fail with an HTTP C<403 (Access Denied)> error. =head2 B Expression => Str The expression that is used to query the object. =head2 B ExpressionType => Str The type of the provided expression (for example, SQL). Valid values are: C<"SQL"> =head2 B InputSerialization => L Describes the format of the data in the object that is being queried. =head2 B Key => Str The object key. =head2 B OutputSerialization => L Describes the format of the data that you want Amazon S3 to return in response. =head2 RequestProgress => L Specifies if periodic request progress information should be enabled. =head2 ScanRange => L 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. Cmay be used in the following ways: =over =item * CscanrangeEEstartE50E/startEEendE100E/endEE/scanrangeE> - process only the records starting between the bytes 50 and 100 (inclusive, counting from zero) =item * CscanrangeEEstartE50E/startEE/scanrangeE> - process only the records starting after the byte 50 =item * CscanrangeEEendE50E/endEE/scanrangeE> - process only the records within the last 50 bytes of the file. =back =head2 SSECustomerAlgorithm => Str The SSE Algorithm used to encrypt the object. For more information, see Server-Side Encryption (Using Customer-Provided Encryption Keys (https://docs.aws.amazon.com/AmazonS3/latest/dev/ServerSideEncryptionCustomerKeys.html). =head2 SSECustomerKey => Str The SSE Customer Key. For more information, see Server-Side Encryption (Using Customer-Provided Encryption Keys (https://docs.aws.amazon.com/AmazonS3/latest/dev/ServerSideEncryptionCustomerKeys.html). =head2 SSECustomerKeyMD5 => Str The SSE Customer Key MD5. For more information, see Server-Side Encryption (Using Customer-Provided Encryption Keys (https://docs.aws.amazon.com/AmazonS3/latest/dev/ServerSideEncryptionCustomerKeys.html). =head1 SEE ALSO This class forms part of L, documenting arguments for method SelectObjectContent in L =head1 BUGS and CONTRIBUTIONS The source code is located here: L Please report bugs to: L =cut