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.
2977 2978 2979 2980 2981 2982 2983 2984 2985 |
# File 'lib/aws-sdk-athena/types.rb', line 2977 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.
2977 2978 2979 2980 2981 2982 2983 2984 2985 |
# File 'lib/aws-sdk-athena/types.rb', line 2977 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.
2977 2978 2979 2980 2981 2982 2983 2984 2985 |
# File 'lib/aws-sdk-athena/types.rb', line 2977 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.
2977 2978 2979 2980 2981 2982 2983 2984 2985 |
# File 'lib/aws-sdk-athena/types.rb', line 2977 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.
2977 2978 2979 2980 2981 2982 2983 2984 2985 |
# File 'lib/aws-sdk-athena/types.rb', line 2977 class PreparedStatement < Struct.new( :statement_name, :query_statement, :work_group_name, :description, :last_modified_time) SENSITIVE = [] include Aws::Structure end |