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`.
986 987 988 989 990 991 992 993 |
# File 'lib/aws-sdk-ssmsap/types.rb', line 986 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.
986 987 988 989 990 991 992 993 |
# File 'lib/aws-sdk-ssmsap/types.rb', line 986 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.
986 987 988 989 990 991 992 993 |
# File 'lib/aws-sdk-ssmsap/types.rb', line 986 class ListOperationEventsInput < Struct.new( :operation_id, :max_results, :next_token, :filters) SENSITIVE = [] include Aws::Structure end |
#operation_id ⇒ String
The ID of the operation.
986 987 988 989 990 991 992 993 |
# File 'lib/aws-sdk-ssmsap/types.rb', line 986 class ListOperationEventsInput < Struct.new( :operation_id, :max_results, :next_token, :filters) SENSITIVE = [] include Aws::Structure end |