VerifiedPermissions / Paginator / ListPolicies
ListPolicies#
- class VerifiedPermissions.Paginator.ListPolicies#
paginator = client.get_paginator('list_policies')
- paginate(**kwargs)#
Creates an iterator that will paginate through responses from
VerifiedPermissions.Client.list_policies()
.See also: AWS API Documentation
Request Syntax
response_iterator = paginator.paginate( policyStoreId='string', filter={ 'principal': { 'unspecified': True|False, 'identifier': { 'entityType': 'string', 'entityId': 'string' } }, 'resource': { 'unspecified': True|False, 'identifier': { 'entityType': 'string', 'entityId': 'string' } }, 'policyType': 'STATIC'|'TEMPLATE_LINKED', 'policyTemplateId': 'string' }, PaginationConfig={ 'MaxItems': 123, 'PageSize': 123, 'StartingToken': 'string' } )
- Parameters:
policyStoreId (string) –
[REQUIRED]
Specifies the ID of the policy store you want to list policies from.
filter (dict) –
Specifies a filter that limits the response to only policies that match the specified criteria. For example, you list only the policies that reference a specified principal.
principal (dict) –
Filters the output to only policies that reference the specified principal.
Note
This is a Tagged Union structure. Only one of the following top level keys can be set:
unspecified
,identifier
.unspecified (boolean) –
Used to indicate that a principal or resource is not specified. This can be used to search for policies that are not associated with a specific principal or resource.
identifier (dict) –
The identifier of the entity. It can consist of either an EntityType and EntityId, a principal, or a resource.
entityType (string) – [REQUIRED]
The type of an entity.
Example:
"entityType":"typeName"
entityId (string) – [REQUIRED]
The identifier of an entity.
"entityId":"identifier"
resource (dict) –
Filters the output to only policies that reference the specified resource.
Note
This is a Tagged Union structure. Only one of the following top level keys can be set:
unspecified
,identifier
.unspecified (boolean) –
Used to indicate that a principal or resource is not specified. This can be used to search for policies that are not associated with a specific principal or resource.
identifier (dict) –
The identifier of the entity. It can consist of either an EntityType and EntityId, a principal, or a resource.
entityType (string) – [REQUIRED]
The type of an entity.
Example:
"entityType":"typeName"
entityId (string) – [REQUIRED]
The identifier of an entity.
"entityId":"identifier"
policyType (string) –
Filters the output to only policies of the specified type.
policyTemplateId (string) –
Filters the output to only template-linked policies that were instantiated from the specified policy template.
PaginationConfig (dict) –
A dictionary that provides parameters to control pagination.
MaxItems (integer) –
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.PageSize (integer) –
The size of each page.
StartingToken (string) –
A token to specify where to start paginating. This is the
NextToken
from a previous response.
- Return type:
dict
- Returns:
Response Syntax
{ 'policies': [ { 'policyStoreId': 'string', 'policyId': 'string', 'policyType': 'STATIC'|'TEMPLATE_LINKED', 'principal': { 'entityType': 'string', 'entityId': 'string' }, 'resource': { 'entityType': 'string', 'entityId': 'string' }, 'definition': { 'static': { 'description': 'string' }, 'templateLinked': { 'policyTemplateId': 'string', 'principal': { 'entityType': 'string', 'entityId': 'string' }, 'resource': { 'entityType': 'string', 'entityId': 'string' } } }, 'createdDate': datetime(2015, 1, 1), 'lastUpdatedDate': datetime(2015, 1, 1) }, ], 'NextToken': 'string' }
Response Structure
(dict) –
policies (list) –
Lists all policies that are available in the specified policy store.
(dict) –
Contains information about a policy.
This data type is used as a response parameter for the ListPolicies operation.
policyStoreId (string) –
The identifier of the PolicyStore where the policy you want information about is stored.
policyId (string) –
The identifier of the policy you want information about.
policyType (string) –
The type of the policy. This is one of the following values:
static
templateLinked
principal (dict) –
The principal associated with the policy.
entityType (string) –
The type of an entity.
Example:
"entityType":"typeName"
entityId (string) –
The identifier of an entity.
"entityId":"identifier"
resource (dict) –
The resource associated with the policy.
entityType (string) –
The type of an entity.
Example:
"entityType":"typeName"
entityId (string) –
The identifier of an entity.
"entityId":"identifier"
definition (dict) –
The policy definition of an item in the list of policies returned.
Note
This is a Tagged Union structure. Only one of the following top level keys will be set:
static
,templateLinked
. If a client receives an unknown member it will setSDK_UNKNOWN_MEMBER
as the top level key, which maps to the name or tag of the unknown member. The structure ofSDK_UNKNOWN_MEMBER
is as follows:'SDK_UNKNOWN_MEMBER': {'name': 'UnknownMemberName'}
static (dict) –
Information about a static policy that wasn’t created with a policy template.
description (string) –
A description of the static policy.
templateLinked (dict) –
Information about a template-linked policy that was created by instantiating a policy template.
policyTemplateId (string) –
The unique identifier of the policy template used to create this policy.
principal (dict) –
The principal associated with this template-linked policy. Verified Permissions substitutes this principal for the
?principal
placeholder in the policy template when it evaluates an authorization request.entityType (string) –
The type of an entity.
Example:
"entityType":"typeName"
entityId (string) –
The identifier of an entity.
"entityId":"identifier"
resource (dict) –
The resource associated with this template-linked policy. Verified Permissions substitutes this resource for the
?resource
placeholder in the policy template when it evaluates an authorization request.entityType (string) –
The type of an entity.
Example:
"entityType":"typeName"
entityId (string) –
The identifier of an entity.
"entityId":"identifier"
createdDate (datetime) –
The date and time the policy was created.
lastUpdatedDate (datetime) –
The date and time the policy was most recently updated.
NextToken (string) –
A token to resume pagination.