Class: Aws::SSMContacts::Types::DependentEntity

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-ssmcontacts/lib/aws-sdk-ssmcontacts/types.rb

Overview

Information about a resource that another resource is related to or depends on.

For example, if a contact is a member of a rotation, the rotation is a dependent entity of the contact.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#dependent_resource_idsArray<String>

The Amazon Resource Names (ARNs) of the dependent resources.

Returns:

  • (Array<String>)


668
669
670
671
672
673
# File 'gems/aws-sdk-ssmcontacts/lib/aws-sdk-ssmcontacts/types.rb', line 668

class DependentEntity < Struct.new(
  :relation_type,
  :dependent_resource_ids)
  SENSITIVE = []
  include Aws::Structure
end

#relation_typeString

The type of relationship between one resource and the other resource that it is related to or depends on.

Returns:

  • (String)


668
669
670
671
672
673
# File 'gems/aws-sdk-ssmcontacts/lib/aws-sdk-ssmcontacts/types.rb', line 668

class DependentEntity < Struct.new(
  :relation_type,
  :dependent_resource_ids)
  SENSITIVE = []
  include Aws::Structure
end