Class: Aws::Kafka::Types::ListReplicatorsResponse

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

Overview

The response contains an array containing replicator information and a NextToken if the response is truncated.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#next_tokenString

If the response of ListReplicators is truncated, it returns a NextToken in the response. This NextToken should be sent in the subsequent request to ListReplicators.

Returns:

  • (String)


3151
3152
3153
3154
3155
3156
# File 'gems/aws-sdk-kafka/lib/aws-sdk-kafka/types.rb', line 3151

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

#replicatorsArray<Types::ReplicatorSummary>

List containing information of each of the replicators in the account.

Returns:



3151
3152
3153
3154
3155
3156
# File 'gems/aws-sdk-kafka/lib/aws-sdk-kafka/types.rb', line 3151

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