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::Athena::CreateNamedQuery; use Moose; has ClientRequestToken => (is => 'ro', isa => 'Str'); has Database => (is => 'ro', isa => 'Str', required => 1); has Description => (is => 'ro', isa => 'Str'); has Name => (is => 'ro', isa => 'Str', required => 1); has QueryString => (is => 'ro', isa => 'Str', required => 1); has WorkGroup => (is => 'ro', isa => 'Str'); use MooseX::ClassAttribute; class_has _api_call => (isa => 'Str', is => 'ro', default => 'CreateNamedQuery'); class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::Athena::CreateNamedQueryOutput'); class_has _result_key => (isa => 'Str', is => 'ro'); 1; ### main pod documentation begin ### =head1 NAME Paws::Athena::CreateNamedQuery - Arguments for method CreateNamedQuery on L =head1 DESCRIPTION This class represents the parameters used for calling the method CreateNamedQuery on the L service. Use the attributes of this class as arguments to method CreateNamedQuery. You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to CreateNamedQuery. =head1 SYNOPSIS my $athena = Paws->service('Athena'); my $CreateNamedQueryOutput = $athena->CreateNamedQuery( Database => 'MyDatabaseString', Name => 'MyNameString', QueryString => 'MyQueryString', ClientRequestToken => 'MyIdempotencyToken', # OPTIONAL Description => 'MyDescriptionString', # OPTIONAL WorkGroup => 'MyWorkGroupName', # OPTIONAL ); # Results: my $NamedQueryId = $CreateNamedQueryOutput->NamedQueryId; # 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 ClientRequestToken => Str A unique case-sensitive string used to ensure the request to create the query is idempotent (executes only once). If another C request is received, the same response is returned and another query is not created. If a parameter has changed, for example, the C, an error is returned. This token is listed as not required because AWS SDKs (for example the AWS SDK for Java) auto-generate the token for users. If you are not using the AWS SDK or the AWS CLI, you must provide this token or the action will fail. =head2 B Database => Str The database to which the query belongs. =head2 Description => Str The query description. =head2 B Name => Str The query name. =head2 B QueryString => Str The contents of the query with all query statements. =head2 WorkGroup => Str The name of the workgroup in which the named query is being created. =head1 SEE ALSO This class forms part of L, documenting arguments for method CreateNamedQuery in L =head1 BUGS and CONTRIBUTIONS The source code is located here: L Please report bugs to: L =cut