Class: Aws::SSM::Types::DescribeMaintenanceWindowExecutionsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::SSM::Types::DescribeMaintenanceWindowExecutionsRequest
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-ssm/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#filters ⇒ Array<Types::MaintenanceWindowFilter>
Each entry in the array is a structure containing:.
-
#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.
-
#window_id ⇒ String
The ID of the maintenance window whose executions should be retrieved.
Instance Attribute Details
#filters ⇒ Array<Types::MaintenanceWindowFilter>
Each entry in the array is a structure containing:
-
Key. A string between 1 and 128 characters. Supported keys include ‘ExecutedBefore` and `ExecutedAfter`.
-
Values. An array of strings, each between 1 and 256 characters. Supported values are date/time strings in a valid ISO 8601 date/time format, such as ‘2024-11-04T05:00:00Z`.
5677 5678 5679 5680 5681 5682 5683 5684 |
# File 'lib/aws-sdk-ssm/types.rb', line 5677 class DescribeMaintenanceWindowExecutionsRequest < Struct.new( :window_id, :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.
5677 5678 5679 5680 5681 5682 5683 5684 |
# File 'lib/aws-sdk-ssm/types.rb', line 5677 class DescribeMaintenanceWindowExecutionsRequest < Struct.new( :window_id, :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.)
5677 5678 5679 5680 5681 5682 5683 5684 |
# File 'lib/aws-sdk-ssm/types.rb', line 5677 class DescribeMaintenanceWindowExecutionsRequest < Struct.new( :window_id, :filters, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#window_id ⇒ String
The ID of the maintenance window whose executions should be retrieved.
5677 5678 5679 5680 5681 5682 5683 5684 |
# File 'lib/aws-sdk-ssm/types.rb', line 5677 class DescribeMaintenanceWindowExecutionsRequest < Struct.new( :window_id, :filters, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |