get_registry_record¶
Operation¶
get_registry_record
async
¶
get_registry_record(input: GetRegistryRecordInput, plugins: list[Plugin] | None = None) -> GetRegistryRecordOutput
Retrieves information about a specific registry record.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
input
|
GetRegistryRecordInput
|
An instance of |
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 |
|---|---|
GetRegistryRecordOutput
|
An instance of |
Input¶
GetRegistryRecordInput
dataclass
¶
Dataclass for GetRegistryRecordInput structure.
Attributes¶
record_id
class-attribute
instance-attribute
¶
record_id: str | None = None
The identifier of the registry record to retrieve. 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¶
GetRegistryRecordOutput
dataclass
¶
Dataclass for GetRegistryRecordOutput structure.
Attributes¶
created_at
instance-attribute
¶
created_at: datetime
The timestamp when the registry record was created.
description
class-attribute
instance-attribute
¶
description: str | None = field(repr=False, default=None)
The description of the registry record.
descriptor_type
instance-attribute
¶
descriptor_type: DescriptorType
The descriptor type of the registry record. Possible values are MCP,
A2A, CUSTOM, and AGENT_SKILLS.
descriptors
instance-attribute
¶
descriptors: Descriptors
The descriptor-type-specific configuration containing the resource
schema and metadata. For details, see the Descriptors data type.
record_arn
instance-attribute
¶
record_arn: str
The Amazon Resource Name (ARN) of the registry record.
record_version
class-attribute
instance-attribute
¶
record_version: str | None = None
The version of the registry record.
registry_arn
instance-attribute
¶
registry_arn: str
The Amazon Resource Name (ARN) of the registry that contains the record.
status
instance-attribute
¶
status: RegistryRecordStatus
The current status of the registry record. Possible values include
CREATING, DRAFT, APPROVED, PENDING_APPROVAL, REJECTED,
DEPRECATED, UPDATING, CREATE_FAILED, and UPDATE_FAILED. A record
transitions from CREATING to DRAFT, then to PENDING_APPROVAL (via
SubmitRegistryRecordForApproval), and finally to APPROVED upon
approval.
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.
synchronization_configuration
class-attribute
instance-attribute
¶
synchronization_configuration: SynchronizationConfiguration | None = None
The configuration for synchronizing registry record metadata from an external source.
synchronization_type
class-attribute
instance-attribute
¶
synchronization_type: SynchronizationType | None = None
The type of synchronization used for this record.
updated_at
instance-attribute
¶
updated_at: datetime
The timestamp when the registry record was last updated.