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:



3093
3094
3095
3096
3097
3098
# File 'lib/aws-sdk-kafka/types.rb', line 3093

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)


3093
3094
3095
3096
3097
3098
# File 'lib/aws-sdk-kafka/types.rb', line 3093

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