Skip to content

Bedrock Agentcore Control  >  Operations  >  delete_registry_record

delete_registry_record

Operation

delete_registry_record async

delete_registry_record(input: DeleteRegistryRecordInput, plugins: list[Plugin] | None = None) -> DeleteRegistryRecordOutput

Deletes a registry record. The record's status transitions to DELETING and the record is removed asynchronously.

Parameters:

Name Type Description Default
input DeleteRegistryRecordInput

An instance of DeleteRegistryRecordInput.

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
DeleteRegistryRecordOutput

An instance of DeleteRegistryRecordOutput.

Input

DeleteRegistryRecordInput dataclass

Dataclass for DeleteRegistryRecordInput structure.

Attributes

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

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

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

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

Output

DeleteRegistryRecordOutput dataclass

Dataclass for DeleteRegistryRecordOutput structure.