Class: Aws::SsmSap::Types::ListOperationEventsInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::SsmSap::Types::ListOperationEventsInput
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-ssmsap/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#filters ⇒ Array<Types::Filter>
Optionally specify filters to narrow the returned operation event items.
-
#max_results ⇒ Integer
The maximum number of results to return with a single call.
-
#next_token ⇒ String
The token to use to retrieve the next page of results.
-
#operation_id ⇒ String
The ID of the operation.
Instance Attribute Details
#filters ⇒ Array<Types::Filter>
Optionally specify filters to narrow the returned operation event items.
Valid filter names include ‘status`, `resourceID`, and `resourceType`. The valid operator for all three filters is `Equals`.
1018 1019 1020 1021 1022 1023 1024 1025 |
# File 'lib/aws-sdk-ssmsap/types.rb', line 1018 class ListOperationEventsInput < Struct.new( :operation_id, :max_results, :next_token, :filters) SENSITIVE = [] include Aws::Structure end |
#max_results ⇒ Integer
The maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned nextToken value.
If you do not specify a value for ‘MaxResults`, the request returns 50 items per page by default.
1018 1019 1020 1021 1022 1023 1024 1025 |
# File 'lib/aws-sdk-ssmsap/types.rb', line 1018 class ListOperationEventsInput < Struct.new( :operation_id, :max_results, :next_token, :filters) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
The token to use to retrieve the next page of results. This value is null when there are no more results to return.
1018 1019 1020 1021 1022 1023 1024 1025 |
# File 'lib/aws-sdk-ssmsap/types.rb', line 1018 class ListOperationEventsInput < Struct.new( :operation_id, :max_results, :next_token, :filters) SENSITIVE = [] include Aws::Structure end |
#operation_id ⇒ String
The ID of the operation.
1018 1019 1020 1021 1022 1023 1024 1025 |
# File 'lib/aws-sdk-ssmsap/types.rb', line 1018 class ListOperationEventsInput < Struct.new( :operation_id, :max_results, :next_token, :filters) SENSITIVE = [] include Aws::Structure end |