Class: Aws::CodeConnections::Types::ListConnectionsOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeConnections::Types::ListConnectionsOutput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codeconnections/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#connections ⇒ Array<Types::Connection>
A list of connections and the details for each connection, such as status, owner, and provider type.
-
#next_token ⇒ String
A token that can be used in the next ‘ListConnections` call.
Instance Attribute Details
#connections ⇒ Array<Types::Connection>
A list of connections and the details for each connection, such as status, owner, and provider type.
807 808 809 810 811 812 |
# File 'lib/aws-sdk-codeconnections/types.rb', line 807 class ListConnectionsOutput < Struct.new( :connections, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
A token that can be used in the next ‘ListConnections` call. To view all items in the list, continue to call this operation with each subsequent token until no more `nextToken` values are returned.
807 808 809 810 811 812 |
# File 'lib/aws-sdk-codeconnections/types.rb', line 807 class ListConnectionsOutput < Struct.new( :connections, :next_token) SENSITIVE = [] include Aws::Structure end |