Class: Aws::Kafka::Types::ListChannelsResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::Kafka::Types::ListChannelsResponse
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-kafka/types.rb
Overview
Returns the list of channels in the cluster.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#channels ⇒ Array<Types::ChannelInfo>
The list of channels in the cluster.
-
#next_token ⇒ String
If the response from ListChannels is truncated, this token is included.
Instance Attribute Details
#channels ⇒ Array<Types::ChannelInfo>
The list of channels in the cluster.
3929 3930 3931 3932 3933 3934 |
# File 'lib/aws-sdk-kafka/types.rb', line 3929 class ListChannelsResponse < Struct.new( :channels, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
If the response from ListChannels is truncated, this token is included. Send it as the nextToken parameter on a subsequent ListChannels call to retrieve the next page.
3929 3930 3931 3932 3933 3934 |
# File 'lib/aws-sdk-kafka/types.rb', line 3929 class ListChannelsResponse < Struct.new( :channels, :next_token) SENSITIVE = [] include Aws::Structure end |