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 |
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 |
Input¶
GetRegistryInput
dataclass
¶
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.
description
class-attribute
instance-attribute
¶
description: str | None = field(repr=False, default=None)
The description of the registry.
status
instance-attribute
¶
status: RegistryStatus
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.