Skip to content

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 field when making another request to return the next batch of results.

nextToken

If the total number of results is greater than the maxResults value provided in the request, enter the token returned in the nextToken field in the response in this field to return the next batch of results.

status

Filter registries by their current status. Possible values include CREATING, READY, UPDATING, CREATE_FAILED, UPDATE_FAILED, DELETING, and DELETE_FAILED.

authorizerType

Filter registries by their authorizer type. Possible values are CUSTOM_JWT and AWS_IAM. For more information about authorizer types, see the RegistryAuthorizerType enum.

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"
)