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::Glue::GetPartitions; use Moose; has CatalogId => (is => 'ro', isa => 'Str'); has DatabaseName => (is => 'ro', isa => 'Str', required => 1); has ExcludeColumnSchema => (is => 'ro', isa => 'Bool'); has Expression => (is => 'ro', isa => 'Str'); has MaxResults => (is => 'ro', isa => 'Int'); has NextToken => (is => 'ro', isa => 'Str'); has Segment => (is => 'ro', isa => 'Paws::Glue::Segment'); has TableName => (is => 'ro', isa => 'Str', required => 1); use MooseX::ClassAttribute; class_has _api_call => (isa => 'Str', is => 'ro', default => 'GetPartitions'); class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::Glue::GetPartitionsResponse'); class_has _result_key => (isa => 'Str', is => 'ro'); 1; ### main pod documentation begin ### =head1 NAME Paws::Glue::GetPartitions - Arguments for method GetPartitions on L =head1 DESCRIPTION This class represents the parameters used for calling the method GetPartitions on the L service. Use the attributes of this class as arguments to method GetPartitions. You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to GetPartitions. =head1 SYNOPSIS my $glue = Paws->service('Glue'); my $GetPartitionsResponse = $glue->GetPartitions( DatabaseName => 'MyNameString', TableName => 'MyNameString', CatalogId => 'MyCatalogIdString', # OPTIONAL ExcludeColumnSchema => 1, # OPTIONAL Expression => 'MyPredicateString', # OPTIONAL MaxResults => 1, # OPTIONAL NextToken => 'MyToken', # OPTIONAL Segment => { SegmentNumber => 1, TotalSegments => 1, # min: 1, max: 10 }, # OPTIONAL ); # Results: my $NextToken = $GetPartitionsResponse->NextToken; my $Partitions = $GetPartitionsResponse->Partitions; # 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 CatalogId => Str The ID of the Data Catalog where the partitions in question reside. If none is provided, the Amazon Web Services account ID is used by default. =head2 B DatabaseName => Str The name of the catalog database where the partitions reside. =head2 ExcludeColumnSchema => Bool =head2 Expression => Str An expression that filters the partitions to be returned. The expression uses SQL syntax similar to the SQL C filter clause. The SQL statement parser JSQLParser (http://jsqlparser.sourceforge.net/home.php) parses the expression. I: The following are the operators that you can use in the C API call: =over =item E<61> Checks whether the values of the two operands are equal; if yes, then the condition becomes true. Example: Assume 'variable a' holds 10 and 'variable b' holds 20. (a = b) is not true. =item E E Checks whether the values of two operands are equal; if the values are not equal, then the condition becomes true. Example: (a E E b) is true. =item E Checks whether the value of the left operand is greater than the value of the right operand; if yes, then the condition becomes true. Example: (a E b) is not true. =item E Checks whether the value of the left operand is less than the value of the right operand; if yes, then the condition becomes true. Example: (a E b) is true. =item E= Checks whether the value of the left operand is greater than or equal to the value of the right operand; if yes, then the condition becomes true. Example: (a E= b) is not true. =item E= Checks whether the value of the left operand is less than or equal to the value of the right operand; if yes, then the condition becomes true. Example: (a E= b) is true. =item AND, OR, IN, BETWEEN, LIKE, NOT, IS NULL Logical operators. =back I: The following are the supported partition keys. =over =item * C =item * C =item * C =item * C =item * C =item * C =item * C =item * C =item * C =back If an type is encountered that is not valid, an exception is thrown. The following list shows the valid operators on each type. When you define a crawler, the C type is created as a C, to be compatible with the catalog partitions. I: =head2 MaxResults => Int The maximum number of partitions to return in a single response. =head2 NextToken => Str A continuation token, if this is not the first call to retrieve these partitions. =head2 Segment => L The segment of the table's partitions to scan in this request. =head2 B TableName => Str The name of the partitions' table. =head1 SEE ALSO This class forms part of L, documenting arguments for method GetPartitions in L =head1 BUGS and CONTRIBUTIONS The source code is located here: L Please report bugs to: L =cut