Class: Aws::Kafka::Types::ListVpcConnectionsResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::Kafka::Types::ListVpcConnectionsResponse
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-kafka/types.rb
Overview
The response contains an array of MSK VPC connections and a next token if the response is truncated.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#next_token ⇒ String
If the response of ListVpcConnections is truncated, it returns a NextToken in the response.
-
#vpc_connections ⇒ Array<Types::VpcConnection>
List containing a VpcConnection object.
Instance Attribute Details
#next_token ⇒ String
If the response of ListVpcConnections is truncated, it returns a NextToken in the response. This NextToken should be sent in the subsequent request to ListVpcConnections.
3209 3210 3211 3212 3213 3214 |
# File 'lib/aws-sdk-kafka/types.rb', line 3209 class ListVpcConnectionsResponse < Struct.new( :next_token, :vpc_connections) SENSITIVE = [] include Aws::Structure end |
#vpc_connections ⇒ Array<Types::VpcConnection>
List containing a VpcConnection object.
3209 3210 3211 3212 3213 3214 |
# File 'lib/aws-sdk-kafka/types.rb', line 3209 class ListVpcConnectionsResponse < Struct.new( :next_token, :vpc_connections) SENSITIVE = [] include Aws::Structure end |