Class: Aws::ConfigService::Types::PutStoredQueryRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::ConfigService::Types::PutStoredQueryRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-configservice/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#stored_query ⇒ Types::StoredQuery
A list of
StoredQueryobjects. -
#tags ⇒ Array<Types::Tag>
A list of
Tagsobject.
Instance Attribute Details
#stored_query ⇒ Types::StoredQuery
A list of StoredQuery objects. The mandatory fields are QueryName and Expression.
<note markdown=“1”> When you are creating a query, you must provide a query name and an expression. When you are updating a query, you must provide a query name but updating the description is optional.
</note>
7561 7562 7563 7564 7565 7566 |
# File 'lib/aws-sdk-configservice/types.rb', line 7561 class PutStoredQueryRequest < Struct.new( :stored_query, :tags) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Array<Types::Tag>
A list of Tags object.
7561 7562 7563 7564 7565 7566 |
# File 'lib/aws-sdk-configservice/types.rb', line 7561 class PutStoredQueryRequest < Struct.new( :stored_query, :tags) SENSITIVE = [] include Aws::Structure end |