Class: Aws::Appflow::Types::ConnectorEntity
- Inherits:
-
Struct
- Object
- Struct
- Aws::Appflow::Types::ConnectorEntity
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-appflow/types.rb
Overview
The high-level entity that can be queried in Amazon AppFlow. For example, a Salesforce entity might be an Account or Opportunity, whereas a ServiceNow entity might be an Incident.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#has_nested_entities ⇒ Boolean
Specifies whether the connector entity is a parent or a category and has more entities nested underneath it.
-
#label ⇒ String
The label applied to the connector entity.
-
#name ⇒ String
The name of the connector entity.
Instance Attribute Details
#has_nested_entities ⇒ Boolean
Specifies whether the connector entity is a parent or a category and has more entities nested underneath it. If another call is made with ‘entitiesPath = “the_current_entity_name_with_hasNestedEntities_true”`, then it returns the nested entities underneath it. This provides a way to retrieve all supported entities in a recursive fashion.
546 547 548 549 550 551 552 |
# File 'lib/aws-sdk-appflow/types.rb', line 546 class ConnectorEntity < Struct.new( :name, :label, :has_nested_entities) SENSITIVE = [] include Aws::Structure end |
#label ⇒ String
The label applied to the connector entity.
546 547 548 549 550 551 552 |
# File 'lib/aws-sdk-appflow/types.rb', line 546 class ConnectorEntity < Struct.new( :name, :label, :has_nested_entities) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the connector entity.
546 547 548 549 550 551 552 |
# File 'lib/aws-sdk-appflow/types.rb', line 546 class ConnectorEntity < Struct.new( :name, :label, :has_nested_entities) SENSITIVE = [] include Aws::Structure end |