BedrockAgentCoreControl / Client / list_configuration_bundles
list_configuration_bundles¶
- BedrockAgentCoreControl.Client.list_configuration_bundles(**kwargs)¶
Lists all configuration bundles in the account.
See also: AWS API Documentation
Request Syntax
response = client.list_configuration_bundles( nextToken='string', maxResults=123 )
- Parameters:
nextToken (string) – If the total number of results is greater than the
maxResultsvalue provided in the request, enter the token returned in thenextTokenfield in the response in this field to return the next batch of results.maxResults (integer) – The maximum number of results to return in the response. If the total number of results is greater than this value, use the token returned in the response in the
nextTokenfield when making another request to return the next batch of results.
- Return type:
dict
- Returns:
Response Syntax
{ 'bundles': [ { 'bundleArn': 'string', 'bundleId': 'string', 'bundleName': 'string', 'description': 'string', 'createdAt': datetime(2015, 1, 1) }, ], 'nextToken': 'string' }
Response Structure
(dict) –
bundles (list) –
The list of configuration bundle summaries.
(dict) –
Summary information about a configuration bundle.
bundleArn (string) –
The Amazon Resource Name (ARN) of the configuration bundle.
bundleId (string) –
The unique identifier of the configuration bundle.
bundleName (string) –
The name of the configuration bundle.
description (string) –
The description of the configuration bundle.
createdAt (datetime) –
The timestamp when the configuration bundle was created.
nextToken (string) –
If the total number of results is greater than the
maxResultsvalue provided in the request, use this token when making another request in thenextTokenfield to return the next batch of results.
Exceptions
BedrockAgentCoreControl.Client.exceptions.ValidationExceptionBedrockAgentCoreControl.Client.exceptions.AccessDeniedExceptionBedrockAgentCoreControl.Client.exceptions.ThrottlingExceptionBedrockAgentCoreControl.Client.exceptions.InternalServerException