Class: Aws::SSM::Types::DescribeOpsItemsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::SSM::Types::DescribeOpsItemsRequest
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-ssm/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max_results ⇒ Integer
The maximum number of items to return for this call.
-
#next_token ⇒ String
A token to start the list.
-
#ops_item_filters ⇒ Array<Types::OpsItemFilter>
One or more filters to limit the response.
Instance Attribute Details
#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.
6042 6043 6044 6045 6046 6047 6048 |
# File 'lib/aws-sdk-ssm/types.rb', line 6042 class DescribeOpsItemsRequest < Struct.new( :ops_item_filters, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
A token to start the list. Use this token to get the next set of results.
6042 6043 6044 6045 6046 6047 6048 |
# File 'lib/aws-sdk-ssm/types.rb', line 6042 class DescribeOpsItemsRequest < Struct.new( :ops_item_filters, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |
#ops_item_filters ⇒ Array<Types::OpsItemFilter>
One or more filters to limit the response.
-
Key: CreatedTime
Operations: GreaterThan, LessThan
-
Key: LastModifiedBy
Operations: Contains, Equals
-
Key: LastModifiedTime
Operations: GreaterThan, LessThan
-
Key: Priority
Operations: Equals
-
Key: Source
Operations: Contains, Equals
-
Key: Status
Operations: Equals
-
Key: Title*
Operations: Equals,Contains
-
Key: OperationalData**
Operations: Equals
-
Key: OperationalDataKey
Operations: Equals
-
Key: OperationalDataValue
Operations: Equals, Contains
-
Key: OpsItemId
Operations: Equals
-
Key: ResourceId
Operations: Contains
-
Key: AutomationId
Operations: Equals
-
Key: AccountId
Operations: Equals
*The Equals operator for Title matches the first 100 characters. If you specify more than 100 characters, they system returns an error that the filter value exceeds the length limit.
**If you filter the response by using the OperationalData operator, specify a key-value pair by using the following JSON format: “key”:“key_name”,“value”:“a_value”
6042 6043 6044 6045 6046 6047 6048 |
# File 'lib/aws-sdk-ssm/types.rb', line 6042 class DescribeOpsItemsRequest < Struct.new( :ops_item_filters, :max_results, :next_token) SENSITIVE = [] include Aws::Structure end |