Class: Aws::Kafka::Types::ListConfigurationsResponse

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-kafka/lib/aws-sdk-kafka/types.rb

Overview

The response contains an array of Configuration and a next token if the response is truncated.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#configurationsArray<Types::Configuration>

An array of MSK configurations.

Returns:



2910
2911
2912
2913
2914
2915
# File 'gems/aws-sdk-kafka/lib/aws-sdk-kafka/types.rb', line 2910

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

#next_tokenString

The paginated results marker. When the result of a ListConfigurations operation is truncated, the call returns NextToken in the response. To get another batch of configurations, provide this token in your next request.

Returns:

  • (String)


2910
2911
2912
2913
2914
2915
# File 'gems/aws-sdk-kafka/lib/aws-sdk-kafka/types.rb', line 2910

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