Class: Aws::Athena::Types::DeleteNamedQueryInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::Athena::Types::DeleteNamedQueryInput
- Defined in:
- gems/aws-sdk-athena/lib/aws-sdk-athena/types.rb
Overview
Note:
When making an API call, you may pass DeleteNamedQueryInput data as a hash:
{
named_query_id: "NamedQueryId", # required
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#named_query_id ⇒ String
The unique ID of the query to delete.
Instance Attribute Details
#named_query_id ⇒ String
The unique ID of the query to delete.
A suitable default value is auto-generated. You should normally not need to pass this option.
768 769 770 771 772 |
# File 'gems/aws-sdk-athena/lib/aws-sdk-athena/types.rb', line 768 class DeleteNamedQueryInput < Struct.new( :named_query_id) SENSITIVE = [] include Aws::Structure end |