Class: Aws::BedrockAgentCoreControl::Types::GetRegistryResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockAgentCoreControl::Types::GetRegistryResponse
- Defined in:
- gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[:description]
Instance Attribute Summary collapse
-
#approval_configuration ⇒ Types::ApprovalConfiguration
The approval configuration for registry records.
-
#authorizer_configuration ⇒ Types::AuthorizerConfiguration
The authorizer configuration for the registry.
-
#authorizer_type ⇒ String
The type of authorizer used by the registry.
-
#created_at ⇒ Time
The timestamp when the registry was created.
-
#description ⇒ String
The description of the registry.
-
#name ⇒ String
The name of the registry.
-
#registry_arn ⇒ String
The Amazon Resource Name (ARN) of the registry.
-
#registry_id ⇒ String
The unique identifier of the registry.
-
#status ⇒ String
The current status of the registry.
-
#status_reason ⇒ String
The reason for the current status, typically set when the status is a failure state.
-
#updated_at ⇒ Time
The timestamp when the registry was last updated.
Instance Attribute Details
#approval_configuration ⇒ Types::ApprovalConfiguration
The approval configuration for registry records. For details, see
the ApprovalConfiguration data type.
8234 8235 8236 8237 8238 8239 8240 8241 8242 8243 8244 8245 8246 8247 8248 |
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 8234 class GetRegistryResponse < Struct.new( :name, :description, :registry_id, :registry_arn, :authorizer_type, :authorizer_configuration, :approval_configuration, :status, :status_reason, :created_at, :updated_at) SENSITIVE = [:description] include Aws::Structure end |
#authorizer_configuration ⇒ Types::AuthorizerConfiguration
The authorizer configuration for the registry. For details, see the
AuthorizerConfiguration data type.
8234 8235 8236 8237 8238 8239 8240 8241 8242 8243 8244 8245 8246 8247 8248 |
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 8234 class GetRegistryResponse < Struct.new( :name, :description, :registry_id, :registry_arn, :authorizer_type, :authorizer_configuration, :approval_configuration, :status, :status_reason, :created_at, :updated_at) SENSITIVE = [:description] include Aws::Structure end |
#authorizer_type ⇒ String
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.
8234 8235 8236 8237 8238 8239 8240 8241 8242 8243 8244 8245 8246 8247 8248 |
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 8234 class GetRegistryResponse < Struct.new( :name, :description, :registry_id, :registry_arn, :authorizer_type, :authorizer_configuration, :approval_configuration, :status, :status_reason, :created_at, :updated_at) SENSITIVE = [:description] include Aws::Structure end |
#created_at ⇒ Time
The timestamp when the registry was created.
8234 8235 8236 8237 8238 8239 8240 8241 8242 8243 8244 8245 8246 8247 8248 |
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 8234 class GetRegistryResponse < Struct.new( :name, :description, :registry_id, :registry_arn, :authorizer_type, :authorizer_configuration, :approval_configuration, :status, :status_reason, :created_at, :updated_at) SENSITIVE = [:description] include Aws::Structure end |
#description ⇒ String
The description of the registry.
8234 8235 8236 8237 8238 8239 8240 8241 8242 8243 8244 8245 8246 8247 8248 |
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 8234 class GetRegistryResponse < Struct.new( :name, :description, :registry_id, :registry_arn, :authorizer_type, :authorizer_configuration, :approval_configuration, :status, :status_reason, :created_at, :updated_at) SENSITIVE = [:description] include Aws::Structure end |
#name ⇒ String
The name of the registry.
8234 8235 8236 8237 8238 8239 8240 8241 8242 8243 8244 8245 8246 8247 8248 |
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 8234 class GetRegistryResponse < Struct.new( :name, :description, :registry_id, :registry_arn, :authorizer_type, :authorizer_configuration, :approval_configuration, :status, :status_reason, :created_at, :updated_at) SENSITIVE = [:description] include Aws::Structure end |
#registry_arn ⇒ String
The Amazon Resource Name (ARN) of the registry.
8234 8235 8236 8237 8238 8239 8240 8241 8242 8243 8244 8245 8246 8247 8248 |
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 8234 class GetRegistryResponse < Struct.new( :name, :description, :registry_id, :registry_arn, :authorizer_type, :authorizer_configuration, :approval_configuration, :status, :status_reason, :created_at, :updated_at) SENSITIVE = [:description] include Aws::Structure end |
#registry_id ⇒ String
The unique identifier of the registry.
8234 8235 8236 8237 8238 8239 8240 8241 8242 8243 8244 8245 8246 8247 8248 |
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 8234 class GetRegistryResponse < Struct.new( :name, :description, :registry_id, :registry_arn, :authorizer_type, :authorizer_configuration, :approval_configuration, :status, :status_reason, :created_at, :updated_at) SENSITIVE = [:description] include Aws::Structure end |
#status ⇒ String
The current status of the registry. Possible values include
CREATING, READY, UPDATING, CREATE_FAILED, UPDATE_FAILED,
DELETING, and DELETE_FAILED.
8234 8235 8236 8237 8238 8239 8240 8241 8242 8243 8244 8245 8246 8247 8248 |
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 8234 class GetRegistryResponse < Struct.new( :name, :description, :registry_id, :registry_arn, :authorizer_type, :authorizer_configuration, :approval_configuration, :status, :status_reason, :created_at, :updated_at) SENSITIVE = [:description] include Aws::Structure end |
#status_reason ⇒ String
The reason for the current status, typically set when the status is a failure state.
8234 8235 8236 8237 8238 8239 8240 8241 8242 8243 8244 8245 8246 8247 8248 |
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 8234 class GetRegistryResponse < Struct.new( :name, :description, :registry_id, :registry_arn, :authorizer_type, :authorizer_configuration, :approval_configuration, :status, :status_reason, :created_at, :updated_at) SENSITIVE = [:description] include Aws::Structure end |
#updated_at ⇒ Time
The timestamp when the registry was last updated.
8234 8235 8236 8237 8238 8239 8240 8241 8242 8243 8244 8245 8246 8247 8248 |
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 8234 class GetRegistryResponse < Struct.new( :name, :description, :registry_id, :registry_arn, :authorizer_type, :authorizer_configuration, :approval_configuration, :status, :status_reason, :created_at, :updated_at) SENSITIVE = [:description] include Aws::Structure end |