List Registries
| bedrockagentcorecontrol_list_registries | R Documentation |
Lists all registries in the account¶
Description¶
Lists all registries in the account. You can optionally filter results
by status using the status parameter, or by authorizer type using the
authorizerType parameter.
Usage¶
bedrockagentcorecontrol_list_registries(maxResults, nextToken, status,
authorizerType)
Arguments¶
maxResults |
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 |
nextToken |
If the total number of results is greater than the
|
status |
Filter registries by their current status. Possible values
include |
authorizerType |
Filter registries by their authorizer type. Possible values are
|
Value¶
A list with the following syntax:
list(
registries = list(
list(
name = "string",
description = "string",
registryId = "string",
registryArn = "string",
authorizerType = "CUSTOM_JWT"|"AWS_IAM",
status = "CREATING"|"READY"|"UPDATING"|"CREATE_FAILED"|"UPDATE_FAILED"|"DELETING"|"DELETE_FAILED",
statusReason = "string",
createdAt = as.POSIXct(
"2015-01-01"
),
updatedAt = as.POSIXct(
"2015-01-01"
)
)
),
nextToken = "string"
)
Request syntax¶
svc$list_registries(
maxResults = 123,
nextToken = "string",
status = "CREATING"|"READY"|"UPDATING"|"CREATE_FAILED"|"UPDATE_FAILED"|"DELETING"|"DELETE_FAILED",
authorizerType = "CUSTOM_JWT"|"AWS_IAM"
)