You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::Athena::Types::CreateNamedQueryInput

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing CreateNamedQueryInput as input to an Aws::Client method, you can use a vanilla Hash:

{
  name: "NameString", # required
  description: "DescriptionString",
  database: "DatabaseString", # required
  query_string: "QueryString", # required
  client_request_token: "IdempotencyToken",
  work_group: "WorkGroupName",
}

Instance Attribute Summary collapse

Instance Attribute Details

#client_request_tokenString

A unique case-sensitive string used to ensure the request to create the query is idempotent (executes only once). If another CreateNamedQuery request is received, the same response is returned and another query is not created. If a parameter has changed, for example, the QueryString, 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.

Returns:

  • (String)

    A unique case-sensitive string used to ensure the request to create the query is idempotent (executes only once).

#databaseString

The database to which the query belongs.

Returns:

  • (String)

    The database to which the query belongs.

#descriptionString

The query description.

Returns:

  • (String)

    The query description.

#nameString

The query name.

Returns:

  • (String)

    The query name.

#query_stringString

The contents of the query with all query statements.

Returns:

  • (String)

    The contents of the query with all query statements.

#work_groupString

The name of the workgroup in which the named query is being created.

Returns:

  • (String)

    The name of the workgroup in which the named query is being created.