Class: Aws::SSMContacts::Types::DependentEntity
- Inherits:
-
Struct
- Object
- Struct
- Aws::SSMContacts::Types::DependentEntity
- Includes:
- Aws::Structure
- Defined in:
- 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
-
#dependent_resource_ids ⇒ Array<String>
The Amazon Resource Names (ARNs) of the dependent resources.
-
#relation_type ⇒ String
The type of relationship between one resource and the other resource that it is related to or depends on.
Instance Attribute Details
#dependent_resource_ids ⇒ Array<String>
The Amazon Resource Names (ARNs) of the dependent resources.
668 669 670 671 672 673 |
# File 'lib/aws-sdk-ssmcontacts/types.rb', line 668 class DependentEntity < Struct.new( :relation_type, :dependent_resource_ids) SENSITIVE = [] include Aws::Structure end |
#relation_type ⇒ String
The type of relationship between one resource and the other resource that it is related to or depends on.
668 669 670 671 672 673 |
# File 'lib/aws-sdk-ssmcontacts/types.rb', line 668 class DependentEntity < Struct.new( :relation_type, :dependent_resource_ids) SENSITIVE = [] include Aws::Structure end |