ManagedGrafana.Paginator.
ListWorkspaces
¶paginator = client.get_paginator('list_workspaces')
paginate
(**kwargs)¶Creates an iterator that will paginate through responses from ManagedGrafana.Client.list_workspaces()
.
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.
{
'workspaces': [
{
'authentication': {
'providers': [
'AWS_SSO'|'SAML',
],
'samlConfigurationStatus': 'CONFIGURED'|'NOT_CONFIGURED'
},
'created': datetime(2015, 1, 1),
'description': 'string',
'endpoint': 'string',
'grafanaVersion': 'string',
'id': 'string',
'modified': datetime(2015, 1, 1),
'name': 'string',
'notificationDestinations': [
'SNS',
],
'status': 'ACTIVE'|'CREATING'|'DELETING'|'FAILED'|'UPDATING'|'UPGRADING'|'DELETION_FAILED'|'CREATION_FAILED'|'UPDATE_FAILED'|'UPGRADE_FAILED'|'LICENSE_REMOVAL_FAILED',
'tags': {
'string': 'string'
}
},
],
'NextToken': 'string'
}
Response Structure
An array of structures that contain some information about the workspaces in the account.
A structure that contains some information about one workspace in the account.
A structure containing information about the authentication methods used in the workspace.
Specifies whether the workspace uses SAML, IAM Identity Center, or both methods for user authentication.
Specifies whether the workplace's user authentication method is fully configured.
The date that the workspace was created.
The customer-entered description of the workspace.
The URL endpoint to use to access the Grafana console in the workspace.
The Grafana version that the workspace is running.
The unique ID of the workspace.
The most recent date that the workspace was modified.
The name of the workspace.
The Amazon Web Services notification channels that Amazon Managed Grafana can automatically create IAM roles and permissions for, which allows Amazon Managed Grafana to use these channels.
The current status of the workspace.
The list of tags associated with the workspace.
A token to resume pagination.