Skip to content

Bedrock Agentcore Control  >  Operations  >  get_registry

get_registry

Operation

get_registry async

get_registry(input: GetRegistryInput, plugins: list[Plugin] | None = None) -> GetRegistryOutput

Retrieves information about a specific registry.

Parameters:

Name Type Description Default
input GetRegistryInput

An instance of GetRegistryInput.

required
plugins list[Plugin] | None

A list of callables that modify the configuration dynamically. Changes made by these plugins only apply for the duration of the operation execution and will not affect any other operation invocations.

None

Returns:

Type Description
GetRegistryOutput

An instance of GetRegistryOutput.

Input

GetRegistryInput dataclass

Dataclass for GetRegistryInput structure.

Attributes

registry_id class-attribute instance-attribute
registry_id: str | None = None

The identifier of the registry to retrieve. You can specify either the Amazon Resource Name (ARN) or the ID of the registry.

Output

GetRegistryOutput dataclass

Dataclass for GetRegistryOutput structure.

Attributes

approval_configuration class-attribute instance-attribute
approval_configuration: ApprovalConfiguration | None = None

The approval configuration for registry records. For details, see the ApprovalConfiguration data type.

authorizer_configuration class-attribute instance-attribute
authorizer_configuration: AuthorizerConfiguration | None = None

The authorizer configuration for the registry. For details, see the AuthorizerConfiguration data type.

authorizer_type class-attribute instance-attribute
authorizer_type: RegistryAuthorizerType | None = None

The type of authorizer used by the registry. This controls the authorization method for the Search and Invoke APIs used by consumers.

  • CUSTOM_JWT - Authorize with a bearer token.

  • AWS_IAM - Authorize with your Amazon Web Services IAM credentials.

created_at instance-attribute
created_at: datetime

The timestamp when the registry was created.

description class-attribute instance-attribute
description: str | None = field(repr=False, default=None)

The description of the registry.

name instance-attribute
name: str

The name of the registry.

registry_arn instance-attribute
registry_arn: str

The Amazon Resource Name (ARN) of the registry.

registry_id instance-attribute
registry_id: str

The unique identifier of the registry.

status instance-attribute

The current status of the registry. Possible values include CREATING, READY, UPDATING, CREATE_FAILED, UPDATE_FAILED, DELETING, and DELETE_FAILED.

status_reason class-attribute instance-attribute
status_reason: str | None = None

The reason for the current status, typically set when the status is a failure state.

updated_at instance-attribute
updated_at: datetime

The timestamp when the registry was last updated.