Class: Aws::SSM::Types::DescribeMaintenanceWindowsRequest
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::SSM::Types::DescribeMaintenanceWindowsRequest
 
 
- Defined in:
 - gems/aws-sdk-ssm/lib/aws-sdk-ssm/types.rb
 
Overview
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #filters  ⇒ Array<Types::MaintenanceWindowFilter> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Optional filters used to narrow down the scope of the returned maintenance windows.
 - 
  
    
      #max_results  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The maximum number of items to return for this call.
 - 
  
    
      #next_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The token for the next set of items to return.
 
Instance Attribute Details
#filters ⇒ Array<Types::MaintenanceWindowFilter>
Optional filters used to narrow down the scope of the returned
maintenance windows. Supported filter keys are Name and Enabled.
For example, Name=MyMaintenanceWindow and Enabled=True.
      6176 6177 6178 6179 6180 6181 6182  | 
    
      # File 'gems/aws-sdk-ssm/lib/aws-sdk-ssm/types.rb', line 6176 class DescribeMaintenanceWindowsRequest < Struct.new( :filters, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end  | 
  
#max_results ⇒ Integer
The maximum number of items to return for this call. The call also returns a token that you can specify in a subsequent call to get the next set of results.
      6176 6177 6178 6179 6180 6181 6182  | 
    
      # File 'gems/aws-sdk-ssm/lib/aws-sdk-ssm/types.rb', line 6176 class DescribeMaintenanceWindowsRequest < Struct.new( :filters, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end  | 
  
#next_token ⇒ String
The token for the next set of items to return. (You received this token from a previous call.)
      6176 6177 6178 6179 6180 6181 6182  | 
    
      # File 'gems/aws-sdk-ssm/lib/aws-sdk-ssm/types.rb', line 6176 class DescribeMaintenanceWindowsRequest < Struct.new( :filters, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end  |