Class: Aws::Kafka::Types::ListClientVpcConnectionsResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::Kafka::Types::ListClientVpcConnectionsResponse
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-kafka/types.rb
Overview
The response contains an array of client VPC connections and a next token if the response is truncated.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#client_vpc_connections ⇒ Array<Types::ClientVpcConnection>
List containing a ClientVpcConnection object.
-
#next_token ⇒ String
If the response of ListClientVpcConnections is truncated, it returns a NextToken in the response.
Instance Attribute Details
#client_vpc_connections ⇒ Array<Types::ClientVpcConnection>
List containing a ClientVpcConnection object.
3128 3129 3130 3131 3132 3133 |
# File 'lib/aws-sdk-kafka/types.rb', line 3128 class ListClientVpcConnectionsResponse < Struct.new( :next_token, :client_vpc_connections) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
If the response of ListClientVpcConnections is truncated, it returns a NextToken in the response. This Nexttoken should be sent in the subsequent request to ListClientVpcConnections.
3128 3129 3130 3131 3132 3133 |
# File 'lib/aws-sdk-kafka/types.rb', line 3128 class ListClientVpcConnectionsResponse < Struct.new( :next_token, :client_vpc_connections) SENSITIVE = [] include Aws::Structure end |