KafkaConnect.Paginator.
ListCustomPlugins
¶paginator = client.get_paginator('list_custom_plugins')
paginate
(**kwargs)¶Creates an iterator that will paginate through responses from KafkaConnect.Client.list_custom_plugins()
.
See also: AWS API Documentation
Request Syntax
response_iterator = paginator.paginate(
PaginationConfig={
'MaxItems': 123,
'PageSize': 123,
'StartingToken': 'string'
}
)
A dictionary that provides parameters to control pagination.
The total number of items to return. If the total number of items available is more than the value specified in max-items then a NextToken
will be provided in the output that you can use to resume pagination.
The size of each page.
A token to specify where to start paginating. This is the NextToken
from a previous response.
{
'customPlugins': [
{
'creationTime': datetime(2015, 1, 1),
'customPluginArn': 'string',
'customPluginState': 'CREATING'|'CREATE_FAILED'|'ACTIVE'|'UPDATING'|'UPDATE_FAILED'|'DELETING',
'description': 'string',
'latestRevision': {
'contentType': 'JAR'|'ZIP',
'creationTime': datetime(2015, 1, 1),
'description': 'string',
'fileDescription': {
'fileMd5': 'string',
'fileSize': 123
},
'location': {
's3Location': {
'bucketArn': 'string',
'fileKey': 'string',
'objectVersion': 'string'
}
},
'revision': 123
},
'name': 'string'
},
],
'NextToken': 'string'
}
Response Structure
An array of custom plugin descriptions.
A summary of the custom plugin.
The time that the custom plugin was created.
The Amazon Resource Name (ARN) of the custom plugin.
The state of the custom plugin.
A description of the custom plugin.
The latest revision of the custom plugin.
The format of the plugin file.
The time that the custom plugin was created.
The description of the custom plugin.
Details about the custom plugin file.
The hex-encoded MD5 checksum of the custom plugin file. You can use it to validate the file.
The size in bytes of the custom plugin file. You can use it to validate the file.
Information about the location of the custom plugin.
The S3 bucket Amazon Resource Name (ARN), file key, and object version of the plugin file stored in Amazon S3.
The Amazon Resource Name (ARN) of an S3 bucket.
The file key for an object in an S3 bucket.
The version of an object in an S3 bucket.
The revision of the custom plugin.
The name of the custom plugin.
A token to resume pagination.