TelcoNetworkBuilder.Paginator.
ListSolFunctionInstances
¶paginator = client.get_paginator('list_sol_function_instances')
paginate
(**kwargs)¶Creates an iterator that will paginate through responses from TelcoNetworkBuilder.Client.list_sol_function_instances()
.
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.
{
'functionInstances': [
{
'arn': 'string',
'id': 'string',
'instantiatedVnfInfo': {
'vnfState': 'STARTED'|'STOPPED'
},
'instantiationState': 'INSTANTIATED'|'NOT_INSTANTIATED',
'metadata': {
'createdAt': datetime(2015, 1, 1),
'lastModified': datetime(2015, 1, 1)
},
'nsInstanceId': 'string',
'vnfPkgId': 'string',
'vnfPkgName': 'string'
},
],
'NextToken': 'string'
}
Response Structure
Network function instances.
Lists information about a network function instance.
A network function instance is a function in a function package .
Network function instance ARN.
Network function instance ID.
Information about a network function.
A network instance is a single network created in Amazon Web Services TNB that can be deployed and on which life-cycle operations (like terminate, update, and delete) can be performed.
State of the network function.
Network function instance instantiation state.
Network function instance metadata.
When the network function instance was created.
When the network function instance was last modified.
Network instance ID.
Function package ID.
Function package name.
A token to resume pagination.