aws-sdk-bedrockagentcorecontrol 1.36.0 → 1.37.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -10,6 +10,23 @@
10
10
  module Aws::BedrockAgentCoreControl
11
11
  module Types
12
12
 
13
+ # The Agent-to-Agent (A2A) protocol descriptor for a registry record.
14
+ # Contains the agent card definition as defined by the A2A protocol
15
+ # specification.
16
+ #
17
+ # @!attribute [rw] agent_card
18
+ # The agent card definition for the A2A agent, as defined by the A2A
19
+ # protocol specification.
20
+ # @return [Types::AgentCardDefinition]
21
+ #
22
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/A2aDescriptor AWS API Documentation
23
+ #
24
+ class A2aDescriptor < Struct.new(
25
+ :agent_card)
26
+ SENSITIVE = []
27
+ include Aws::Structure
28
+ end
29
+
13
30
  # This exception is thrown when a request is denied per access
14
31
  # permissions
15
32
  #
@@ -24,6 +41,28 @@ module Aws::BedrockAgentCoreControl
24
41
  include Aws::Structure
25
42
  end
26
43
 
44
+ # The agent card definition for an A2A descriptor. Contains the schema
45
+ # version and inline content for the agent card.
46
+ #
47
+ # @!attribute [rw] schema_version
48
+ # The schema version of the agent card based on the A2A protocol
49
+ # specification.
50
+ # @return [String]
51
+ #
52
+ # @!attribute [rw] inline_content
53
+ # The JSON content containing the A2A agent card definition,
54
+ # conforming to the A2A protocol specification.
55
+ # @return [String]
56
+ #
57
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/AgentCardDefinition AWS API Documentation
58
+ #
59
+ class AgentCardDefinition < Struct.new(
60
+ :schema_version,
61
+ :inline_content)
62
+ SENSITIVE = []
63
+ include Aws::Structure
64
+ end
65
+
27
66
  # Contains information about an agent runtime. An agent runtime is the
28
67
  # execution environment for a Amazon Bedrock AgentCore Agent.
29
68
  #
@@ -162,6 +201,28 @@ module Aws::BedrockAgentCoreControl
162
201
  include Aws::Structure
163
202
  end
164
203
 
204
+ # The agent skills descriptor for a registry record. Contains an
205
+ # optional skill markdown definition in human-readable format and an
206
+ # optional structured skill definition.
207
+ #
208
+ # @!attribute [rw] skill_md
209
+ # The optional skill markdown definition describing the agent's
210
+ # skills in a human-readable format.
211
+ # @return [Types::SkillMdDefinition]
212
+ #
213
+ # @!attribute [rw] skill_definition
214
+ # The structured skill definition with schema version and content.
215
+ # @return [Types::SkillDefinition]
216
+ #
217
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/AgentSkillsDescriptor AWS API Documentation
218
+ #
219
+ class AgentSkillsDescriptor < Struct.new(
220
+ :skill_md,
221
+ :skill_definition)
222
+ SENSITIVE = []
223
+ include Aws::Structure
224
+ end
225
+
165
226
  # The configuration for an Amazon API Gateway target.
166
227
  #
167
228
  # @!attribute [rw] rest_api_id
@@ -358,6 +419,25 @@ module Aws::BedrockAgentCoreControl
358
419
  class Unknown < ApiSchemaConfiguration; end
359
420
  end
360
421
 
422
+ # Configuration for the registry record approval workflow. Controls
423
+ # whether records added to the registry require explicit approval before
424
+ # becoming active.
425
+ #
426
+ # @!attribute [rw] auto_approval
427
+ # Whether registry records are auto-approved. When set to `true`,
428
+ # records are automatically approved upon creation. When set to
429
+ # `false` (the default), records require explicit approval for
430
+ # security purposes.
431
+ # @return [Boolean]
432
+ #
433
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ApprovalConfiguration AWS API Documentation
434
+ #
435
+ class ApprovalConfiguration < Struct.new(
436
+ :auto_approval)
437
+ SENSITIVE = []
438
+ include Aws::Structure
439
+ end
440
+
361
441
  # Configuration settings for connecting to Atlassian services using
362
442
  # OAuth2 authentication. This includes the client credentials required
363
443
  # to authenticate with Atlassian's OAuth2 authorization server.
@@ -2574,6 +2654,183 @@ module Aws::BedrockAgentCoreControl
2574
2654
  include Aws::Structure
2575
2655
  end
2576
2656
 
2657
+ # @!attribute [rw] registry_id
2658
+ # The identifier of the registry where the record will be created. You
2659
+ # can specify either the Amazon Resource Name (ARN) or the ID of the
2660
+ # registry.
2661
+ # @return [String]
2662
+ #
2663
+ # @!attribute [rw] name
2664
+ # The name of the registry record.
2665
+ # @return [String]
2666
+ #
2667
+ # @!attribute [rw] description
2668
+ # A description of the registry record.
2669
+ # @return [String]
2670
+ #
2671
+ # @!attribute [rw] descriptor_type
2672
+ # The descriptor type of the registry record.
2673
+ #
2674
+ # * `MCP` - Model Context Protocol descriptor for MCP-compatible
2675
+ # servers and tools.
2676
+ #
2677
+ # * `A2A` - Agent-to-Agent protocol descriptor.
2678
+ #
2679
+ # * `CUSTOM` - Custom descriptor type for resources such as APIs,
2680
+ # Lambda functions, or servers not conforming to a standard
2681
+ # protocol.
2682
+ #
2683
+ # * `AGENT_SKILLS` - Agent skills descriptor for defining agent skill
2684
+ # definitions.
2685
+ # @return [String]
2686
+ #
2687
+ # @!attribute [rw] descriptors
2688
+ # The descriptor-type-specific configuration containing the resource
2689
+ # schema and metadata. The structure of this field depends on the
2690
+ # `descriptorType` you specify.
2691
+ # @return [Types::Descriptors]
2692
+ #
2693
+ # @!attribute [rw] record_version
2694
+ # The version of the registry record. Use this to track different
2695
+ # versions of the record's content.
2696
+ # @return [String]
2697
+ #
2698
+ # @!attribute [rw] synchronization_type
2699
+ # The type of synchronization to use for keeping the record metadata
2700
+ # up to date from an external source. Possible values include
2701
+ # `FROM_URL` and `NONE`.
2702
+ # @return [String]
2703
+ #
2704
+ # @!attribute [rw] synchronization_configuration
2705
+ # The configuration for synchronizing registry record metadata from an
2706
+ # external source, such as a URL-based MCP server.
2707
+ # @return [Types::SynchronizationConfiguration]
2708
+ #
2709
+ # @!attribute [rw] client_token
2710
+ # A unique, case-sensitive identifier to ensure that the API request
2711
+ # completes no more than one time. If you don't specify this field, a
2712
+ # value is randomly generated for you. If this token matches a
2713
+ # previous request, the service ignores the request, but doesn't
2714
+ # return an error. For more information, see [Ensuring
2715
+ # idempotency][1].
2716
+ #
2717
+ # **A suitable default value is auto-generated.** You should normally
2718
+ # not need to pass this option.
2719
+ #
2720
+ #
2721
+ #
2722
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html
2723
+ # @return [String]
2724
+ #
2725
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CreateRegistryRecordRequest AWS API Documentation
2726
+ #
2727
+ class CreateRegistryRecordRequest < Struct.new(
2728
+ :registry_id,
2729
+ :name,
2730
+ :description,
2731
+ :descriptor_type,
2732
+ :descriptors,
2733
+ :record_version,
2734
+ :synchronization_type,
2735
+ :synchronization_configuration,
2736
+ :client_token)
2737
+ SENSITIVE = [:description]
2738
+ include Aws::Structure
2739
+ end
2740
+
2741
+ # @!attribute [rw] record_arn
2742
+ # The Amazon Resource Name (ARN) of the created registry record.
2743
+ # @return [String]
2744
+ #
2745
+ # @!attribute [rw] status
2746
+ # The status of the registry record. Set to `CREATING` while the
2747
+ # asynchronous workflow is in progress.
2748
+ # @return [String]
2749
+ #
2750
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CreateRegistryRecordResponse AWS API Documentation
2751
+ #
2752
+ class CreateRegistryRecordResponse < Struct.new(
2753
+ :record_arn,
2754
+ :status)
2755
+ SENSITIVE = []
2756
+ include Aws::Structure
2757
+ end
2758
+
2759
+ # @!attribute [rw] name
2760
+ # The name of the registry. The name must be unique within your
2761
+ # account and can contain alphanumeric characters and underscores.
2762
+ # @return [String]
2763
+ #
2764
+ # @!attribute [rw] description
2765
+ # A description of the registry.
2766
+ # @return [String]
2767
+ #
2768
+ # @!attribute [rw] authorizer_type
2769
+ # The type of authorizer to use for the registry. This controls the
2770
+ # authorization method for the Search and Invoke APIs used by
2771
+ # consumers, and does not affect the standard CRUDL APIs for registry
2772
+ # and registry record management used by administrators.
2773
+ #
2774
+ # * `CUSTOM_JWT` - Authorize with a bearer token.
2775
+ #
2776
+ # * `AWS_IAM` - Authorize with your Amazon Web Services IAM
2777
+ # credentials.
2778
+ # @return [String]
2779
+ #
2780
+ # @!attribute [rw] authorizer_configuration
2781
+ # The authorizer configuration for the registry. Required if
2782
+ # `authorizerType` is `CUSTOM_JWT`. For details, see the
2783
+ # `AuthorizerConfiguration` data type.
2784
+ # @return [Types::AuthorizerConfiguration]
2785
+ #
2786
+ # @!attribute [rw] client_token
2787
+ # A unique, case-sensitive identifier to ensure that the API request
2788
+ # completes no more than one time. If you don't specify this field, a
2789
+ # value is randomly generated for you. If this token matches a
2790
+ # previous request, the service ignores the request, but doesn't
2791
+ # return an error. For more information, see [Ensuring
2792
+ # idempotency][1].
2793
+ #
2794
+ # **A suitable default value is auto-generated.** You should normally
2795
+ # not need to pass this option.
2796
+ #
2797
+ #
2798
+ #
2799
+ # [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html
2800
+ # @return [String]
2801
+ #
2802
+ # @!attribute [rw] approval_configuration
2803
+ # The approval configuration for registry records. Controls whether
2804
+ # records require explicit approval before becoming active. See the
2805
+ # `ApprovalConfiguration` data type for supported configuration
2806
+ # options.
2807
+ # @return [Types::ApprovalConfiguration]
2808
+ #
2809
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CreateRegistryRequest AWS API Documentation
2810
+ #
2811
+ class CreateRegistryRequest < Struct.new(
2812
+ :name,
2813
+ :description,
2814
+ :authorizer_type,
2815
+ :authorizer_configuration,
2816
+ :client_token,
2817
+ :approval_configuration)
2818
+ SENSITIVE = [:description]
2819
+ include Aws::Structure
2820
+ end
2821
+
2822
+ # @!attribute [rw] registry_arn
2823
+ # The Amazon Resource Name (ARN) of the created registry.
2824
+ # @return [String]
2825
+ #
2826
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CreateRegistryResponse AWS API Documentation
2827
+ #
2828
+ class CreateRegistryResponse < Struct.new(
2829
+ :registry_arn)
2830
+ SENSITIVE = []
2831
+ include Aws::Structure
2832
+ end
2833
+
2577
2834
  # @!attribute [rw] name
2578
2835
  # The name of the workload identity. The name must be unique within
2579
2836
  # your account.
@@ -2844,6 +3101,23 @@ module Aws::BedrockAgentCoreControl
2844
3101
  class Unknown < CustomConsolidationConfigurationInput; end
2845
3102
  end
2846
3103
 
3104
+ # A custom descriptor for a registry record. Use this for resources such
3105
+ # as APIs, Lambda functions, or servers that do not conform to a
3106
+ # standard protocol like MCP or A2A.
3107
+ #
3108
+ # @!attribute [rw] inline_content
3109
+ # The custom descriptor content as a valid JSON document. You can
3110
+ # define any custom schema that describes your resource.
3111
+ # @return [String]
3112
+ #
3113
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CustomDescriptor AWS API Documentation
3114
+ #
3115
+ class CustomDescriptor < Struct.new(
3116
+ :inline_content)
3117
+ SENSITIVE = []
3118
+ include Aws::Structure
3119
+ end
3120
+
2847
3121
  # Contains custom extraction configuration information.
2848
3122
  #
2849
3123
  # @note CustomExtractionConfiguration is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of CustomExtractionConfiguration corresponding to the set member.
@@ -3740,6 +4014,57 @@ module Aws::BedrockAgentCoreControl
3740
4014
  include Aws::Structure
3741
4015
  end
3742
4016
 
4017
+ # @!attribute [rw] registry_id
4018
+ # The identifier of the registry containing the record. You can
4019
+ # specify either the Amazon Resource Name (ARN) or the ID of the
4020
+ # registry.
4021
+ # @return [String]
4022
+ #
4023
+ # @!attribute [rw] record_id
4024
+ # The identifier of the registry record to delete. You can specify
4025
+ # either the Amazon Resource Name (ARN) or the ID of the record.
4026
+ # @return [String]
4027
+ #
4028
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/DeleteRegistryRecordRequest AWS API Documentation
4029
+ #
4030
+ class DeleteRegistryRecordRequest < Struct.new(
4031
+ :registry_id,
4032
+ :record_id)
4033
+ SENSITIVE = []
4034
+ include Aws::Structure
4035
+ end
4036
+
4037
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/DeleteRegistryRecordResponse AWS API Documentation
4038
+ #
4039
+ class DeleteRegistryRecordResponse < Aws::EmptyStructure; end
4040
+
4041
+ # @!attribute [rw] registry_id
4042
+ # The identifier of the registry to delete. You can specify either the
4043
+ # Amazon Resource Name (ARN) or the ID of the registry.
4044
+ # @return [String]
4045
+ #
4046
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/DeleteRegistryRequest AWS API Documentation
4047
+ #
4048
+ class DeleteRegistryRequest < Struct.new(
4049
+ :registry_id)
4050
+ SENSITIVE = []
4051
+ include Aws::Structure
4052
+ end
4053
+
4054
+ # @!attribute [rw] status
4055
+ # The current status of the registry, set to `DELETING` when deletion
4056
+ # is initiated. For a list of all possible registry statuses, see the
4057
+ # `RegistryStatus` data type.
4058
+ # @return [String]
4059
+ #
4060
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/DeleteRegistryResponse AWS API Documentation
4061
+ #
4062
+ class DeleteRegistryResponse < Struct.new(
4063
+ :status)
4064
+ SENSITIVE = []
4065
+ include Aws::Structure
4066
+ end
4067
+
3743
4068
  # @!attribute [rw] resource_arn
3744
4069
  # The Amazon Resource Name (ARN) of the resource for which to delete
3745
4070
  # the resource policy.
@@ -3773,6 +4098,41 @@ module Aws::BedrockAgentCoreControl
3773
4098
  #
3774
4099
  class DeleteWorkloadIdentityResponse < Aws::EmptyStructure; end
3775
4100
 
4101
+ # Contains descriptor-type-specific configurations for a registry
4102
+ # record. Only the descriptor matching the record's `descriptorType`
4103
+ # should be populated.
4104
+ #
4105
+ # @!attribute [rw] mcp
4106
+ # The Model Context Protocol (MCP) descriptor configuration. Use this
4107
+ # when the `descriptorType` is `MCP`.
4108
+ # @return [Types::McpDescriptor]
4109
+ #
4110
+ # @!attribute [rw] a2a
4111
+ # The Agent-to-Agent (A2A) protocol descriptor configuration. Use this
4112
+ # when the `descriptorType` is `A2A`.
4113
+ # @return [Types::A2aDescriptor]
4114
+ #
4115
+ # @!attribute [rw] custom
4116
+ # The custom descriptor configuration. Use this when the
4117
+ # `descriptorType` is `CUSTOM`.
4118
+ # @return [Types::CustomDescriptor]
4119
+ #
4120
+ # @!attribute [rw] agent_skills
4121
+ # The agent skills descriptor configuration. Use this when the
4122
+ # `descriptorType` is `AGENT_SKILLS`.
4123
+ # @return [Types::AgentSkillsDescriptor]
4124
+ #
4125
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/Descriptors AWS API Documentation
4126
+ #
4127
+ class Descriptors < Struct.new(
4128
+ :mcp,
4129
+ :a2a,
4130
+ :custom,
4131
+ :agent_skills)
4132
+ SENSITIVE = []
4133
+ include Aws::Structure
4134
+ end
4135
+
3776
4136
  # Exception thrown when encryption of a secret fails.
3777
4137
  #
3778
4138
  # @!attribute [rw] message
@@ -4335,6 +4695,27 @@ module Aws::BedrockAgentCoreControl
4335
4695
  include Aws::Structure
4336
4696
  end
4337
4697
 
4698
+ # Configuration for synchronizing from a URL-based MCP server.
4699
+ #
4700
+ # @!attribute [rw] url
4701
+ # The HTTPS URL of the MCP server to synchronize from.
4702
+ # @return [String]
4703
+ #
4704
+ # @!attribute [rw] credential_provider_configurations
4705
+ # Optional list of credential provider configurations for
4706
+ # authenticating with the MCP server. At most one credential provider
4707
+ # configuration can be specified.
4708
+ # @return [Array<Types::RegistryRecordCredentialProviderConfiguration>]
4709
+ #
4710
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/FromUrlSynchronizationConfiguration AWS API Documentation
4711
+ #
4712
+ class FromUrlSynchronizationConfiguration < Struct.new(
4713
+ :url,
4714
+ :credential_provider_configurations)
4715
+ SENSITIVE = []
4716
+ include Aws::Structure
4717
+ end
4718
+
4338
4719
  # The configuration for an interceptor on a gateway. This structure
4339
4720
  # defines settings for an interceptor that will be invoked during the
4340
4721
  # invocation of the gateway.
@@ -5819,45 +6200,239 @@ module Aws::BedrockAgentCoreControl
5819
6200
  include Aws::Structure
5820
6201
  end
5821
6202
 
5822
- # @!attribute [rw] resource_arn
5823
- # The Amazon Resource Name (ARN) of the resource for which to retrieve
5824
- # the resource policy.
6203
+ # @!attribute [rw] registry_id
6204
+ # The identifier of the registry containing the record. You can
6205
+ # specify either the Amazon Resource Name (ARN) or the ID of the
6206
+ # registry.
5825
6207
  # @return [String]
5826
6208
  #
5827
- # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetResourcePolicyRequest AWS API Documentation
6209
+ # @!attribute [rw] record_id
6210
+ # The identifier of the registry record to retrieve. You can specify
6211
+ # either the Amazon Resource Name (ARN) or the ID of the record.
6212
+ # @return [String]
5828
6213
  #
5829
- class GetResourcePolicyRequest < Struct.new(
5830
- :resource_arn)
6214
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetRegistryRecordRequest AWS API Documentation
6215
+ #
6216
+ class GetRegistryRecordRequest < Struct.new(
6217
+ :registry_id,
6218
+ :record_id)
5831
6219
  SENSITIVE = []
5832
6220
  include Aws::Structure
5833
6221
  end
5834
6222
 
5835
- # @!attribute [rw] policy
5836
- # The resource policy associated with the specified resource.
6223
+ # @!attribute [rw] registry_arn
6224
+ # The Amazon Resource Name (ARN) of the registry that contains the
6225
+ # record.
5837
6226
  # @return [String]
5838
6227
  #
5839
- # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetResourcePolicyResponse AWS API Documentation
6228
+ # @!attribute [rw] record_arn
6229
+ # The Amazon Resource Name (ARN) of the registry record.
6230
+ # @return [String]
5840
6231
  #
5841
- class GetResourcePolicyResponse < Struct.new(
5842
- :policy)
5843
- SENSITIVE = []
6232
+ # @!attribute [rw] record_id
6233
+ # The unique identifier of the registry record.
6234
+ # @return [String]
6235
+ #
6236
+ # @!attribute [rw] name
6237
+ # The name of the registry record.
6238
+ # @return [String]
6239
+ #
6240
+ # @!attribute [rw] description
6241
+ # The description of the registry record.
6242
+ # @return [String]
6243
+ #
6244
+ # @!attribute [rw] descriptor_type
6245
+ # The descriptor type of the registry record. Possible values are
6246
+ # `MCP`, `A2A`, `CUSTOM`, and `AGENT_SKILLS`.
6247
+ # @return [String]
6248
+ #
6249
+ # @!attribute [rw] descriptors
6250
+ # The descriptor-type-specific configuration containing the resource
6251
+ # schema and metadata. For details, see the `Descriptors` data type.
6252
+ # @return [Types::Descriptors]
6253
+ #
6254
+ # @!attribute [rw] record_version
6255
+ # The version of the registry record.
6256
+ # @return [String]
6257
+ #
6258
+ # @!attribute [rw] status
6259
+ # The current status of the registry record. Possible values include
6260
+ # `CREATING`, `DRAFT`, `APPROVED`, `PENDING_APPROVAL`, `REJECTED`,
6261
+ # `DEPRECATED`, `UPDATING`, `CREATE_FAILED`, and `UPDATE_FAILED`. A
6262
+ # record transitions from `CREATING` to `DRAFT`, then to
6263
+ # `PENDING_APPROVAL` (via `SubmitRegistryRecordForApproval`), and
6264
+ # finally to `APPROVED` upon approval.
6265
+ # @return [String]
6266
+ #
6267
+ # @!attribute [rw] created_at
6268
+ # The timestamp when the registry record was created.
6269
+ # @return [Time]
6270
+ #
6271
+ # @!attribute [rw] updated_at
6272
+ # The timestamp when the registry record was last updated.
6273
+ # @return [Time]
6274
+ #
6275
+ # @!attribute [rw] status_reason
6276
+ # The reason for the current status, typically set when the status is
6277
+ # a failure state.
6278
+ # @return [String]
6279
+ #
6280
+ # @!attribute [rw] synchronization_type
6281
+ # The type of synchronization used for this record.
6282
+ # @return [String]
6283
+ #
6284
+ # @!attribute [rw] synchronization_configuration
6285
+ # The configuration for synchronizing registry record metadata from an
6286
+ # external source.
6287
+ # @return [Types::SynchronizationConfiguration]
6288
+ #
6289
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetRegistryRecordResponse AWS API Documentation
6290
+ #
6291
+ class GetRegistryRecordResponse < Struct.new(
6292
+ :registry_arn,
6293
+ :record_arn,
6294
+ :record_id,
6295
+ :name,
6296
+ :description,
6297
+ :descriptor_type,
6298
+ :descriptors,
6299
+ :record_version,
6300
+ :status,
6301
+ :created_at,
6302
+ :updated_at,
6303
+ :status_reason,
6304
+ :synchronization_type,
6305
+ :synchronization_configuration)
6306
+ SENSITIVE = [:description]
5844
6307
  include Aws::Structure
5845
6308
  end
5846
6309
 
5847
- # @!attribute [rw] token_vault_id
5848
- # The unique identifier of the token vault to retrieve.
6310
+ # @!attribute [rw] registry_id
6311
+ # The identifier of the registry to retrieve. You can specify either
6312
+ # the Amazon Resource Name (ARN) or the ID of the registry.
5849
6313
  # @return [String]
5850
6314
  #
5851
- # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetTokenVaultRequest AWS API Documentation
6315
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetRegistryRequest AWS API Documentation
5852
6316
  #
5853
- class GetTokenVaultRequest < Struct.new(
5854
- :token_vault_id)
6317
+ class GetRegistryRequest < Struct.new(
6318
+ :registry_id)
5855
6319
  SENSITIVE = []
5856
6320
  include Aws::Structure
5857
6321
  end
5858
6322
 
5859
- # @!attribute [rw] token_vault_id
5860
- # The ID of the token vault.
6323
+ # @!attribute [rw] name
6324
+ # The name of the registry.
6325
+ # @return [String]
6326
+ #
6327
+ # @!attribute [rw] description
6328
+ # The description of the registry.
6329
+ # @return [String]
6330
+ #
6331
+ # @!attribute [rw] registry_id
6332
+ # The unique identifier of the registry.
6333
+ # @return [String]
6334
+ #
6335
+ # @!attribute [rw] registry_arn
6336
+ # The Amazon Resource Name (ARN) of the registry.
6337
+ # @return [String]
6338
+ #
6339
+ # @!attribute [rw] authorizer_type
6340
+ # The type of authorizer used by the registry. This controls the
6341
+ # authorization method for the Search and Invoke APIs used by
6342
+ # consumers.
6343
+ #
6344
+ # * `CUSTOM_JWT` - Authorize with a bearer token.
6345
+ #
6346
+ # * `AWS_IAM` - Authorize with your Amazon Web Services IAM
6347
+ # credentials.
6348
+ # @return [String]
6349
+ #
6350
+ # @!attribute [rw] authorizer_configuration
6351
+ # The authorizer configuration for the registry. For details, see the
6352
+ # `AuthorizerConfiguration` data type.
6353
+ # @return [Types::AuthorizerConfiguration]
6354
+ #
6355
+ # @!attribute [rw] approval_configuration
6356
+ # The approval configuration for registry records. For details, see
6357
+ # the `ApprovalConfiguration` data type.
6358
+ # @return [Types::ApprovalConfiguration]
6359
+ #
6360
+ # @!attribute [rw] status
6361
+ # The current status of the registry. Possible values include
6362
+ # `CREATING`, `READY`, `UPDATING`, `CREATE_FAILED`, `UPDATE_FAILED`,
6363
+ # `DELETING`, and `DELETE_FAILED`.
6364
+ # @return [String]
6365
+ #
6366
+ # @!attribute [rw] status_reason
6367
+ # The reason for the current status, typically set when the status is
6368
+ # a failure state.
6369
+ # @return [String]
6370
+ #
6371
+ # @!attribute [rw] created_at
6372
+ # The timestamp when the registry was created.
6373
+ # @return [Time]
6374
+ #
6375
+ # @!attribute [rw] updated_at
6376
+ # The timestamp when the registry was last updated.
6377
+ # @return [Time]
6378
+ #
6379
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetRegistryResponse AWS API Documentation
6380
+ #
6381
+ class GetRegistryResponse < Struct.new(
6382
+ :name,
6383
+ :description,
6384
+ :registry_id,
6385
+ :registry_arn,
6386
+ :authorizer_type,
6387
+ :authorizer_configuration,
6388
+ :approval_configuration,
6389
+ :status,
6390
+ :status_reason,
6391
+ :created_at,
6392
+ :updated_at)
6393
+ SENSITIVE = [:description]
6394
+ include Aws::Structure
6395
+ end
6396
+
6397
+ # @!attribute [rw] resource_arn
6398
+ # The Amazon Resource Name (ARN) of the resource for which to retrieve
6399
+ # the resource policy.
6400
+ # @return [String]
6401
+ #
6402
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetResourcePolicyRequest AWS API Documentation
6403
+ #
6404
+ class GetResourcePolicyRequest < Struct.new(
6405
+ :resource_arn)
6406
+ SENSITIVE = []
6407
+ include Aws::Structure
6408
+ end
6409
+
6410
+ # @!attribute [rw] policy
6411
+ # The resource policy associated with the specified resource.
6412
+ # @return [String]
6413
+ #
6414
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetResourcePolicyResponse AWS API Documentation
6415
+ #
6416
+ class GetResourcePolicyResponse < Struct.new(
6417
+ :policy)
6418
+ SENSITIVE = []
6419
+ include Aws::Structure
6420
+ end
6421
+
6422
+ # @!attribute [rw] token_vault_id
6423
+ # The unique identifier of the token vault to retrieve.
6424
+ # @return [String]
6425
+ #
6426
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetTokenVaultRequest AWS API Documentation
6427
+ #
6428
+ class GetTokenVaultRequest < Struct.new(
6429
+ :token_vault_id)
6430
+ SENSITIVE = []
6431
+ include Aws::Structure
6432
+ end
6433
+
6434
+ # @!attribute [rw] token_vault_id
6435
+ # The ID of the token vault.
5861
6436
  # @return [String]
5862
6437
  #
5863
6438
  # @!attribute [rw] kms_configuration
@@ -7091,6 +7666,126 @@ module Aws::BedrockAgentCoreControl
7091
7666
  include Aws::Structure
7092
7667
  end
7093
7668
 
7669
+ # @!attribute [rw] max_results
7670
+ # The maximum number of results to return in the response. If the
7671
+ # total number of results is greater than this value, use the token
7672
+ # returned in the response in the `nextToken` field when making
7673
+ # another request to return the next batch of results.
7674
+ # @return [Integer]
7675
+ #
7676
+ # @!attribute [rw] next_token
7677
+ # If the total number of results is greater than the `maxResults`
7678
+ # value provided in the request, enter the token returned in the
7679
+ # `nextToken` field in the response in this field to return the next
7680
+ # batch of results.
7681
+ # @return [String]
7682
+ #
7683
+ # @!attribute [rw] status
7684
+ # Filter registries by their current status. Possible values include
7685
+ # `CREATING`, `READY`, `UPDATING`, `CREATE_FAILED`, `UPDATE_FAILED`,
7686
+ # `DELETING`, and `DELETE_FAILED`.
7687
+ # @return [String]
7688
+ #
7689
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ListRegistriesRequest AWS API Documentation
7690
+ #
7691
+ class ListRegistriesRequest < Struct.new(
7692
+ :max_results,
7693
+ :next_token,
7694
+ :status)
7695
+ SENSITIVE = []
7696
+ include Aws::Structure
7697
+ end
7698
+
7699
+ # @!attribute [rw] registries
7700
+ # The list of registry summaries. For details about the fields in each
7701
+ # summary, see the `RegistrySummary` data type.
7702
+ # @return [Array<Types::RegistrySummary>]
7703
+ #
7704
+ # @!attribute [rw] next_token
7705
+ # If the total number of results is greater than the `maxResults`
7706
+ # value provided in the request, use this token when making another
7707
+ # request in the `nextToken` field to return the next batch of
7708
+ # results.
7709
+ # @return [String]
7710
+ #
7711
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ListRegistriesResponse AWS API Documentation
7712
+ #
7713
+ class ListRegistriesResponse < Struct.new(
7714
+ :registries,
7715
+ :next_token)
7716
+ SENSITIVE = []
7717
+ include Aws::Structure
7718
+ end
7719
+
7720
+ # @!attribute [rw] registry_id
7721
+ # The identifier of the registry to list records from. You can specify
7722
+ # either the Amazon Resource Name (ARN) or the ID of the registry.
7723
+ # @return [String]
7724
+ #
7725
+ # @!attribute [rw] max_results
7726
+ # The maximum number of results to return in the response. If the
7727
+ # total number of results is greater than this value, use the token
7728
+ # returned in the response in the `nextToken` field when making
7729
+ # another request to return the next batch of results.
7730
+ # @return [Integer]
7731
+ #
7732
+ # @!attribute [rw] next_token
7733
+ # If the total number of results is greater than the `maxResults`
7734
+ # value provided in the request, enter the token returned in the
7735
+ # `nextToken` field in the response in this field to return the next
7736
+ # batch of results.
7737
+ # @return [String]
7738
+ #
7739
+ # @!attribute [rw] name
7740
+ # Filter registry records by name.
7741
+ # @return [String]
7742
+ #
7743
+ # @!attribute [rw] status
7744
+ # Filter registry records by their current status. Possible values
7745
+ # include `CREATING`, `DRAFT`, `APPROVED`, `PENDING_APPROVAL`,
7746
+ # `REJECTED`, `DEPRECATED`, `UPDATING`, `CREATE_FAILED`, and
7747
+ # `UPDATE_FAILED`.
7748
+ # @return [String]
7749
+ #
7750
+ # @!attribute [rw] descriptor_type
7751
+ # Filter registry records by their descriptor type. Possible values
7752
+ # are `MCP`, `A2A`, `CUSTOM`, and `AGENT_SKILLS`.
7753
+ # @return [String]
7754
+ #
7755
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ListRegistryRecordsRequest AWS API Documentation
7756
+ #
7757
+ class ListRegistryRecordsRequest < Struct.new(
7758
+ :registry_id,
7759
+ :max_results,
7760
+ :next_token,
7761
+ :name,
7762
+ :status,
7763
+ :descriptor_type)
7764
+ SENSITIVE = []
7765
+ include Aws::Structure
7766
+ end
7767
+
7768
+ # @!attribute [rw] registry_records
7769
+ # The list of registry record summaries. For details about the fields
7770
+ # in each summary, see the `RegistryRecordSummary` data type.
7771
+ # @return [Array<Types::RegistryRecordSummary>]
7772
+ #
7773
+ # @!attribute [rw] next_token
7774
+ # If the total number of results is greater than the `maxResults`
7775
+ # value provided in the request, use this token when making another
7776
+ # request in the `nextToken` field to return the next batch of
7777
+ # results.
7778
+ # @return [String]
7779
+ #
7780
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ListRegistryRecordsResponse AWS API Documentation
7781
+ #
7782
+ class ListRegistryRecordsResponse < Struct.new(
7783
+ :registry_records,
7784
+ :next_token)
7785
+ SENSITIVE = []
7786
+ include Aws::Structure
7787
+ end
7788
+
7094
7789
  # @!attribute [rw] resource_arn
7095
7790
  # The Amazon Resource Name (ARN) of the resource for which you want to
7096
7791
  # list tags.
@@ -7176,7 +7871,7 @@ module Aws::BedrockAgentCoreControl
7176
7871
  :instructions,
7177
7872
  :rating_scale,
7178
7873
  :model_config)
7179
- SENSITIVE = [:instructions]
7874
+ SENSITIVE = [:instructions, :rating_scale]
7180
7875
  include Aws::Structure
7181
7876
  end
7182
7877
 
@@ -7279,6 +7974,30 @@ module Aws::BedrockAgentCoreControl
7279
7974
  include Aws::Structure
7280
7975
  end
7281
7976
 
7977
+ # The Model Context Protocol (MCP) descriptor for a registry record.
7978
+ # Contains the server definition and tools definition for an
7979
+ # MCP-compatible server. The schema is validated against the MCP
7980
+ # protocol specification.
7981
+ #
7982
+ # @!attribute [rw] server
7983
+ # The MCP server definition, containing the server configuration and
7984
+ # schema as defined by the MCP protocol specification.
7985
+ # @return [Types::ServerDefinition]
7986
+ #
7987
+ # @!attribute [rw] tools
7988
+ # The MCP tools definition, containing the tools available on the MCP
7989
+ # server as defined by the MCP protocol specification.
7990
+ # @return [Types::ToolsDefinition]
7991
+ #
7992
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/McpDescriptor AWS API Documentation
7993
+ #
7994
+ class McpDescriptor < Struct.new(
7995
+ :server,
7996
+ :tools)
7997
+ SENSITIVE = []
7998
+ include Aws::Structure
7999
+ end
8000
+
7282
8001
  # The Lambda configuration for a Model Context Protocol target. This
7283
8002
  # structure defines how the gateway uses a Lambda function to
7284
8003
  # communicate with the target.
@@ -8878,90 +9597,336 @@ module Aws::BedrockAgentCoreControl
8878
9597
  class Unknown < ReflectionConfiguration; end
8879
9598
  end
8880
9599
 
8881
- # Configuration for HTTP request headers that will be passed through to
8882
- # the runtime.
9600
+ # A pairing of a credential provider type with its corresponding
9601
+ # provider details for authenticating with external sources.
8883
9602
  #
8884
- # @note RequestHeaderConfiguration is a union - when making an API calls you must set exactly one of the members.
9603
+ # @!attribute [rw] credential_provider_type
9604
+ # The type of credential provider.
8885
9605
  #
8886
- # @note RequestHeaderConfiguration is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of RequestHeaderConfiguration corresponding to the set member.
9606
+ # * `OAUTH` - OAuth-based authentication.
8887
9607
  #
8888
- # @!attribute [rw] request_header_allowlist
8889
- # A list of HTTP request headers that are allowed to be passed through
8890
- # to the runtime.
8891
- # @return [Array<String>]
9608
+ # * `IAM` - Amazon Web Services IAM-based authentication using SigV4
9609
+ # signing.
9610
+ # @return [String]
8892
9611
  #
8893
- # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/RequestHeaderConfiguration AWS API Documentation
9612
+ # @!attribute [rw] credential_provider
9613
+ # The credential provider configuration details. The structure depends
9614
+ # on the `credentialProviderType`.
9615
+ # @return [Types::RegistryRecordCredentialProviderUnion]
8894
9616
  #
8895
- class RequestHeaderConfiguration < Struct.new(
8896
- :request_header_allowlist,
8897
- :unknown)
9617
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/RegistryRecordCredentialProviderConfiguration AWS API Documentation
9618
+ #
9619
+ class RegistryRecordCredentialProviderConfiguration < Struct.new(
9620
+ :credential_provider_type,
9621
+ :credential_provider)
8898
9622
  SENSITIVE = []
8899
9623
  include Aws::Structure
8900
- include Aws::Structure::Union
8901
-
8902
- class RequestHeaderAllowlist < RequestHeaderConfiguration; end
8903
- class Unknown < RequestHeaderConfiguration; end
8904
9624
  end
8905
9625
 
8906
- # Represents a resource within the AgentCore Policy system. Resources
8907
- # are the targets of policy evaluation. Currently, only AgentCore
8908
- # Gateways are supported as resources for policy enforcement.
9626
+ # Union of supported credential provider types for registry record
9627
+ # synchronization.
8909
9628
  #
8910
- # @note Resource is a union - when making an API calls you must set exactly one of the members.
9629
+ # @note RegistryRecordCredentialProviderUnion is a union - when making an API calls you must set exactly one of the members.
8911
9630
  #
8912
- # @note Resource is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of Resource corresponding to the set member.
9631
+ # @note RegistryRecordCredentialProviderUnion is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of RegistryRecordCredentialProviderUnion corresponding to the set member.
8913
9632
  #
8914
- # @!attribute [rw] arn
8915
- # The Amazon Resource Name (ARN) of the resource. This globally unique
8916
- # identifier specifies the exact resource that policies will be
8917
- # evaluated against for access control decisions.
8918
- # @return [String]
9633
+ # @!attribute [rw] oauth_credential_provider
9634
+ # The OAuth credential provider configuration for authenticating with
9635
+ # the external source.
9636
+ # @return [Types::RegistryRecordOAuthCredentialProvider]
8919
9637
  #
8920
- # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/Resource AWS API Documentation
9638
+ # @!attribute [rw] iam_credential_provider
9639
+ # The IAM credential provider configuration for authenticating with
9640
+ # the external source using SigV4 signing.
9641
+ # @return [Types::RegistryRecordIamCredentialProvider]
8921
9642
  #
8922
- class Resource < Struct.new(
8923
- :arn,
9643
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/RegistryRecordCredentialProviderUnion AWS API Documentation
9644
+ #
9645
+ class RegistryRecordCredentialProviderUnion < Struct.new(
9646
+ :oauth_credential_provider,
9647
+ :iam_credential_provider,
8924
9648
  :unknown)
8925
9649
  SENSITIVE = []
8926
9650
  include Aws::Structure
8927
9651
  include Aws::Structure::Union
8928
9652
 
8929
- class Arn < Resource; end
8930
- class Unknown < Resource; end
9653
+ class OauthCredentialProvider < RegistryRecordCredentialProviderUnion; end
9654
+ class IamCredentialProvider < RegistryRecordCredentialProviderUnion; end
9655
+ class Unknown < RegistryRecordCredentialProviderUnion; end
8931
9656
  end
8932
9657
 
8933
- # Exception thrown when a resource limit is exceeded.
9658
+ # IAM credential provider configuration for authenticating with an
9659
+ # external source using SigV4 signing during synchronization.
8934
9660
  #
8935
- # @!attribute [rw] message
9661
+ # @!attribute [rw] role_arn
9662
+ # The Amazon Resource Name (ARN) of the IAM role to assume for SigV4
9663
+ # signing.
8936
9664
  # @return [String]
8937
9665
  #
8938
- # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ResourceLimitExceededException AWS API Documentation
9666
+ # @!attribute [rw] service
9667
+ # The SigV4 signing service name (for example, `execute-api` or
9668
+ # `bedrock-agentcore`).
9669
+ # @return [String]
8939
9670
  #
8940
- class ResourceLimitExceededException < Struct.new(
8941
- :message)
9671
+ # @!attribute [rw] region
9672
+ # The Amazon Web Services region for SigV4 signing (for example,
9673
+ # `us-west-2`). If not specified, the region is extracted from the MCP
9674
+ # server URL hostname, with fallback to the service's own region.
9675
+ # @return [String]
9676
+ #
9677
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/RegistryRecordIamCredentialProvider AWS API Documentation
9678
+ #
9679
+ class RegistryRecordIamCredentialProvider < Struct.new(
9680
+ :role_arn,
9681
+ :service,
9682
+ :region)
8942
9683
  SENSITIVE = []
8943
9684
  include Aws::Structure
8944
9685
  end
8945
9686
 
8946
- # The location of a resource.
9687
+ # OAuth credential provider configuration for authenticating with an
9688
+ # external source during synchronization.
8947
9689
  #
8948
- # @note ResourceLocation is a union - when making an API calls you must set exactly one of the members.
9690
+ # @!attribute [rw] provider_arn
9691
+ # The Amazon Resource Name (ARN) of the OAuth credential provider
9692
+ # resource.
9693
+ # @return [String]
8949
9694
  #
8950
- # @note ResourceLocation is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ResourceLocation corresponding to the set member.
9695
+ # @!attribute [rw] grant_type
9696
+ # The OAuth grant type. Currently only `CLIENT_CREDENTIALS` is
9697
+ # supported.
9698
+ # @return [String]
8951
9699
  #
8952
- # @!attribute [rw] s3
8953
- # The Amazon S3 location for storing data. This structure defines
8954
- # where in Amazon S3 data is stored.
8955
- # @return [Types::S3Location]
9700
+ # @!attribute [rw] scopes
9701
+ # The OAuth scopes to request during authentication.
9702
+ # @return [Array<String>]
8956
9703
  #
8957
- # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ResourceLocation AWS API Documentation
9704
+ # @!attribute [rw] custom_parameters
9705
+ # Additional custom parameters for the OAuth flow.
9706
+ # @return [Hash<String,String>]
8958
9707
  #
8959
- class ResourceLocation < Struct.new(
8960
- :s3,
8961
- :unknown)
8962
- SENSITIVE = []
8963
- include Aws::Structure
8964
- include Aws::Structure::Union
9708
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/RegistryRecordOAuthCredentialProvider AWS API Documentation
9709
+ #
9710
+ class RegistryRecordOAuthCredentialProvider < Struct.new(
9711
+ :provider_arn,
9712
+ :grant_type,
9713
+ :scopes,
9714
+ :custom_parameters)
9715
+ SENSITIVE = []
9716
+ include Aws::Structure
9717
+ end
9718
+
9719
+ # Contains summary information about a registry record.
9720
+ #
9721
+ # @!attribute [rw] registry_arn
9722
+ # The Amazon Resource Name (ARN) of the registry that contains the
9723
+ # record.
9724
+ # @return [String]
9725
+ #
9726
+ # @!attribute [rw] record_arn
9727
+ # The Amazon Resource Name (ARN) of the registry record.
9728
+ # @return [String]
9729
+ #
9730
+ # @!attribute [rw] record_id
9731
+ # The unique identifier of the registry record.
9732
+ # @return [String]
9733
+ #
9734
+ # @!attribute [rw] name
9735
+ # The name of the registry record.
9736
+ # @return [String]
9737
+ #
9738
+ # @!attribute [rw] description
9739
+ # The description of the registry record.
9740
+ # @return [String]
9741
+ #
9742
+ # @!attribute [rw] descriptor_type
9743
+ # The descriptor type of the registry record. Possible values are
9744
+ # `MCP`, `A2A`, `CUSTOM`, and `AGENT_SKILLS`.
9745
+ # @return [String]
9746
+ #
9747
+ # @!attribute [rw] record_version
9748
+ # The version of the registry record.
9749
+ # @return [String]
9750
+ #
9751
+ # @!attribute [rw] status
9752
+ # The current status of the registry record. Possible values include
9753
+ # `CREATING`, `DRAFT`, `APPROVED`, `PENDING_APPROVAL`, `REJECTED`,
9754
+ # `DEPRECATED`, `UPDATING`, `CREATE_FAILED`, and `UPDATE_FAILED`.
9755
+ # @return [String]
9756
+ #
9757
+ # @!attribute [rw] created_at
9758
+ # The timestamp when the registry record was created.
9759
+ # @return [Time]
9760
+ #
9761
+ # @!attribute [rw] updated_at
9762
+ # The timestamp when the registry record was last updated.
9763
+ # @return [Time]
9764
+ #
9765
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/RegistryRecordSummary AWS API Documentation
9766
+ #
9767
+ class RegistryRecordSummary < Struct.new(
9768
+ :registry_arn,
9769
+ :record_arn,
9770
+ :record_id,
9771
+ :name,
9772
+ :description,
9773
+ :descriptor_type,
9774
+ :record_version,
9775
+ :status,
9776
+ :created_at,
9777
+ :updated_at)
9778
+ SENSITIVE = [:description]
9779
+ include Aws::Structure
9780
+ end
9781
+
9782
+ # Contains summary information about a registry.
9783
+ #
9784
+ # @!attribute [rw] name
9785
+ # The name of the registry.
9786
+ # @return [String]
9787
+ #
9788
+ # @!attribute [rw] description
9789
+ # The description of the registry.
9790
+ # @return [String]
9791
+ #
9792
+ # @!attribute [rw] registry_id
9793
+ # The unique identifier of the registry.
9794
+ # @return [String]
9795
+ #
9796
+ # @!attribute [rw] registry_arn
9797
+ # The Amazon Resource Name (ARN) of the registry.
9798
+ # @return [String]
9799
+ #
9800
+ # @!attribute [rw] authorizer_type
9801
+ # The type of authorizer used by the registry. This controls the
9802
+ # authorization method for the Search and Invoke APIs used by
9803
+ # consumers.
9804
+ #
9805
+ # * `CUSTOM_JWT` - Authorize with a bearer token.
9806
+ #
9807
+ # * `AWS_IAM` - Authorize with your Amazon Web Services IAM
9808
+ # credentials.
9809
+ # @return [String]
9810
+ #
9811
+ # @!attribute [rw] status
9812
+ # The current status of the registry. Possible values include
9813
+ # `CREATING`, `READY`, `UPDATING`, `CREATE_FAILED`, `UPDATE_FAILED`,
9814
+ # `DELETING`, and `DELETE_FAILED`.
9815
+ # @return [String]
9816
+ #
9817
+ # @!attribute [rw] status_reason
9818
+ # The reason for the current status, typically set when the status is
9819
+ # a failure state.
9820
+ # @return [String]
9821
+ #
9822
+ # @!attribute [rw] created_at
9823
+ # The timestamp when the registry was created.
9824
+ # @return [Time]
9825
+ #
9826
+ # @!attribute [rw] updated_at
9827
+ # The timestamp when the registry was last updated.
9828
+ # @return [Time]
9829
+ #
9830
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/RegistrySummary AWS API Documentation
9831
+ #
9832
+ class RegistrySummary < Struct.new(
9833
+ :name,
9834
+ :description,
9835
+ :registry_id,
9836
+ :registry_arn,
9837
+ :authorizer_type,
9838
+ :status,
9839
+ :status_reason,
9840
+ :created_at,
9841
+ :updated_at)
9842
+ SENSITIVE = [:description]
9843
+ include Aws::Structure
9844
+ end
9845
+
9846
+ # Configuration for HTTP request headers that will be passed through to
9847
+ # the runtime.
9848
+ #
9849
+ # @note RequestHeaderConfiguration is a union - when making an API calls you must set exactly one of the members.
9850
+ #
9851
+ # @note RequestHeaderConfiguration is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of RequestHeaderConfiguration corresponding to the set member.
9852
+ #
9853
+ # @!attribute [rw] request_header_allowlist
9854
+ # A list of HTTP request headers that are allowed to be passed through
9855
+ # to the runtime.
9856
+ # @return [Array<String>]
9857
+ #
9858
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/RequestHeaderConfiguration AWS API Documentation
9859
+ #
9860
+ class RequestHeaderConfiguration < Struct.new(
9861
+ :request_header_allowlist,
9862
+ :unknown)
9863
+ SENSITIVE = []
9864
+ include Aws::Structure
9865
+ include Aws::Structure::Union
9866
+
9867
+ class RequestHeaderAllowlist < RequestHeaderConfiguration; end
9868
+ class Unknown < RequestHeaderConfiguration; end
9869
+ end
9870
+
9871
+ # Represents a resource within the AgentCore Policy system. Resources
9872
+ # are the targets of policy evaluation. Currently, only AgentCore
9873
+ # Gateways are supported as resources for policy enforcement.
9874
+ #
9875
+ # @note Resource is a union - when making an API calls you must set exactly one of the members.
9876
+ #
9877
+ # @note Resource is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of Resource corresponding to the set member.
9878
+ #
9879
+ # @!attribute [rw] arn
9880
+ # The Amazon Resource Name (ARN) of the resource. This globally unique
9881
+ # identifier specifies the exact resource that policies will be
9882
+ # evaluated against for access control decisions.
9883
+ # @return [String]
9884
+ #
9885
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/Resource AWS API Documentation
9886
+ #
9887
+ class Resource < Struct.new(
9888
+ :arn,
9889
+ :unknown)
9890
+ SENSITIVE = []
9891
+ include Aws::Structure
9892
+ include Aws::Structure::Union
9893
+
9894
+ class Arn < Resource; end
9895
+ class Unknown < Resource; end
9896
+ end
9897
+
9898
+ # Exception thrown when a resource limit is exceeded.
9899
+ #
9900
+ # @!attribute [rw] message
9901
+ # @return [String]
9902
+ #
9903
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ResourceLimitExceededException AWS API Documentation
9904
+ #
9905
+ class ResourceLimitExceededException < Struct.new(
9906
+ :message)
9907
+ SENSITIVE = []
9908
+ include Aws::Structure
9909
+ end
9910
+
9911
+ # The location of a resource.
9912
+ #
9913
+ # @note ResourceLocation is a union - when making an API calls you must set exactly one of the members.
9914
+ #
9915
+ # @note ResourceLocation is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ResourceLocation corresponding to the set member.
9916
+ #
9917
+ # @!attribute [rw] s3
9918
+ # The Amazon S3 location for storing data. This structure defines
9919
+ # where in Amazon S3 data is stored.
9920
+ # @return [Types::S3Location]
9921
+ #
9922
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ResourceLocation AWS API Documentation
9923
+ #
9924
+ class ResourceLocation < Struct.new(
9925
+ :s3,
9926
+ :unknown)
9927
+ SENSITIVE = []
9928
+ include Aws::Structure
9929
+ include Aws::Structure::Union
8965
9930
 
8966
9931
  class S3 < ResourceLocation; end
8967
9932
  class Unknown < ResourceLocation; end
@@ -9398,6 +10363,29 @@ module Aws::BedrockAgentCoreControl
9398
10363
  include Aws::Structure
9399
10364
  end
9400
10365
 
10366
+ # The server definition for an MCP descriptor. Contains the schema
10367
+ # version and inline content for the MCP server configuration.
10368
+ #
10369
+ # @!attribute [rw] schema_version
10370
+ # The schema version of the server definition based on the MCP
10371
+ # protocol specification. If not specified, the version is
10372
+ # auto-detected from the content.
10373
+ # @return [String]
10374
+ #
10375
+ # @!attribute [rw] inline_content
10376
+ # The JSON content containing the MCP server definition, conforming to
10377
+ # the MCP protocol specification.
10378
+ # @return [String]
10379
+ #
10380
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ServerDefinition AWS API Documentation
10381
+ #
10382
+ class ServerDefinition < Struct.new(
10383
+ :schema_version,
10384
+ :inline_content)
10385
+ SENSITIVE = []
10386
+ include Aws::Structure
10387
+ end
10388
+
9401
10389
  # An internal error occurred.
9402
10390
  #
9403
10391
  # @!attribute [rw] message
@@ -9499,6 +10487,40 @@ module Aws::BedrockAgentCoreControl
9499
10487
  include Aws::Structure
9500
10488
  end
9501
10489
 
10490
+ # The structured skill definition with schema version and content.
10491
+ #
10492
+ # @!attribute [rw] schema_version
10493
+ # The version of the skill definition schema.
10494
+ # @return [String]
10495
+ #
10496
+ # @!attribute [rw] inline_content
10497
+ # The JSON content containing the structured skill definition.
10498
+ # @return [String]
10499
+ #
10500
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/SkillDefinition AWS API Documentation
10501
+ #
10502
+ class SkillDefinition < Struct.new(
10503
+ :schema_version,
10504
+ :inline_content)
10505
+ SENSITIVE = []
10506
+ include Aws::Structure
10507
+ end
10508
+
10509
+ # The skill markdown definition for an agent skills descriptor.
10510
+ #
10511
+ # @!attribute [rw] inline_content
10512
+ # The markdown content describing the agent's skills in a
10513
+ # human-readable format.
10514
+ # @return [String]
10515
+ #
10516
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/SkillMdDefinition AWS API Documentation
10517
+ #
10518
+ class SkillMdDefinition < Struct.new(
10519
+ :inline_content)
10520
+ SENSITIVE = []
10521
+ include Aws::Structure
10522
+ end
10523
+
9502
10524
  # Input configuration for a Slack OAuth2 provider.
9503
10525
  #
9504
10526
  # @!attribute [rw] client_id
@@ -9715,6 +10737,60 @@ module Aws::BedrockAgentCoreControl
9715
10737
  include Aws::Structure
9716
10738
  end
9717
10739
 
10740
+ # @!attribute [rw] registry_id
10741
+ # The identifier of the registry containing the record. You can
10742
+ # specify either the Amazon Resource Name (ARN) or the ID of the
10743
+ # registry.
10744
+ # @return [String]
10745
+ #
10746
+ # @!attribute [rw] record_id
10747
+ # The identifier of the registry record to submit for approval. You
10748
+ # can specify either the Amazon Resource Name (ARN) or the ID of the
10749
+ # record.
10750
+ # @return [String]
10751
+ #
10752
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/SubmitRegistryRecordForApprovalRequest AWS API Documentation
10753
+ #
10754
+ class SubmitRegistryRecordForApprovalRequest < Struct.new(
10755
+ :registry_id,
10756
+ :record_id)
10757
+ SENSITIVE = []
10758
+ include Aws::Structure
10759
+ end
10760
+
10761
+ # @!attribute [rw] registry_arn
10762
+ # The Amazon Resource Name (ARN) of the registry that contains the
10763
+ # record.
10764
+ # @return [String]
10765
+ #
10766
+ # @!attribute [rw] record_arn
10767
+ # The Amazon Resource Name (ARN) of the registry record.
10768
+ # @return [String]
10769
+ #
10770
+ # @!attribute [rw] record_id
10771
+ # The unique identifier of the registry record.
10772
+ # @return [String]
10773
+ #
10774
+ # @!attribute [rw] status
10775
+ # The resulting status of the registry record after submission.
10776
+ # @return [String]
10777
+ #
10778
+ # @!attribute [rw] updated_at
10779
+ # The timestamp when the record was last updated.
10780
+ # @return [Time]
10781
+ #
10782
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/SubmitRegistryRecordForApprovalResponse AWS API Documentation
10783
+ #
10784
+ class SubmitRegistryRecordForApprovalResponse < Struct.new(
10785
+ :registry_arn,
10786
+ :record_arn,
10787
+ :record_id,
10788
+ :status,
10789
+ :updated_at)
10790
+ SENSITIVE = []
10791
+ include Aws::Structure
10792
+ end
10793
+
9718
10794
  # Contains summary consolidation override configuration.
9719
10795
  #
9720
10796
  # @!attribute [rw] append_to_prompt
@@ -9797,6 +10873,21 @@ module Aws::BedrockAgentCoreControl
9797
10873
  include Aws::Structure
9798
10874
  end
9799
10875
 
10876
+ # Configuration for synchronizing registry record metadata from an
10877
+ # external source.
10878
+ #
10879
+ # @!attribute [rw] from_url
10880
+ # Configuration for synchronizing from a URL-based source.
10881
+ # @return [Types::FromUrlSynchronizationConfiguration]
10882
+ #
10883
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/SynchronizationConfiguration AWS API Documentation
10884
+ #
10885
+ class SynchronizationConfiguration < Struct.new(
10886
+ :from_url)
10887
+ SENSITIVE = []
10888
+ include Aws::Structure
10889
+ end
10890
+
9800
10891
  # @!attribute [rw] gateway_identifier
9801
10892
  # The gateway Identifier.
9802
10893
  # @return [String]
@@ -10061,6 +11152,29 @@ module Aws::BedrockAgentCoreControl
10061
11152
  class Unknown < ToolSchema; end
10062
11153
  end
10063
11154
 
11155
+ # The tools definition for an MCP descriptor. Contains the protocol
11156
+ # version and inline content describing the available tools.
11157
+ #
11158
+ # @!attribute [rw] protocol_version
11159
+ # The protocol version of the tools definition based on the MCP
11160
+ # protocol specification. If not specified, the version is
11161
+ # auto-detected from the content.
11162
+ # @return [String]
11163
+ #
11164
+ # @!attribute [rw] inline_content
11165
+ # The JSON content containing the MCP tools definition, conforming to
11166
+ # the MCP protocol specification.
11167
+ # @return [String]
11168
+ #
11169
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ToolsDefinition AWS API Documentation
11170
+ #
11171
+ class ToolsDefinition < Struct.new(
11172
+ :protocol_version,
11173
+ :inline_content)
11174
+ SENSITIVE = []
11175
+ include Aws::Structure
11176
+ end
11177
+
10064
11178
  # Condition that triggers memory processing.
10065
11179
  #
10066
11180
  # @note TriggerCondition is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of TriggerCondition corresponding to the set member.
@@ -11234,18 +12348,355 @@ module Aws::BedrockAgentCoreControl
11234
12348
  include Aws::Structure
11235
12349
  end
11236
12350
 
12351
+ # @!attribute [rw] registry_id
12352
+ # The identifier of the registry containing the record. You can
12353
+ # specify either the Amazon Resource Name (ARN) or the ID of the
12354
+ # registry.
12355
+ # @return [String]
12356
+ #
12357
+ # @!attribute [rw] record_id
12358
+ # The identifier of the registry record to update. You can specify
12359
+ # either the Amazon Resource Name (ARN) or the ID of the record.
12360
+ # @return [String]
12361
+ #
11237
12362
  # @!attribute [rw] name
11238
- # The name of the workload identity to update.
12363
+ # The updated name for the registry record.
11239
12364
  # @return [String]
11240
12365
  #
11241
- # @!attribute [rw] allowed_resource_oauth_2_return_urls
11242
- # The new list of allowed OAuth2 return URLs for resources associated
11243
- # with this workload identity. This list replaces the existing list.
11244
- # @return [Array<String>]
12366
+ # @!attribute [rw] description
12367
+ # The updated description for the registry record. To clear the
12368
+ # description, include the `UpdatedDescription` wrapper with
12369
+ # `optionalValue` not specified.
12370
+ # @return [Types::UpdatedDescription]
11245
12371
  #
11246
- # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdateWorkloadIdentityRequest AWS API Documentation
12372
+ # @!attribute [rw] descriptor_type
12373
+ # The updated descriptor type for the registry record. Changing the
12374
+ # descriptor type may require updating the `descriptors` field to
12375
+ # match the new type's schema requirements.
12376
+ # @return [String]
11247
12377
  #
11248
- class UpdateWorkloadIdentityRequest < Struct.new(
12378
+ # @!attribute [rw] descriptors
12379
+ # The updated descriptor-type-specific configuration containing the
12380
+ # resource schema and metadata. Uses PATCH semantics where individual
12381
+ # descriptor fields can be updated independently.
12382
+ # @return [Types::UpdatedDescriptors]
12383
+ #
12384
+ # @!attribute [rw] record_version
12385
+ # The version of the registry record for optimistic locking. If
12386
+ # provided, it must match the current version of the record. The
12387
+ # service automatically increments the version after a successful
12388
+ # update.
12389
+ # @return [String]
12390
+ #
12391
+ # @!attribute [rw] synchronization_type
12392
+ # The updated synchronization type for the registry record.
12393
+ # @return [Types::UpdatedSynchronizationType]
12394
+ #
12395
+ # @!attribute [rw] synchronization_configuration
12396
+ # The updated synchronization configuration for the registry record.
12397
+ # @return [Types::UpdatedSynchronizationConfiguration]
12398
+ #
12399
+ # @!attribute [rw] trigger_synchronization
12400
+ # Whether to trigger synchronization using the stored or provided
12401
+ # configuration. When set to `true`, the service will synchronize the
12402
+ # record metadata from the configured external source.
12403
+ # @return [Boolean]
12404
+ #
12405
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdateRegistryRecordRequest AWS API Documentation
12406
+ #
12407
+ class UpdateRegistryRecordRequest < Struct.new(
12408
+ :registry_id,
12409
+ :record_id,
12410
+ :name,
12411
+ :description,
12412
+ :descriptor_type,
12413
+ :descriptors,
12414
+ :record_version,
12415
+ :synchronization_type,
12416
+ :synchronization_configuration,
12417
+ :trigger_synchronization)
12418
+ SENSITIVE = []
12419
+ include Aws::Structure
12420
+ end
12421
+
12422
+ # @!attribute [rw] registry_arn
12423
+ # The Amazon Resource Name (ARN) of the registry that contains the
12424
+ # updated record.
12425
+ # @return [String]
12426
+ #
12427
+ # @!attribute [rw] record_arn
12428
+ # The Amazon Resource Name (ARN) of the updated registry record.
12429
+ # @return [String]
12430
+ #
12431
+ # @!attribute [rw] record_id
12432
+ # The unique identifier of the updated registry record.
12433
+ # @return [String]
12434
+ #
12435
+ # @!attribute [rw] name
12436
+ # The name of the updated registry record.
12437
+ # @return [String]
12438
+ #
12439
+ # @!attribute [rw] description
12440
+ # The description of the updated registry record.
12441
+ # @return [String]
12442
+ #
12443
+ # @!attribute [rw] descriptor_type
12444
+ # The descriptor type of the updated registry record. Possible values
12445
+ # are `MCP`, `A2A`, `CUSTOM`, and `AGENT_SKILLS`.
12446
+ # @return [String]
12447
+ #
12448
+ # @!attribute [rw] descriptors
12449
+ # The descriptor-type-specific configuration of the updated registry
12450
+ # record. For details, see the `Descriptors` data type.
12451
+ # @return [Types::Descriptors]
12452
+ #
12453
+ # @!attribute [rw] record_version
12454
+ # The version of the updated registry record.
12455
+ # @return [String]
12456
+ #
12457
+ # @!attribute [rw] status
12458
+ # The current status of the updated registry record. Possible values
12459
+ # include `CREATING`, `DRAFT`, `APPROVED`, `PENDING_APPROVAL`,
12460
+ # `REJECTED`, `DEPRECATED`, `UPDATING`, `CREATE_FAILED`, and
12461
+ # `UPDATE_FAILED`.
12462
+ # @return [String]
12463
+ #
12464
+ # @!attribute [rw] created_at
12465
+ # The timestamp when the registry record was created.
12466
+ # @return [Time]
12467
+ #
12468
+ # @!attribute [rw] updated_at
12469
+ # The timestamp when the registry record was last updated.
12470
+ # @return [Time]
12471
+ #
12472
+ # @!attribute [rw] status_reason
12473
+ # The reason for the current status of the updated registry record.
12474
+ # @return [String]
12475
+ #
12476
+ # @!attribute [rw] synchronization_type
12477
+ # The synchronization type of the updated registry record.
12478
+ # @return [String]
12479
+ #
12480
+ # @!attribute [rw] synchronization_configuration
12481
+ # The synchronization configuration of the updated registry record.
12482
+ # @return [Types::SynchronizationConfiguration]
12483
+ #
12484
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdateRegistryRecordResponse AWS API Documentation
12485
+ #
12486
+ class UpdateRegistryRecordResponse < Struct.new(
12487
+ :registry_arn,
12488
+ :record_arn,
12489
+ :record_id,
12490
+ :name,
12491
+ :description,
12492
+ :descriptor_type,
12493
+ :descriptors,
12494
+ :record_version,
12495
+ :status,
12496
+ :created_at,
12497
+ :updated_at,
12498
+ :status_reason,
12499
+ :synchronization_type,
12500
+ :synchronization_configuration)
12501
+ SENSITIVE = [:description]
12502
+ include Aws::Structure
12503
+ end
12504
+
12505
+ # @!attribute [rw] registry_id
12506
+ # The identifier of the registry containing the record. You can
12507
+ # specify either the Amazon Resource Name (ARN) or the ID of the
12508
+ # registry.
12509
+ # @return [String]
12510
+ #
12511
+ # @!attribute [rw] record_id
12512
+ # The identifier of the registry record to update the status for. You
12513
+ # can specify either the Amazon Resource Name (ARN) or the ID of the
12514
+ # record.
12515
+ # @return [String]
12516
+ #
12517
+ # @!attribute [rw] status
12518
+ # The target status for the registry record.
12519
+ # @return [String]
12520
+ #
12521
+ # @!attribute [rw] status_reason
12522
+ # The reason for the status change, such as why the record was
12523
+ # approved or rejected.
12524
+ # @return [String]
12525
+ #
12526
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdateRegistryRecordStatusRequest AWS API Documentation
12527
+ #
12528
+ class UpdateRegistryRecordStatusRequest < Struct.new(
12529
+ :registry_id,
12530
+ :record_id,
12531
+ :status,
12532
+ :status_reason)
12533
+ SENSITIVE = []
12534
+ include Aws::Structure
12535
+ end
12536
+
12537
+ # @!attribute [rw] registry_arn
12538
+ # The Amazon Resource Name (ARN) of the registry that contains the
12539
+ # record.
12540
+ # @return [String]
12541
+ #
12542
+ # @!attribute [rw] record_arn
12543
+ # The Amazon Resource Name (ARN) of the registry record.
12544
+ # @return [String]
12545
+ #
12546
+ # @!attribute [rw] record_id
12547
+ # The unique identifier of the registry record.
12548
+ # @return [String]
12549
+ #
12550
+ # @!attribute [rw] status
12551
+ # The resulting status of the registry record.
12552
+ # @return [String]
12553
+ #
12554
+ # @!attribute [rw] status_reason
12555
+ # The reason for the status change.
12556
+ # @return [String]
12557
+ #
12558
+ # @!attribute [rw] updated_at
12559
+ # The timestamp when the record was last updated.
12560
+ # @return [Time]
12561
+ #
12562
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdateRegistryRecordStatusResponse AWS API Documentation
12563
+ #
12564
+ class UpdateRegistryRecordStatusResponse < Struct.new(
12565
+ :registry_arn,
12566
+ :record_arn,
12567
+ :record_id,
12568
+ :status,
12569
+ :status_reason,
12570
+ :updated_at)
12571
+ SENSITIVE = []
12572
+ include Aws::Structure
12573
+ end
12574
+
12575
+ # @!attribute [rw] registry_id
12576
+ # The identifier of the registry to update. You can specify either the
12577
+ # Amazon Resource Name (ARN) or the ID of the registry.
12578
+ # @return [String]
12579
+ #
12580
+ # @!attribute [rw] name
12581
+ # The updated name of the registry.
12582
+ # @return [String]
12583
+ #
12584
+ # @!attribute [rw] description
12585
+ # The updated description of the registry. To clear the description,
12586
+ # include the `UpdatedDescription` wrapper with `optionalValue` not
12587
+ # specified.
12588
+ # @return [Types::UpdatedDescription]
12589
+ #
12590
+ # @!attribute [rw] authorizer_configuration
12591
+ # The updated authorizer configuration for the registry. Changing the
12592
+ # authorizer configuration can break existing consumers of the
12593
+ # registry who are using the authorization type prior to the update.
12594
+ # @return [Types::UpdatedAuthorizerConfiguration]
12595
+ #
12596
+ # @!attribute [rw] approval_configuration
12597
+ # The updated approval configuration for registry records. The updated
12598
+ # configuration only affects new records that move to
12599
+ # `PENDING_APPROVAL` status after the change. Existing records already
12600
+ # in `PENDING_APPROVAL` status are not affected.
12601
+ # @return [Types::UpdatedApprovalConfiguration]
12602
+ #
12603
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdateRegistryRequest AWS API Documentation
12604
+ #
12605
+ class UpdateRegistryRequest < Struct.new(
12606
+ :registry_id,
12607
+ :name,
12608
+ :description,
12609
+ :authorizer_configuration,
12610
+ :approval_configuration)
12611
+ SENSITIVE = []
12612
+ include Aws::Structure
12613
+ end
12614
+
12615
+ # @!attribute [rw] name
12616
+ # The name of the updated registry.
12617
+ # @return [String]
12618
+ #
12619
+ # @!attribute [rw] description
12620
+ # The description of the updated registry.
12621
+ # @return [String]
12622
+ #
12623
+ # @!attribute [rw] registry_id
12624
+ # The unique identifier of the updated registry.
12625
+ # @return [String]
12626
+ #
12627
+ # @!attribute [rw] registry_arn
12628
+ # The Amazon Resource Name (ARN) of the updated registry.
12629
+ # @return [String]
12630
+ #
12631
+ # @!attribute [rw] authorizer_type
12632
+ # The type of authorizer used by the updated registry. This controls
12633
+ # the authorization method for the Search and Invoke APIs used by
12634
+ # consumers.
12635
+ #
12636
+ # * `CUSTOM_JWT` - Authorize with a bearer token.
12637
+ #
12638
+ # * `AWS_IAM` - Authorize with your Amazon Web Services IAM
12639
+ # credentials.
12640
+ # @return [String]
12641
+ #
12642
+ # @!attribute [rw] authorizer_configuration
12643
+ # The authorizer configuration for the updated registry. For details,
12644
+ # see the `AuthorizerConfiguration` data type.
12645
+ # @return [Types::AuthorizerConfiguration]
12646
+ #
12647
+ # @!attribute [rw] approval_configuration
12648
+ # The approval configuration for the updated registry. For details,
12649
+ # see the `ApprovalConfiguration` data type.
12650
+ # @return [Types::ApprovalConfiguration]
12651
+ #
12652
+ # @!attribute [rw] status
12653
+ # The current status of the updated registry. Possible values include
12654
+ # `CREATING`, `READY`, `UPDATING`, `CREATE_FAILED`, `UPDATE_FAILED`,
12655
+ # `DELETING`, and `DELETE_FAILED`.
12656
+ # @return [String]
12657
+ #
12658
+ # @!attribute [rw] status_reason
12659
+ # The reason for the current status of the updated registry.
12660
+ # @return [String]
12661
+ #
12662
+ # @!attribute [rw] created_at
12663
+ # The timestamp when the registry was created.
12664
+ # @return [Time]
12665
+ #
12666
+ # @!attribute [rw] updated_at
12667
+ # The timestamp when the registry was last updated.
12668
+ # @return [Time]
12669
+ #
12670
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdateRegistryResponse AWS API Documentation
12671
+ #
12672
+ class UpdateRegistryResponse < Struct.new(
12673
+ :name,
12674
+ :description,
12675
+ :registry_id,
12676
+ :registry_arn,
12677
+ :authorizer_type,
12678
+ :authorizer_configuration,
12679
+ :approval_configuration,
12680
+ :status,
12681
+ :status_reason,
12682
+ :created_at,
12683
+ :updated_at)
12684
+ SENSITIVE = [:description]
12685
+ include Aws::Structure
12686
+ end
12687
+
12688
+ # @!attribute [rw] name
12689
+ # The name of the workload identity to update.
12690
+ # @return [String]
12691
+ #
12692
+ # @!attribute [rw] allowed_resource_oauth_2_return_urls
12693
+ # The new list of allowed OAuth2 return URLs for resources associated
12694
+ # with this workload identity. This list replaces the existing list.
12695
+ # @return [Array<String>]
12696
+ #
12697
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdateWorkloadIdentityRequest AWS API Documentation
12698
+ #
12699
+ class UpdateWorkloadIdentityRequest < Struct.new(
11249
12700
  :name,
11250
12701
  :allowed_resource_oauth_2_return_urls)
11251
12702
  SENSITIVE = []
@@ -11285,6 +12736,115 @@ module Aws::BedrockAgentCoreControl
11285
12736
  include Aws::Structure
11286
12737
  end
11287
12738
 
12739
+ # Wrapper for updating an A2A descriptor with PATCH semantics. When
12740
+ # present, the A2A descriptor is replaced with the provided value. When
12741
+ # absent, the A2A descriptor is left unchanged. To unset, include the
12742
+ # wrapper with the value set to null.
12743
+ #
12744
+ # @!attribute [rw] optional_value
12745
+ # The updated A2A descriptor value.
12746
+ # @return [Types::A2aDescriptor]
12747
+ #
12748
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdatedA2aDescriptor AWS API Documentation
12749
+ #
12750
+ class UpdatedA2aDescriptor < Struct.new(
12751
+ :optional_value)
12752
+ SENSITIVE = []
12753
+ include Aws::Structure
12754
+ end
12755
+
12756
+ # Wrapper for updating an agent skills descriptor with PATCH semantics.
12757
+ # When present with a value, individual fields can be updated
12758
+ # independently. When present with a null value, the entire agent skills
12759
+ # descriptor is unset. When absent, the agent skills descriptor is left
12760
+ # unchanged.
12761
+ #
12762
+ # @!attribute [rw] optional_value
12763
+ # The updated agent skills descriptor fields.
12764
+ # @return [Types::UpdatedAgentSkillsDescriptorFields]
12765
+ #
12766
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdatedAgentSkillsDescriptor AWS API Documentation
12767
+ #
12768
+ class UpdatedAgentSkillsDescriptor < Struct.new(
12769
+ :optional_value)
12770
+ SENSITIVE = []
12771
+ include Aws::Structure
12772
+ end
12773
+
12774
+ # Individual agent skills descriptor fields that can be updated
12775
+ # independently.
12776
+ #
12777
+ # @!attribute [rw] skill_md
12778
+ # The updated skill markdown definition.
12779
+ # @return [Types::UpdatedSkillMdDefinition]
12780
+ #
12781
+ # @!attribute [rw] skill_definition
12782
+ # The updated skill definition.
12783
+ # @return [Types::UpdatedSkillDefinition]
12784
+ #
12785
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdatedAgentSkillsDescriptorFields AWS API Documentation
12786
+ #
12787
+ class UpdatedAgentSkillsDescriptorFields < Struct.new(
12788
+ :skill_md,
12789
+ :skill_definition)
12790
+ SENSITIVE = []
12791
+ include Aws::Structure
12792
+ end
12793
+
12794
+ # Wrapper for updating an optional approval configuration field with
12795
+ # PATCH semantics. When present in an update request, the approval
12796
+ # configuration is replaced with the provided value. When absent, the
12797
+ # approval configuration is left unchanged.
12798
+ #
12799
+ # @!attribute [rw] optional_value
12800
+ # The updated approval configuration value. Set to `null` to unset the
12801
+ # approval configuration.
12802
+ # @return [Types::ApprovalConfiguration]
12803
+ #
12804
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdatedApprovalConfiguration AWS API Documentation
12805
+ #
12806
+ class UpdatedApprovalConfiguration < Struct.new(
12807
+ :optional_value)
12808
+ SENSITIVE = []
12809
+ include Aws::Structure
12810
+ end
12811
+
12812
+ # Wrapper for updating an optional AuthorizerConfiguration field with
12813
+ # PATCH semantics. When present in an update request, the authorizer
12814
+ # configuration is replaced with optionalValue. When absent, the
12815
+ # authorizer configuration is left unchanged. To unset, include the
12816
+ # wrapper with optionalValue not specified.
12817
+ #
12818
+ # @!attribute [rw] optional_value
12819
+ # The updated authorizer configuration value. If not specified, it
12820
+ # will clear the current authorizer configuration of the resource.
12821
+ # @return [Types::AuthorizerConfiguration]
12822
+ #
12823
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdatedAuthorizerConfiguration AWS API Documentation
12824
+ #
12825
+ class UpdatedAuthorizerConfiguration < Struct.new(
12826
+ :optional_value)
12827
+ SENSITIVE = []
12828
+ include Aws::Structure
12829
+ end
12830
+
12831
+ # Wrapper for updating a custom descriptor with PATCH semantics. When
12832
+ # present, the custom descriptor is replaced with the provided value.
12833
+ # When absent, the custom descriptor is left unchanged. To unset,
12834
+ # include the wrapper with the value set to null.
12835
+ #
12836
+ # @!attribute [rw] optional_value
12837
+ # The updated custom descriptor value.
12838
+ # @return [Types::CustomDescriptor]
12839
+ #
12840
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdatedCustomDescriptor AWS API Documentation
12841
+ #
12842
+ class UpdatedCustomDescriptor < Struct.new(
12843
+ :optional_value)
12844
+ SENSITIVE = []
12845
+ include Aws::Structure
12846
+ end
12847
+
11288
12848
  # Wrapper for updating an optional Description field with PATCH
11289
12849
  # semantics. When present in an update request, the description is
11290
12850
  # replaced with optionalValue. When absent, the description is left
@@ -11305,6 +12865,183 @@ module Aws::BedrockAgentCoreControl
11305
12865
  include Aws::Structure
11306
12866
  end
11307
12867
 
12868
+ # Wrapper for updating an optional descriptors field with PATCH
12869
+ # semantics. When present with a value, individual descriptors can be
12870
+ # updated. When present with a null value, all descriptors are unset.
12871
+ # When absent, descriptors are left unchanged.
12872
+ #
12873
+ # @!attribute [rw] optional_value
12874
+ # The updated descriptors value. Contains per-descriptor-type wrappers
12875
+ # that are each independently updatable.
12876
+ # @return [Types::UpdatedDescriptorsUnion]
12877
+ #
12878
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdatedDescriptors AWS API Documentation
12879
+ #
12880
+ class UpdatedDescriptors < Struct.new(
12881
+ :optional_value)
12882
+ SENSITIVE = []
12883
+ include Aws::Structure
12884
+ end
12885
+
12886
+ # Contains per-descriptor-type wrappers for updating descriptors. Each
12887
+ # descriptor type can be updated independently.
12888
+ #
12889
+ # @!attribute [rw] mcp
12890
+ # The updated MCP descriptor.
12891
+ # @return [Types::UpdatedMcpDescriptor]
12892
+ #
12893
+ # @!attribute [rw] a2a
12894
+ # The updated A2A descriptor.
12895
+ # @return [Types::UpdatedA2aDescriptor]
12896
+ #
12897
+ # @!attribute [rw] custom
12898
+ # The updated custom descriptor.
12899
+ # @return [Types::UpdatedCustomDescriptor]
12900
+ #
12901
+ # @!attribute [rw] agent_skills
12902
+ # The updated agent skills descriptor.
12903
+ # @return [Types::UpdatedAgentSkillsDescriptor]
12904
+ #
12905
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdatedDescriptorsUnion AWS API Documentation
12906
+ #
12907
+ class UpdatedDescriptorsUnion < Struct.new(
12908
+ :mcp,
12909
+ :a2a,
12910
+ :custom,
12911
+ :agent_skills)
12912
+ SENSITIVE = []
12913
+ include Aws::Structure
12914
+ end
12915
+
12916
+ # Wrapper for updating an MCP descriptor with PATCH semantics. When
12917
+ # present with a value, individual MCP fields can be updated
12918
+ # independently. When present with a null value, the entire MCP
12919
+ # descriptor is unset. When absent, the MCP descriptor is left
12920
+ # unchanged.
12921
+ #
12922
+ # @!attribute [rw] optional_value
12923
+ # The updated MCP descriptor fields.
12924
+ # @return [Types::UpdatedMcpDescriptorFields]
12925
+ #
12926
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdatedMcpDescriptor AWS API Documentation
12927
+ #
12928
+ class UpdatedMcpDescriptor < Struct.new(
12929
+ :optional_value)
12930
+ SENSITIVE = []
12931
+ include Aws::Structure
12932
+ end
12933
+
12934
+ # Individual MCP descriptor fields that can be updated independently.
12935
+ #
12936
+ # @!attribute [rw] server
12937
+ # The updated server definition for the MCP descriptor.
12938
+ # @return [Types::UpdatedServerDefinition]
12939
+ #
12940
+ # @!attribute [rw] tools
12941
+ # The updated tools definition for the MCP descriptor.
12942
+ # @return [Types::UpdatedToolsDefinition]
12943
+ #
12944
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdatedMcpDescriptorFields AWS API Documentation
12945
+ #
12946
+ class UpdatedMcpDescriptorFields < Struct.new(
12947
+ :server,
12948
+ :tools)
12949
+ SENSITIVE = []
12950
+ include Aws::Structure
12951
+ end
12952
+
12953
+ # Wrapper for updating a server definition with PATCH semantics. When
12954
+ # present, the server definition is replaced with the provided value.
12955
+ # When absent, the server definition is left unchanged. To unset,
12956
+ # include the wrapper with the value set to null.
12957
+ #
12958
+ # @!attribute [rw] optional_value
12959
+ # The updated server definition value.
12960
+ # @return [Types::ServerDefinition]
12961
+ #
12962
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdatedServerDefinition AWS API Documentation
12963
+ #
12964
+ class UpdatedServerDefinition < Struct.new(
12965
+ :optional_value)
12966
+ SENSITIVE = []
12967
+ include Aws::Structure
12968
+ end
12969
+
12970
+ # Wrapper for updating a skill definition with PATCH semantics.
12971
+ #
12972
+ # @!attribute [rw] optional_value
12973
+ # The updated skill definition value.
12974
+ # @return [Types::SkillDefinition]
12975
+ #
12976
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdatedSkillDefinition AWS API Documentation
12977
+ #
12978
+ class UpdatedSkillDefinition < Struct.new(
12979
+ :optional_value)
12980
+ SENSITIVE = []
12981
+ include Aws::Structure
12982
+ end
12983
+
12984
+ # Wrapper for updating a skill markdown definition with PATCH semantics.
12985
+ #
12986
+ # @!attribute [rw] optional_value
12987
+ # The updated skill markdown definition value.
12988
+ # @return [Types::SkillMdDefinition]
12989
+ #
12990
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdatedSkillMdDefinition AWS API Documentation
12991
+ #
12992
+ class UpdatedSkillMdDefinition < Struct.new(
12993
+ :optional_value)
12994
+ SENSITIVE = []
12995
+ include Aws::Structure
12996
+ end
12997
+
12998
+ # Wrapper for updating the synchronization configuration with PATCH
12999
+ # semantics. Must be matched with `UpdatedSynchronizationType`.
13000
+ #
13001
+ # @!attribute [rw] optional_value
13002
+ # The updated synchronization configuration value.
13003
+ # @return [Types::SynchronizationConfiguration]
13004
+ #
13005
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdatedSynchronizationConfiguration AWS API Documentation
13006
+ #
13007
+ class UpdatedSynchronizationConfiguration < Struct.new(
13008
+ :optional_value)
13009
+ SENSITIVE = []
13010
+ include Aws::Structure
13011
+ end
13012
+
13013
+ # Wrapper for updating the synchronization type with PATCH semantics.
13014
+ # Must be matched with `UpdatedSynchronizationConfiguration`.
13015
+ #
13016
+ # @!attribute [rw] optional_value
13017
+ # The updated synchronization type value.
13018
+ # @return [String]
13019
+ #
13020
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdatedSynchronizationType AWS API Documentation
13021
+ #
13022
+ class UpdatedSynchronizationType < Struct.new(
13023
+ :optional_value)
13024
+ SENSITIVE = []
13025
+ include Aws::Structure
13026
+ end
13027
+
13028
+ # Wrapper for updating a tools definition with PATCH semantics. When
13029
+ # present, the tools definition is replaced with the provided value.
13030
+ # When absent, the tools definition is left unchanged. To unset, include
13031
+ # the wrapper with the value set to null.
13032
+ #
13033
+ # @!attribute [rw] optional_value
13034
+ # The updated tools definition value.
13035
+ # @return [Types::ToolsDefinition]
13036
+ #
13037
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdatedToolsDefinition AWS API Documentation
13038
+ #
13039
+ class UpdatedToolsDefinition < Struct.new(
13040
+ :optional_value)
13041
+ SENSITIVE = []
13042
+ include Aws::Structure
13043
+ end
13044
+
11308
13045
  # Contains user preference consolidation override configuration.
11309
13046
  #
11310
13047
  # @!attribute [rw] append_to_prompt