BedrockAgentCoreControl / Paginator / ListPolicyEngineSummaries
ListPolicyEngineSummaries¶
- class BedrockAgentCoreControl.Paginator.ListPolicyEngineSummaries¶
paginator = client.get_paginator('list_policy_engine_summaries')
- paginate(**kwargs)¶
Creates an iterator that will paginate through responses from
BedrockAgentCoreControl.Client.list_policy_engine_summaries().See also: AWS API Documentation
Request Syntax
response_iterator = paginator.paginate( PaginationConfig={ 'MaxItems': 123, 'PageSize': 123, 'StartingToken': 'string' } )
- Parameters:
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
NextTokenwill 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
NextTokenfrom a previous response.
- Return type:
dict
- Returns:
Response Syntax
{ 'policyEngines': [ { 'policyEngineId': 'string', 'name': 'string', 'createdAt': datetime(2015, 1, 1), 'updatedAt': datetime(2015, 1, 1), 'policyEngineArn': 'string', 'status': 'CREATING'|'ACTIVE'|'UPDATING'|'DELETING'|'CREATE_FAILED'|'UPDATE_FAILED'|'DELETE_FAILED', 'encryptionKeyArn': 'string' }, ], 'NextToken': 'string' }
Response Structure
(dict) –
policyEngines (list) –
An array of policy engine summary objects that exist in the account. Each summary contains resource identifiers, status, and timestamps without customer-encrypted content.
(dict) –
Represents a metadata-only summary of a policy engine resource. This structure contains resource identifiers, status, and timestamps without customer-encrypted fields such as description or status reasons. Policy engine summaries are returned by operations that do not require access to the customer’s KMS key.
policyEngineId (string) –
The unique identifier for the policy engine.
name (string) –
The customer-assigned name of the policy engine.
createdAt (datetime) –
The timestamp when the policy engine was originally created.
updatedAt (datetime) –
The timestamp when the policy engine was last modified.
policyEngineArn (string) –
The Amazon Resource Name (ARN) of the policy engine.
status (string) –
The current status of the policy engine.
encryptionKeyArn (string) –
The Amazon Resource Name (ARN) of the KMS key used to encrypt the policy engine data.
NextToken (string) –
A token to resume pagination.