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.
2871 2872 2873 2874 2875 2876 |
# File 'gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb', line 2871 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.
2871 2872 2873 2874 2875 2876 |
# File 'gems/aws-sdk-appflow/lib/aws-sdk-appflow/types.rb', line 2871 class ListConnectorEntitiesResponse < Struct.new( :connector_entity_map, :next_token) SENSITIVE = [] include Aws::Structure end |