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
.
5935 5936 5937 5938 5939 5940 5941 |
# File 'gems/aws-sdk-ssm/lib/aws-sdk-ssm/types.rb', line 5935 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.
5935 5936 5937 5938 5939 5940 5941 |
# File 'gems/aws-sdk-ssm/lib/aws-sdk-ssm/types.rb', line 5935 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.)
5935 5936 5937 5938 5939 5940 5941 |
# File 'gems/aws-sdk-ssm/lib/aws-sdk-ssm/types.rb', line 5935 class DescribeMaintenanceWindowsRequest < Struct.new( :filters, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |