Class: Aws::Appflow::Types::ListConnectorEntitiesResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::Appflow::Types::ListConnectorEntitiesResponse
- Defined in:
- gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#connector_entity_map ⇒ Hash<String,Array<Types::ConnectorEntity>>
The response of
ListConnectorEntities
lists entities grouped by category. -
#next_token ⇒ String
A token that you specify in your next
ListConnectorEntities
operation to get the next page of results in paginated response.
Instance Attribute Details
#connector_entity_map ⇒ Hash<String,Array<Types::ConnectorEntity>>
The response of ListConnectorEntities
lists entities grouped by
category. This map's key represents the group name, and its value
contains the list of entities belonging to that group.
3037 3038 3039 3040 3041 3042 |
# File 'gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb', line 3037 class ListConnectorEntitiesResponse < Struct.new( :connector_entity_map, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
A token that you specify in your next ListConnectorEntities
operation to get the next page of results in paginated response. The
ListConnectorEntities
operation provides this token if the
response is too big for the page size.
3037 3038 3039 3040 3041 3042 |
# File 'gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb', line 3037 class ListConnectorEntitiesResponse < Struct.new( :connector_entity_map, :next_token) SENSITIVE = [] include Aws::Structure end |