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

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
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:



2929
2930
2931
2932
2933
2934
# File 'lib/aws-sdk-kafka/types.rb', line 2929

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)


2929
2930
2931
2932
2933
2934
# File 'lib/aws-sdk-kafka/types.rb', line 2929

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