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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-kafka/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)


3190
3191
3192
3193
3194
3195
# File 'gems/aws-sdk-kafka/lib/aws-sdk-kafka/types.rb', line 3190

class ListVpcConnectionsResponse < Struct.new(
  :next_token,
  :vpc_connections)
  SENSITIVE = []
  include Aws::Structure
end

#vpc_connectionsArray<Types::VpcConnection>

List containing a VpcConnection object.

Returns:



3190
3191
3192
3193
3194
3195
# File 'gems/aws-sdk-kafka/lib/aws-sdk-kafka/types.rb', line 3190

class ListVpcConnectionsResponse < Struct.new(
  :next_token,
  :vpc_connections)
  SENSITIVE = []
  include Aws::Structure
end