Class: Aws::KafkaConnect::Types::ListCustomPluginsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::KafkaConnect::Types::ListCustomPluginsRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-kafkaconnect/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max_results ⇒ Integer
The maximum number of custom plugins to list in one response.
-
#name_prefix ⇒ String
Lists custom plugin names that start with the specified text string.
-
#next_token ⇒ String
If the response of a ListCustomPlugins operation is truncated, it will include a NextToken.
Instance Attribute Details
#max_results ⇒ Integer
The maximum number of custom plugins to list in one response.
1313 1314 1315 1316 1317 1318 1319 |
# File 'lib/aws-sdk-kafkaconnect/types.rb', line 1313 class ListCustomPluginsRequest < Struct.new( :max_results, :name_prefix, :next_token) SENSITIVE = [] include Aws::Structure end |
#name_prefix ⇒ String
Lists custom plugin names that start with the specified text string.
1313 1314 1315 1316 1317 1318 1319 |
# File 'lib/aws-sdk-kafkaconnect/types.rb', line 1313 class ListCustomPluginsRequest < Struct.new( :max_results, :name_prefix, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
If the response of a ListCustomPlugins operation is truncated, it will include a NextToken. Send this NextToken in a subsequent request to continue listing from where the previous operation left off.
1313 1314 1315 1316 1317 1318 1319 |
# File 'lib/aws-sdk-kafkaconnect/types.rb', line 1313 class ListCustomPluginsRequest < Struct.new( :max_results, :name_prefix, :next_token) SENSITIVE = [] include Aws::Structure end |