Class: Aws::Athena::Types::PreparedStatement
- Inherits:
-
Struct
- Object
- Struct
- Aws::Athena::Types::PreparedStatement
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-athena/types.rb
Overview
A prepared SQL statement for use with Athena.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#description ⇒ String
The description of the prepared statement.
-
#last_modified_time ⇒ Time
The last modified time of the prepared statement.
-
#query_statement ⇒ String
The query string for the prepared statement.
-
#statement_name ⇒ String
The name of the prepared statement.
-
#work_group_name ⇒ String
The name of the workgroup to which the prepared statement belongs.
Instance Attribute Details
#description ⇒ String
The description of the prepared statement.
3146 3147 3148 3149 3150 3151 3152 3153 3154 |
# File 'lib/aws-sdk-athena/types.rb', line 3146 class PreparedStatement < Struct.new( :statement_name, :query_statement, :work_group_name, :description, :last_modified_time) SENSITIVE = [] include Aws::Structure end |
#last_modified_time ⇒ Time
The last modified time of the prepared statement.
3146 3147 3148 3149 3150 3151 3152 3153 3154 |
# File 'lib/aws-sdk-athena/types.rb', line 3146 class PreparedStatement < Struct.new( :statement_name, :query_statement, :work_group_name, :description, :last_modified_time) SENSITIVE = [] include Aws::Structure end |
#query_statement ⇒ String
The query string for the prepared statement.
3146 3147 3148 3149 3150 3151 3152 3153 3154 |
# File 'lib/aws-sdk-athena/types.rb', line 3146 class PreparedStatement < Struct.new( :statement_name, :query_statement, :work_group_name, :description, :last_modified_time) SENSITIVE = [] include Aws::Structure end |
#statement_name ⇒ String
The name of the prepared statement.
3146 3147 3148 3149 3150 3151 3152 3153 3154 |
# File 'lib/aws-sdk-athena/types.rb', line 3146 class PreparedStatement < Struct.new( :statement_name, :query_statement, :work_group_name, :description, :last_modified_time) SENSITIVE = [] include Aws::Structure end |
#work_group_name ⇒ String
The name of the workgroup to which the prepared statement belongs.
3146 3147 3148 3149 3150 3151 3152 3153 3154 |
# File 'lib/aws-sdk-athena/types.rb', line 3146 class PreparedStatement < Struct.new( :statement_name, :query_statement, :work_group_name, :description, :last_modified_time) SENSITIVE = [] include Aws::Structure end |