Class: Aws::Kafka::Types::ListVpcConnectionsResponse

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#next_tokenString

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.

Returns:

  • (String)


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_connectionsArray<Types::VpcConnection>

List containing a VpcConnection object.

Returns:



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