The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

use Moose;
has NextToken => (is => 'ro', isa => 'Str');
has Statements => (is => 'ro', isa => 'ArrayRef[Paws::RedshiftData::StatementData]', required => 1);
has _request_id => (is => 'ro', isa => 'Str');
### main pod documentation begin ###
=head1 NAME
Paws::RedshiftData::ListStatementsResponse
=head1 ATTRIBUTES
=head2 NextToken => Str
A value that indicates the starting point for the next set of response
records in a subsequent request. If a value is returned in a response,
you can retrieve the next set of records by providing this returned
NextToken value in the next NextToken parameter and retrying the
command. If the NextToken field is empty, all response records have
been retrieved for the request.
=head2 B<REQUIRED> Statements => ArrayRef[L<Paws::RedshiftData::StatementData>]
The SQL statements.
=head2 _request_id => Str
=cut
1;