Class: Aws::Athena::Types::CreateNamedQueryInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::Athena::Types::CreateNamedQueryInput
- Includes:
- Structure
- Defined in:
- 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.
715 716 717 718 719 720 721 722 723 724 |
# File 'lib/aws-sdk-athena/types.rb', line 715 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.
715 716 717 718 719 720 721 722 723 724 |
# File 'lib/aws-sdk-athena/types.rb', line 715 class CreateNamedQueryInput < Struct.new( :name, :description, :database, :query_string, :client_request_token, :work_group) SENSITIVE = [] include Aws::Structure end |
#description ⇒ String
The query description.
715 716 717 718 719 720 721 722 723 724 |
# File 'lib/aws-sdk-athena/types.rb', line 715 class CreateNamedQueryInput < Struct.new( :name, :description, :database, :query_string, :client_request_token, :work_group) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The query name.
715 716 717 718 719 720 721 722 723 724 |
# File 'lib/aws-sdk-athena/types.rb', line 715 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.
715 716 717 718 719 720 721 722 723 724 |
# File 'lib/aws-sdk-athena/types.rb', line 715 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.
715 716 717 718 719 720 721 722 723 724 |
# File 'lib/aws-sdk-athena/types.rb', line 715 class CreateNamedQueryInput < Struct.new( :name, :description, :database, :query_string, :client_request_token, :work_group) SENSITIVE = [] include Aws::Structure end |