Class: Aws::Kafka::Types::ListConfigurationsResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::Kafka::Types::ListConfigurationsResponse
- 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
-
#configurations ⇒ Array<Types::Configuration>
An array of MSK configurations.
-
#next_token ⇒ String
The paginated results marker.
Instance Attribute Details
#configurations ⇒ Array<Types::Configuration>
An array of MSK configurations.
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_token ⇒ String
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.
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 |