Class: Aws::Athena::Types::CreateNamedQueryInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::Athena::Types::CreateNamedQueryInput
- Defined in:
- gems/aws-sdk-athena/lib/aws-sdk-athena/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#client_request_token ⇒ String
A unique case-sensitive string used to ensure the request to create the query is idempotent (executes only once).
-
#database ⇒ String
The database to which the query belongs.
-
#description ⇒ String
The query description.
-
#name ⇒ String
The query name.
-
#query_string ⇒ String
The contents of the query with all query statements.
-
#work_group ⇒ String
The name of the workgroup in which the named query is being created.
Instance Attribute Details
#client_request_token ⇒ String
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 Amazon Web Services SDKs (for example the Amazon Web Services SDK for Java) auto-generate the token for users. If you are not using the Amazon Web Services SDK or the Amazon Web Services CLI, you must provide this token or the action will fail.
A suitable default value is auto-generated. You should normally not need to pass this option.
716 717 718 719 720 721 722 723 724 725 |
# File 'gems/aws-sdk-athena/lib/aws-sdk-athena/types.rb', line 716 class CreateNamedQueryInput < Struct.new( :name, :description, :database, :query_string, :client_request_token, :work_group) SENSITIVE = [] include Aws::Structure end |
#database ⇒ String
The database to which the query belongs.
716 717 718 719 720 721 722 723 724 725 |
# File 'gems/aws-sdk-athena/lib/aws-sdk-athena/types.rb', line 716 class CreateNamedQueryInput < Struct.new( :name, :description, :database, :query_string, :client_request_token, :work_group) SENSITIVE = [] include Aws::Structure end |
#description ⇒ String
The query description.
716 717 718 719 720 721 722 723 724 725 |
# File 'gems/aws-sdk-athena/lib/aws-sdk-athena/types.rb', line 716 class CreateNamedQueryInput < Struct.new( :name, :description, :database, :query_string, :client_request_token, :work_group) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The query name.
716 717 718 719 720 721 722 723 724 725 |
# File 'gems/aws-sdk-athena/lib/aws-sdk-athena/types.rb', line 716 class CreateNamedQueryInput < Struct.new( :name, :description, :database, :query_string, :client_request_token, :work_group) SENSITIVE = [] include Aws::Structure end |
#query_string ⇒ String
The contents of the query with all query statements.
716 717 718 719 720 721 722 723 724 725 |
# File 'gems/aws-sdk-athena/lib/aws-sdk-athena/types.rb', line 716 class CreateNamedQueryInput < Struct.new( :name, :description, :database, :query_string, :client_request_token, :work_group) SENSITIVE = [] include Aws::Structure end |
#work_group ⇒ String
The name of the workgroup in which the named query is being created.
716 717 718 719 720 721 722 723 724 725 |
# File 'gems/aws-sdk-athena/lib/aws-sdk-athena/types.rb', line 716 class CreateNamedQueryInput < Struct.new( :name, :description, :database, :query_string, :client_request_token, :work_group) SENSITIVE = [] include Aws::Structure end |