Class: Aws::SSM::Types::RelatedOpsItem

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
lib/aws-sdk-ssm/types.rb

Overview

Note:

When making an API call, you may pass RelatedOpsItem data as a hash:

{
  ops_item_id: "String", # required
}

An OpsItems that shares something in common with the current OpsItem. For example, related OpsItems can include OpsItems with similar error messages, impacted resources, or statuses for the impacted resource.

Instance Attribute Summary collapse

Instance Attribute Details

#ops_item_idString

The ID of an OpsItem related to the current OpsItem.

Returns:

  • (String)


13734
13735
13736
13737
# File 'lib/aws-sdk-ssm/types.rb', line 13734

class RelatedOpsItem < Struct.new(
  :ops_item_id)
  include Aws::Structure
end