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 ‘StoredQuery` objects.
 - 
  
    
      #tags  ⇒ Array<Types::Tag> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A list of ‘Tags` object.
 
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>
  
      7013 7014 7015 7016 7017 7018  | 
    
      # File 'lib/aws-sdk-configservice/types.rb', line 7013 class PutStoredQueryRequest < Struct.new( :stored_query, :tags) SENSITIVE = [] include Aws::Structure end  | 
  
#tags ⇒ Array<Types::Tag>
A list of ‘Tags` object.
      7013 7014 7015 7016 7017 7018  | 
    
      # File 'lib/aws-sdk-configservice/types.rb', line 7013 class PutStoredQueryRequest < Struct.new( :stored_query, :tags) SENSITIVE = [] include Aws::Structure end  |