aws-sdk-bedrockagentcorecontrol 1.36.0 → 1.38.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.
@@ -7316,11 +8035,19 @@ module Aws::BedrockAgentCoreControl
7316
8035
  # with mcpToolSchema.
7317
8036
  # @return [Types::McpToolSchemaConfiguration]
7318
8037
  #
8038
+ # @!attribute [rw] listing_mode
8039
+ # The listing mode for the MCP server target configuration. MCP
8040
+ # resources for default targets are cached at the control plane for
8041
+ # faster access. MCP resources for dynamic targets will be dynamically
8042
+ # retrieved when listing tools.
8043
+ # @return [String]
8044
+ #
7319
8045
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/McpServerTargetConfiguration AWS API Documentation
7320
8046
  #
7321
8047
  class McpServerTargetConfiguration < Struct.new(
7322
8048
  :endpoint,
7323
- :mcp_tool_schema)
8049
+ :mcp_tool_schema,
8050
+ :listing_mode)
7324
8051
  SENSITIVE = []
7325
8052
  include Aws::Structure
7326
8053
  end
@@ -8878,88 +9605,334 @@ module Aws::BedrockAgentCoreControl
8878
9605
  class Unknown < ReflectionConfiguration; end
8879
9606
  end
8880
9607
 
8881
- # Configuration for HTTP request headers that will be passed through to
8882
- # the runtime.
9608
+ # A pairing of a credential provider type with its corresponding
9609
+ # provider details for authenticating with external sources.
8883
9610
  #
8884
- # @note RequestHeaderConfiguration is a union - when making an API calls you must set exactly one of the members.
9611
+ # @!attribute [rw] credential_provider_type
9612
+ # The type of credential provider.
8885
9613
  #
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.
9614
+ # * `OAUTH` - OAuth-based authentication.
8887
9615
  #
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>]
9616
+ # * `IAM` - Amazon Web Services IAM-based authentication using SigV4
9617
+ # signing.
9618
+ # @return [String]
8892
9619
  #
8893
- # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/RequestHeaderConfiguration AWS API Documentation
9620
+ # @!attribute [rw] credential_provider
9621
+ # The credential provider configuration details. The structure depends
9622
+ # on the `credentialProviderType`.
9623
+ # @return [Types::RegistryRecordCredentialProviderUnion]
8894
9624
  #
8895
- class RequestHeaderConfiguration < Struct.new(
8896
- :request_header_allowlist,
8897
- :unknown)
9625
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/RegistryRecordCredentialProviderConfiguration AWS API Documentation
9626
+ #
9627
+ class RegistryRecordCredentialProviderConfiguration < Struct.new(
9628
+ :credential_provider_type,
9629
+ :credential_provider)
8898
9630
  SENSITIVE = []
8899
9631
  include Aws::Structure
8900
- include Aws::Structure::Union
8901
-
8902
- class RequestHeaderAllowlist < RequestHeaderConfiguration; end
8903
- class Unknown < RequestHeaderConfiguration; end
8904
9632
  end
8905
9633
 
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.
9634
+ # Union of supported credential provider types for registry record
9635
+ # synchronization.
8909
9636
  #
8910
- # @note Resource is a union - when making an API calls you must set exactly one of the members.
9637
+ # @note RegistryRecordCredentialProviderUnion is a union - when making an API calls you must set exactly one of the members.
8911
9638
  #
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.
9639
+ # @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
9640
  #
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]
9641
+ # @!attribute [rw] oauth_credential_provider
9642
+ # The OAuth credential provider configuration for authenticating with
9643
+ # the external source.
9644
+ # @return [Types::RegistryRecordOAuthCredentialProvider]
8919
9645
  #
8920
- # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/Resource AWS API Documentation
9646
+ # @!attribute [rw] iam_credential_provider
9647
+ # The IAM credential provider configuration for authenticating with
9648
+ # the external source using SigV4 signing.
9649
+ # @return [Types::RegistryRecordIamCredentialProvider]
8921
9650
  #
8922
- class Resource < Struct.new(
8923
- :arn,
9651
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/RegistryRecordCredentialProviderUnion AWS API Documentation
9652
+ #
9653
+ class RegistryRecordCredentialProviderUnion < Struct.new(
9654
+ :oauth_credential_provider,
9655
+ :iam_credential_provider,
8924
9656
  :unknown)
8925
9657
  SENSITIVE = []
8926
9658
  include Aws::Structure
8927
9659
  include Aws::Structure::Union
8928
9660
 
8929
- class Arn < Resource; end
8930
- class Unknown < Resource; end
9661
+ class OauthCredentialProvider < RegistryRecordCredentialProviderUnion; end
9662
+ class IamCredentialProvider < RegistryRecordCredentialProviderUnion; end
9663
+ class Unknown < RegistryRecordCredentialProviderUnion; end
8931
9664
  end
8932
9665
 
8933
- # Exception thrown when a resource limit is exceeded.
9666
+ # IAM credential provider configuration for authenticating with an
9667
+ # external source using SigV4 signing during synchronization.
8934
9668
  #
8935
- # @!attribute [rw] message
9669
+ # @!attribute [rw] role_arn
9670
+ # The Amazon Resource Name (ARN) of the IAM role to assume for SigV4
9671
+ # signing.
8936
9672
  # @return [String]
8937
9673
  #
8938
- # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ResourceLimitExceededException AWS API Documentation
9674
+ # @!attribute [rw] service
9675
+ # The SigV4 signing service name (for example, `execute-api` or
9676
+ # `bedrock-agentcore`).
9677
+ # @return [String]
8939
9678
  #
8940
- class ResourceLimitExceededException < Struct.new(
8941
- :message)
9679
+ # @!attribute [rw] region
9680
+ # The Amazon Web Services region for SigV4 signing (for example,
9681
+ # `us-west-2`). If not specified, the region is extracted from the MCP
9682
+ # server URL hostname, with fallback to the service's own region.
9683
+ # @return [String]
9684
+ #
9685
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/RegistryRecordIamCredentialProvider AWS API Documentation
9686
+ #
9687
+ class RegistryRecordIamCredentialProvider < Struct.new(
9688
+ :role_arn,
9689
+ :service,
9690
+ :region)
8942
9691
  SENSITIVE = []
8943
9692
  include Aws::Structure
8944
9693
  end
8945
9694
 
8946
- # The location of a resource.
9695
+ # OAuth credential provider configuration for authenticating with an
9696
+ # external source during synchronization.
8947
9697
  #
8948
- # @note ResourceLocation is a union - when making an API calls you must set exactly one of the members.
9698
+ # @!attribute [rw] provider_arn
9699
+ # The Amazon Resource Name (ARN) of the OAuth credential provider
9700
+ # resource.
9701
+ # @return [String]
8949
9702
  #
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.
9703
+ # @!attribute [rw] grant_type
9704
+ # The OAuth grant type. Currently only `CLIENT_CREDENTIALS` is
9705
+ # supported.
9706
+ # @return [String]
8951
9707
  #
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]
9708
+ # @!attribute [rw] scopes
9709
+ # The OAuth scopes to request during authentication.
9710
+ # @return [Array<String>]
8956
9711
  #
8957
- # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ResourceLocation AWS API Documentation
9712
+ # @!attribute [rw] custom_parameters
9713
+ # Additional custom parameters for the OAuth flow.
9714
+ # @return [Hash<String,String>]
8958
9715
  #
8959
- class ResourceLocation < Struct.new(
8960
- :s3,
8961
- :unknown)
8962
- SENSITIVE = []
9716
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/RegistryRecordOAuthCredentialProvider AWS API Documentation
9717
+ #
9718
+ class RegistryRecordOAuthCredentialProvider < Struct.new(
9719
+ :provider_arn,
9720
+ :grant_type,
9721
+ :scopes,
9722
+ :custom_parameters)
9723
+ SENSITIVE = []
9724
+ include Aws::Structure
9725
+ end
9726
+
9727
+ # Contains summary information about a registry record.
9728
+ #
9729
+ # @!attribute [rw] registry_arn
9730
+ # The Amazon Resource Name (ARN) of the registry that contains the
9731
+ # record.
9732
+ # @return [String]
9733
+ #
9734
+ # @!attribute [rw] record_arn
9735
+ # The Amazon Resource Name (ARN) of the registry record.
9736
+ # @return [String]
9737
+ #
9738
+ # @!attribute [rw] record_id
9739
+ # The unique identifier of the registry record.
9740
+ # @return [String]
9741
+ #
9742
+ # @!attribute [rw] name
9743
+ # The name of the registry record.
9744
+ # @return [String]
9745
+ #
9746
+ # @!attribute [rw] description
9747
+ # The description of the registry record.
9748
+ # @return [String]
9749
+ #
9750
+ # @!attribute [rw] descriptor_type
9751
+ # The descriptor type of the registry record. Possible values are
9752
+ # `MCP`, `A2A`, `CUSTOM`, and `AGENT_SKILLS`.
9753
+ # @return [String]
9754
+ #
9755
+ # @!attribute [rw] record_version
9756
+ # The version of the registry record.
9757
+ # @return [String]
9758
+ #
9759
+ # @!attribute [rw] status
9760
+ # The current status of the registry record. Possible values include
9761
+ # `CREATING`, `DRAFT`, `APPROVED`, `PENDING_APPROVAL`, `REJECTED`,
9762
+ # `DEPRECATED`, `UPDATING`, `CREATE_FAILED`, and `UPDATE_FAILED`.
9763
+ # @return [String]
9764
+ #
9765
+ # @!attribute [rw] created_at
9766
+ # The timestamp when the registry record was created.
9767
+ # @return [Time]
9768
+ #
9769
+ # @!attribute [rw] updated_at
9770
+ # The timestamp when the registry record was last updated.
9771
+ # @return [Time]
9772
+ #
9773
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/RegistryRecordSummary AWS API Documentation
9774
+ #
9775
+ class RegistryRecordSummary < Struct.new(
9776
+ :registry_arn,
9777
+ :record_arn,
9778
+ :record_id,
9779
+ :name,
9780
+ :description,
9781
+ :descriptor_type,
9782
+ :record_version,
9783
+ :status,
9784
+ :created_at,
9785
+ :updated_at)
9786
+ SENSITIVE = [:description]
9787
+ include Aws::Structure
9788
+ end
9789
+
9790
+ # Contains summary information about a registry.
9791
+ #
9792
+ # @!attribute [rw] name
9793
+ # The name of the registry.
9794
+ # @return [String]
9795
+ #
9796
+ # @!attribute [rw] description
9797
+ # The description of the registry.
9798
+ # @return [String]
9799
+ #
9800
+ # @!attribute [rw] registry_id
9801
+ # The unique identifier of the registry.
9802
+ # @return [String]
9803
+ #
9804
+ # @!attribute [rw] registry_arn
9805
+ # The Amazon Resource Name (ARN) of the registry.
9806
+ # @return [String]
9807
+ #
9808
+ # @!attribute [rw] authorizer_type
9809
+ # The type of authorizer used by the registry. This controls the
9810
+ # authorization method for the Search and Invoke APIs used by
9811
+ # consumers.
9812
+ #
9813
+ # * `CUSTOM_JWT` - Authorize with a bearer token.
9814
+ #
9815
+ # * `AWS_IAM` - Authorize with your Amazon Web Services IAM
9816
+ # credentials.
9817
+ # @return [String]
9818
+ #
9819
+ # @!attribute [rw] status
9820
+ # The current status of the registry. Possible values include
9821
+ # `CREATING`, `READY`, `UPDATING`, `CREATE_FAILED`, `UPDATE_FAILED`,
9822
+ # `DELETING`, and `DELETE_FAILED`.
9823
+ # @return [String]
9824
+ #
9825
+ # @!attribute [rw] status_reason
9826
+ # The reason for the current status, typically set when the status is
9827
+ # a failure state.
9828
+ # @return [String]
9829
+ #
9830
+ # @!attribute [rw] created_at
9831
+ # The timestamp when the registry was created.
9832
+ # @return [Time]
9833
+ #
9834
+ # @!attribute [rw] updated_at
9835
+ # The timestamp when the registry was last updated.
9836
+ # @return [Time]
9837
+ #
9838
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/RegistrySummary AWS API Documentation
9839
+ #
9840
+ class RegistrySummary < Struct.new(
9841
+ :name,
9842
+ :description,
9843
+ :registry_id,
9844
+ :registry_arn,
9845
+ :authorizer_type,
9846
+ :status,
9847
+ :status_reason,
9848
+ :created_at,
9849
+ :updated_at)
9850
+ SENSITIVE = [:description]
9851
+ include Aws::Structure
9852
+ end
9853
+
9854
+ # Configuration for HTTP request headers that will be passed through to
9855
+ # the runtime.
9856
+ #
9857
+ # @note RequestHeaderConfiguration is a union - when making an API calls you must set exactly one of the members.
9858
+ #
9859
+ # @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.
9860
+ #
9861
+ # @!attribute [rw] request_header_allowlist
9862
+ # A list of HTTP request headers that are allowed to be passed through
9863
+ # to the runtime.
9864
+ # @return [Array<String>]
9865
+ #
9866
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/RequestHeaderConfiguration AWS API Documentation
9867
+ #
9868
+ class RequestHeaderConfiguration < Struct.new(
9869
+ :request_header_allowlist,
9870
+ :unknown)
9871
+ SENSITIVE = []
9872
+ include Aws::Structure
9873
+ include Aws::Structure::Union
9874
+
9875
+ class RequestHeaderAllowlist < RequestHeaderConfiguration; end
9876
+ class Unknown < RequestHeaderConfiguration; end
9877
+ end
9878
+
9879
+ # Represents a resource within the AgentCore Policy system. Resources
9880
+ # are the targets of policy evaluation. Currently, only AgentCore
9881
+ # Gateways are supported as resources for policy enforcement.
9882
+ #
9883
+ # @note Resource is a union - when making an API calls you must set exactly one of the members.
9884
+ #
9885
+ # @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.
9886
+ #
9887
+ # @!attribute [rw] arn
9888
+ # The Amazon Resource Name (ARN) of the resource. This globally unique
9889
+ # identifier specifies the exact resource that policies will be
9890
+ # evaluated against for access control decisions.
9891
+ # @return [String]
9892
+ #
9893
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/Resource AWS API Documentation
9894
+ #
9895
+ class Resource < Struct.new(
9896
+ :arn,
9897
+ :unknown)
9898
+ SENSITIVE = []
9899
+ include Aws::Structure
9900
+ include Aws::Structure::Union
9901
+
9902
+ class Arn < Resource; end
9903
+ class Unknown < Resource; end
9904
+ end
9905
+
9906
+ # Exception thrown when a resource limit is exceeded.
9907
+ #
9908
+ # @!attribute [rw] message
9909
+ # @return [String]
9910
+ #
9911
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ResourceLimitExceededException AWS API Documentation
9912
+ #
9913
+ class ResourceLimitExceededException < Struct.new(
9914
+ :message)
9915
+ SENSITIVE = []
9916
+ include Aws::Structure
9917
+ end
9918
+
9919
+ # The location of a resource.
9920
+ #
9921
+ # @note ResourceLocation is a union - when making an API calls you must set exactly one of the members.
9922
+ #
9923
+ # @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.
9924
+ #
9925
+ # @!attribute [rw] s3
9926
+ # The Amazon S3 location for storing data. This structure defines
9927
+ # where in Amazon S3 data is stored.
9928
+ # @return [Types::S3Location]
9929
+ #
9930
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ResourceLocation AWS API Documentation
9931
+ #
9932
+ class ResourceLocation < Struct.new(
9933
+ :s3,
9934
+ :unknown)
9935
+ SENSITIVE = []
8963
9936
  include Aws::Structure
8964
9937
  include Aws::Structure::Union
8965
9938
 
@@ -9398,6 +10371,29 @@ module Aws::BedrockAgentCoreControl
9398
10371
  include Aws::Structure
9399
10372
  end
9400
10373
 
10374
+ # The server definition for an MCP descriptor. Contains the schema
10375
+ # version and inline content for the MCP server configuration.
10376
+ #
10377
+ # @!attribute [rw] schema_version
10378
+ # The schema version of the server definition based on the MCP
10379
+ # protocol specification. If not specified, the version is
10380
+ # auto-detected from the content.
10381
+ # @return [String]
10382
+ #
10383
+ # @!attribute [rw] inline_content
10384
+ # The JSON content containing the MCP server definition, conforming to
10385
+ # the MCP protocol specification.
10386
+ # @return [String]
10387
+ #
10388
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ServerDefinition AWS API Documentation
10389
+ #
10390
+ class ServerDefinition < Struct.new(
10391
+ :schema_version,
10392
+ :inline_content)
10393
+ SENSITIVE = []
10394
+ include Aws::Structure
10395
+ end
10396
+
9401
10397
  # An internal error occurred.
9402
10398
  #
9403
10399
  # @!attribute [rw] message
@@ -9499,6 +10495,40 @@ module Aws::BedrockAgentCoreControl
9499
10495
  include Aws::Structure
9500
10496
  end
9501
10497
 
10498
+ # The structured skill definition with schema version and content.
10499
+ #
10500
+ # @!attribute [rw] schema_version
10501
+ # The version of the skill definition schema.
10502
+ # @return [String]
10503
+ #
10504
+ # @!attribute [rw] inline_content
10505
+ # The JSON content containing the structured skill definition.
10506
+ # @return [String]
10507
+ #
10508
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/SkillDefinition AWS API Documentation
10509
+ #
10510
+ class SkillDefinition < Struct.new(
10511
+ :schema_version,
10512
+ :inline_content)
10513
+ SENSITIVE = []
10514
+ include Aws::Structure
10515
+ end
10516
+
10517
+ # The skill markdown definition for an agent skills descriptor.
10518
+ #
10519
+ # @!attribute [rw] inline_content
10520
+ # The markdown content describing the agent's skills in a
10521
+ # human-readable format.
10522
+ # @return [String]
10523
+ #
10524
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/SkillMdDefinition AWS API Documentation
10525
+ #
10526
+ class SkillMdDefinition < Struct.new(
10527
+ :inline_content)
10528
+ SENSITIVE = []
10529
+ include Aws::Structure
10530
+ end
10531
+
9502
10532
  # Input configuration for a Slack OAuth2 provider.
9503
10533
  #
9504
10534
  # @!attribute [rw] client_id
@@ -9715,6 +10745,60 @@ module Aws::BedrockAgentCoreControl
9715
10745
  include Aws::Structure
9716
10746
  end
9717
10747
 
10748
+ # @!attribute [rw] registry_id
10749
+ # The identifier of the registry containing the record. You can
10750
+ # specify either the Amazon Resource Name (ARN) or the ID of the
10751
+ # registry.
10752
+ # @return [String]
10753
+ #
10754
+ # @!attribute [rw] record_id
10755
+ # The identifier of the registry record to submit for approval. You
10756
+ # can specify either the Amazon Resource Name (ARN) or the ID of the
10757
+ # record.
10758
+ # @return [String]
10759
+ #
10760
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/SubmitRegistryRecordForApprovalRequest AWS API Documentation
10761
+ #
10762
+ class SubmitRegistryRecordForApprovalRequest < Struct.new(
10763
+ :registry_id,
10764
+ :record_id)
10765
+ SENSITIVE = []
10766
+ include Aws::Structure
10767
+ end
10768
+
10769
+ # @!attribute [rw] registry_arn
10770
+ # The Amazon Resource Name (ARN) of the registry that contains the
10771
+ # record.
10772
+ # @return [String]
10773
+ #
10774
+ # @!attribute [rw] record_arn
10775
+ # The Amazon Resource Name (ARN) of the registry record.
10776
+ # @return [String]
10777
+ #
10778
+ # @!attribute [rw] record_id
10779
+ # The unique identifier of the registry record.
10780
+ # @return [String]
10781
+ #
10782
+ # @!attribute [rw] status
10783
+ # The resulting status of the registry record after submission.
10784
+ # @return [String]
10785
+ #
10786
+ # @!attribute [rw] updated_at
10787
+ # The timestamp when the record was last updated.
10788
+ # @return [Time]
10789
+ #
10790
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/SubmitRegistryRecordForApprovalResponse AWS API Documentation
10791
+ #
10792
+ class SubmitRegistryRecordForApprovalResponse < Struct.new(
10793
+ :registry_arn,
10794
+ :record_arn,
10795
+ :record_id,
10796
+ :status,
10797
+ :updated_at)
10798
+ SENSITIVE = []
10799
+ include Aws::Structure
10800
+ end
10801
+
9718
10802
  # Contains summary consolidation override configuration.
9719
10803
  #
9720
10804
  # @!attribute [rw] append_to_prompt
@@ -9797,6 +10881,21 @@ module Aws::BedrockAgentCoreControl
9797
10881
  include Aws::Structure
9798
10882
  end
9799
10883
 
10884
+ # Configuration for synchronizing registry record metadata from an
10885
+ # external source.
10886
+ #
10887
+ # @!attribute [rw] from_url
10888
+ # Configuration for synchronizing from a URL-based source.
10889
+ # @return [Types::FromUrlSynchronizationConfiguration]
10890
+ #
10891
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/SynchronizationConfiguration AWS API Documentation
10892
+ #
10893
+ class SynchronizationConfiguration < Struct.new(
10894
+ :from_url)
10895
+ SENSITIVE = []
10896
+ include Aws::Structure
10897
+ end
10898
+
9800
10899
  # @!attribute [rw] gateway_identifier
9801
10900
  # The gateway Identifier.
9802
10901
  # @return [String]
@@ -10061,6 +11160,29 @@ module Aws::BedrockAgentCoreControl
10061
11160
  class Unknown < ToolSchema; end
10062
11161
  end
10063
11162
 
11163
+ # The tools definition for an MCP descriptor. Contains the protocol
11164
+ # version and inline content describing the available tools.
11165
+ #
11166
+ # @!attribute [rw] protocol_version
11167
+ # The protocol version of the tools definition based on the MCP
11168
+ # protocol specification. If not specified, the version is
11169
+ # auto-detected from the content.
11170
+ # @return [String]
11171
+ #
11172
+ # @!attribute [rw] inline_content
11173
+ # The JSON content containing the MCP tools definition, conforming to
11174
+ # the MCP protocol specification.
11175
+ # @return [String]
11176
+ #
11177
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ToolsDefinition AWS API Documentation
11178
+ #
11179
+ class ToolsDefinition < Struct.new(
11180
+ :protocol_version,
11181
+ :inline_content)
11182
+ SENSITIVE = []
11183
+ include Aws::Structure
11184
+ end
11185
+
10064
11186
  # Condition that triggers memory processing.
10065
11187
  #
10066
11188
  # @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,20 +12356,357 @@ module Aws::BedrockAgentCoreControl
11234
12356
  include Aws::Structure
11235
12357
  end
11236
12358
 
12359
+ # @!attribute [rw] registry_id
12360
+ # The identifier of the registry containing the record. You can
12361
+ # specify either the Amazon Resource Name (ARN) or the ID of the
12362
+ # registry.
12363
+ # @return [String]
12364
+ #
12365
+ # @!attribute [rw] record_id
12366
+ # The identifier of the registry record to update. You can specify
12367
+ # either the Amazon Resource Name (ARN) or the ID of the record.
12368
+ # @return [String]
12369
+ #
11237
12370
  # @!attribute [rw] name
11238
- # The name of the workload identity to update.
12371
+ # The updated name for the registry record.
11239
12372
  # @return [String]
11240
12373
  #
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>]
12374
+ # @!attribute [rw] description
12375
+ # The updated description for the registry record. To clear the
12376
+ # description, include the `UpdatedDescription` wrapper with
12377
+ # `optionalValue` not specified.
12378
+ # @return [Types::UpdatedDescription]
11245
12379
  #
11246
- # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdateWorkloadIdentityRequest AWS API Documentation
12380
+ # @!attribute [rw] descriptor_type
12381
+ # The updated descriptor type for the registry record. Changing the
12382
+ # descriptor type may require updating the `descriptors` field to
12383
+ # match the new type's schema requirements.
12384
+ # @return [String]
11247
12385
  #
11248
- class UpdateWorkloadIdentityRequest < Struct.new(
11249
- :name,
11250
- :allowed_resource_oauth_2_return_urls)
12386
+ # @!attribute [rw] descriptors
12387
+ # The updated descriptor-type-specific configuration containing the
12388
+ # resource schema and metadata. Uses PATCH semantics where individual
12389
+ # descriptor fields can be updated independently.
12390
+ # @return [Types::UpdatedDescriptors]
12391
+ #
12392
+ # @!attribute [rw] record_version
12393
+ # The version of the registry record for optimistic locking. If
12394
+ # provided, it must match the current version of the record. The
12395
+ # service automatically increments the version after a successful
12396
+ # update.
12397
+ # @return [String]
12398
+ #
12399
+ # @!attribute [rw] synchronization_type
12400
+ # The updated synchronization type for the registry record.
12401
+ # @return [Types::UpdatedSynchronizationType]
12402
+ #
12403
+ # @!attribute [rw] synchronization_configuration
12404
+ # The updated synchronization configuration for the registry record.
12405
+ # @return [Types::UpdatedSynchronizationConfiguration]
12406
+ #
12407
+ # @!attribute [rw] trigger_synchronization
12408
+ # Whether to trigger synchronization using the stored or provided
12409
+ # configuration. When set to `true`, the service will synchronize the
12410
+ # record metadata from the configured external source.
12411
+ # @return [Boolean]
12412
+ #
12413
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdateRegistryRecordRequest AWS API Documentation
12414
+ #
12415
+ class UpdateRegistryRecordRequest < Struct.new(
12416
+ :registry_id,
12417
+ :record_id,
12418
+ :name,
12419
+ :description,
12420
+ :descriptor_type,
12421
+ :descriptors,
12422
+ :record_version,
12423
+ :synchronization_type,
12424
+ :synchronization_configuration,
12425
+ :trigger_synchronization)
12426
+ SENSITIVE = []
12427
+ include Aws::Structure
12428
+ end
12429
+
12430
+ # @!attribute [rw] registry_arn
12431
+ # The Amazon Resource Name (ARN) of the registry that contains the
12432
+ # updated record.
12433
+ # @return [String]
12434
+ #
12435
+ # @!attribute [rw] record_arn
12436
+ # The Amazon Resource Name (ARN) of the updated registry record.
12437
+ # @return [String]
12438
+ #
12439
+ # @!attribute [rw] record_id
12440
+ # The unique identifier of the updated registry record.
12441
+ # @return [String]
12442
+ #
12443
+ # @!attribute [rw] name
12444
+ # The name of the updated registry record.
12445
+ # @return [String]
12446
+ #
12447
+ # @!attribute [rw] description
12448
+ # The description of the updated registry record.
12449
+ # @return [String]
12450
+ #
12451
+ # @!attribute [rw] descriptor_type
12452
+ # The descriptor type of the updated registry record. Possible values
12453
+ # are `MCP`, `A2A`, `CUSTOM`, and `AGENT_SKILLS`.
12454
+ # @return [String]
12455
+ #
12456
+ # @!attribute [rw] descriptors
12457
+ # The descriptor-type-specific configuration of the updated registry
12458
+ # record. For details, see the `Descriptors` data type.
12459
+ # @return [Types::Descriptors]
12460
+ #
12461
+ # @!attribute [rw] record_version
12462
+ # The version of the updated registry record.
12463
+ # @return [String]
12464
+ #
12465
+ # @!attribute [rw] status
12466
+ # The current status of the updated registry record. Possible values
12467
+ # include `CREATING`, `DRAFT`, `APPROVED`, `PENDING_APPROVAL`,
12468
+ # `REJECTED`, `DEPRECATED`, `UPDATING`, `CREATE_FAILED`, and
12469
+ # `UPDATE_FAILED`.
12470
+ # @return [String]
12471
+ #
12472
+ # @!attribute [rw] created_at
12473
+ # The timestamp when the registry record was created.
12474
+ # @return [Time]
12475
+ #
12476
+ # @!attribute [rw] updated_at
12477
+ # The timestamp when the registry record was last updated.
12478
+ # @return [Time]
12479
+ #
12480
+ # @!attribute [rw] status_reason
12481
+ # The reason for the current status of the updated registry record.
12482
+ # @return [String]
12483
+ #
12484
+ # @!attribute [rw] synchronization_type
12485
+ # The synchronization type of the updated registry record.
12486
+ # @return [String]
12487
+ #
12488
+ # @!attribute [rw] synchronization_configuration
12489
+ # The synchronization configuration of the updated registry record.
12490
+ # @return [Types::SynchronizationConfiguration]
12491
+ #
12492
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdateRegistryRecordResponse AWS API Documentation
12493
+ #
12494
+ class UpdateRegistryRecordResponse < Struct.new(
12495
+ :registry_arn,
12496
+ :record_arn,
12497
+ :record_id,
12498
+ :name,
12499
+ :description,
12500
+ :descriptor_type,
12501
+ :descriptors,
12502
+ :record_version,
12503
+ :status,
12504
+ :created_at,
12505
+ :updated_at,
12506
+ :status_reason,
12507
+ :synchronization_type,
12508
+ :synchronization_configuration)
12509
+ SENSITIVE = [:description]
12510
+ include Aws::Structure
12511
+ end
12512
+
12513
+ # @!attribute [rw] registry_id
12514
+ # The identifier of the registry containing the record. You can
12515
+ # specify either the Amazon Resource Name (ARN) or the ID of the
12516
+ # registry.
12517
+ # @return [String]
12518
+ #
12519
+ # @!attribute [rw] record_id
12520
+ # The identifier of the registry record to update the status for. You
12521
+ # can specify either the Amazon Resource Name (ARN) or the ID of the
12522
+ # record.
12523
+ # @return [String]
12524
+ #
12525
+ # @!attribute [rw] status
12526
+ # The target status for the registry record.
12527
+ # @return [String]
12528
+ #
12529
+ # @!attribute [rw] status_reason
12530
+ # The reason for the status change, such as why the record was
12531
+ # approved or rejected.
12532
+ # @return [String]
12533
+ #
12534
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdateRegistryRecordStatusRequest AWS API Documentation
12535
+ #
12536
+ class UpdateRegistryRecordStatusRequest < Struct.new(
12537
+ :registry_id,
12538
+ :record_id,
12539
+ :status,
12540
+ :status_reason)
12541
+ SENSITIVE = []
12542
+ include Aws::Structure
12543
+ end
12544
+
12545
+ # @!attribute [rw] registry_arn
12546
+ # The Amazon Resource Name (ARN) of the registry that contains the
12547
+ # record.
12548
+ # @return [String]
12549
+ #
12550
+ # @!attribute [rw] record_arn
12551
+ # The Amazon Resource Name (ARN) of the registry record.
12552
+ # @return [String]
12553
+ #
12554
+ # @!attribute [rw] record_id
12555
+ # The unique identifier of the registry record.
12556
+ # @return [String]
12557
+ #
12558
+ # @!attribute [rw] status
12559
+ # The resulting status of the registry record.
12560
+ # @return [String]
12561
+ #
12562
+ # @!attribute [rw] status_reason
12563
+ # The reason for the status change.
12564
+ # @return [String]
12565
+ #
12566
+ # @!attribute [rw] updated_at
12567
+ # The timestamp when the record was last updated.
12568
+ # @return [Time]
12569
+ #
12570
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdateRegistryRecordStatusResponse AWS API Documentation
12571
+ #
12572
+ class UpdateRegistryRecordStatusResponse < Struct.new(
12573
+ :registry_arn,
12574
+ :record_arn,
12575
+ :record_id,
12576
+ :status,
12577
+ :status_reason,
12578
+ :updated_at)
12579
+ SENSITIVE = []
12580
+ include Aws::Structure
12581
+ end
12582
+
12583
+ # @!attribute [rw] registry_id
12584
+ # The identifier of the registry to update. You can specify either the
12585
+ # Amazon Resource Name (ARN) or the ID of the registry.
12586
+ # @return [String]
12587
+ #
12588
+ # @!attribute [rw] name
12589
+ # The updated name of the registry.
12590
+ # @return [String]
12591
+ #
12592
+ # @!attribute [rw] description
12593
+ # The updated description of the registry. To clear the description,
12594
+ # include the `UpdatedDescription` wrapper with `optionalValue` not
12595
+ # specified.
12596
+ # @return [Types::UpdatedDescription]
12597
+ #
12598
+ # @!attribute [rw] authorizer_configuration
12599
+ # The updated authorizer configuration for the registry. Changing the
12600
+ # authorizer configuration can break existing consumers of the
12601
+ # registry who are using the authorization type prior to the update.
12602
+ # @return [Types::UpdatedAuthorizerConfiguration]
12603
+ #
12604
+ # @!attribute [rw] approval_configuration
12605
+ # The updated approval configuration for registry records. The updated
12606
+ # configuration only affects new records that move to
12607
+ # `PENDING_APPROVAL` status after the change. Existing records already
12608
+ # in `PENDING_APPROVAL` status are not affected.
12609
+ # @return [Types::UpdatedApprovalConfiguration]
12610
+ #
12611
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdateRegistryRequest AWS API Documentation
12612
+ #
12613
+ class UpdateRegistryRequest < Struct.new(
12614
+ :registry_id,
12615
+ :name,
12616
+ :description,
12617
+ :authorizer_configuration,
12618
+ :approval_configuration)
12619
+ SENSITIVE = []
12620
+ include Aws::Structure
12621
+ end
12622
+
12623
+ # @!attribute [rw] name
12624
+ # The name of the updated registry.
12625
+ # @return [String]
12626
+ #
12627
+ # @!attribute [rw] description
12628
+ # The description of the updated registry.
12629
+ # @return [String]
12630
+ #
12631
+ # @!attribute [rw] registry_id
12632
+ # The unique identifier of the updated registry.
12633
+ # @return [String]
12634
+ #
12635
+ # @!attribute [rw] registry_arn
12636
+ # The Amazon Resource Name (ARN) of the updated registry.
12637
+ # @return [String]
12638
+ #
12639
+ # @!attribute [rw] authorizer_type
12640
+ # The type of authorizer used by the updated registry. This controls
12641
+ # the authorization method for the Search and Invoke APIs used by
12642
+ # consumers.
12643
+ #
12644
+ # * `CUSTOM_JWT` - Authorize with a bearer token.
12645
+ #
12646
+ # * `AWS_IAM` - Authorize with your Amazon Web Services IAM
12647
+ # credentials.
12648
+ # @return [String]
12649
+ #
12650
+ # @!attribute [rw] authorizer_configuration
12651
+ # The authorizer configuration for the updated registry. For details,
12652
+ # see the `AuthorizerConfiguration` data type.
12653
+ # @return [Types::AuthorizerConfiguration]
12654
+ #
12655
+ # @!attribute [rw] approval_configuration
12656
+ # The approval configuration for the updated registry. For details,
12657
+ # see the `ApprovalConfiguration` data type.
12658
+ # @return [Types::ApprovalConfiguration]
12659
+ #
12660
+ # @!attribute [rw] status
12661
+ # The current status of the updated registry. Possible values include
12662
+ # `CREATING`, `READY`, `UPDATING`, `CREATE_FAILED`, `UPDATE_FAILED`,
12663
+ # `DELETING`, and `DELETE_FAILED`.
12664
+ # @return [String]
12665
+ #
12666
+ # @!attribute [rw] status_reason
12667
+ # The reason for the current status of the updated registry.
12668
+ # @return [String]
12669
+ #
12670
+ # @!attribute [rw] created_at
12671
+ # The timestamp when the registry was created.
12672
+ # @return [Time]
12673
+ #
12674
+ # @!attribute [rw] updated_at
12675
+ # The timestamp when the registry was last updated.
12676
+ # @return [Time]
12677
+ #
12678
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdateRegistryResponse AWS API Documentation
12679
+ #
12680
+ class UpdateRegistryResponse < Struct.new(
12681
+ :name,
12682
+ :description,
12683
+ :registry_id,
12684
+ :registry_arn,
12685
+ :authorizer_type,
12686
+ :authorizer_configuration,
12687
+ :approval_configuration,
12688
+ :status,
12689
+ :status_reason,
12690
+ :created_at,
12691
+ :updated_at)
12692
+ SENSITIVE = [:description]
12693
+ include Aws::Structure
12694
+ end
12695
+
12696
+ # @!attribute [rw] name
12697
+ # The name of the workload identity to update.
12698
+ # @return [String]
12699
+ #
12700
+ # @!attribute [rw] allowed_resource_oauth_2_return_urls
12701
+ # The new list of allowed OAuth2 return URLs for resources associated
12702
+ # with this workload identity. This list replaces the existing list.
12703
+ # @return [Array<String>]
12704
+ #
12705
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdateWorkloadIdentityRequest AWS API Documentation
12706
+ #
12707
+ class UpdateWorkloadIdentityRequest < Struct.new(
12708
+ :name,
12709
+ :allowed_resource_oauth_2_return_urls)
11251
12710
  SENSITIVE = []
11252
12711
  include Aws::Structure
11253
12712
  end
@@ -11285,6 +12744,115 @@ module Aws::BedrockAgentCoreControl
11285
12744
  include Aws::Structure
11286
12745
  end
11287
12746
 
12747
+ # Wrapper for updating an A2A descriptor with PATCH semantics. When
12748
+ # present, the A2A descriptor is replaced with the provided value. When
12749
+ # absent, the A2A descriptor is left unchanged. To unset, include the
12750
+ # wrapper with the value set to null.
12751
+ #
12752
+ # @!attribute [rw] optional_value
12753
+ # The updated A2A descriptor value.
12754
+ # @return [Types::A2aDescriptor]
12755
+ #
12756
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdatedA2aDescriptor AWS API Documentation
12757
+ #
12758
+ class UpdatedA2aDescriptor < Struct.new(
12759
+ :optional_value)
12760
+ SENSITIVE = []
12761
+ include Aws::Structure
12762
+ end
12763
+
12764
+ # Wrapper for updating an agent skills descriptor with PATCH semantics.
12765
+ # When present with a value, individual fields can be updated
12766
+ # independently. When present with a null value, the entire agent skills
12767
+ # descriptor is unset. When absent, the agent skills descriptor is left
12768
+ # unchanged.
12769
+ #
12770
+ # @!attribute [rw] optional_value
12771
+ # The updated agent skills descriptor fields.
12772
+ # @return [Types::UpdatedAgentSkillsDescriptorFields]
12773
+ #
12774
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdatedAgentSkillsDescriptor AWS API Documentation
12775
+ #
12776
+ class UpdatedAgentSkillsDescriptor < Struct.new(
12777
+ :optional_value)
12778
+ SENSITIVE = []
12779
+ include Aws::Structure
12780
+ end
12781
+
12782
+ # Individual agent skills descriptor fields that can be updated
12783
+ # independently.
12784
+ #
12785
+ # @!attribute [rw] skill_md
12786
+ # The updated skill markdown definition.
12787
+ # @return [Types::UpdatedSkillMdDefinition]
12788
+ #
12789
+ # @!attribute [rw] skill_definition
12790
+ # The updated skill definition.
12791
+ # @return [Types::UpdatedSkillDefinition]
12792
+ #
12793
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdatedAgentSkillsDescriptorFields AWS API Documentation
12794
+ #
12795
+ class UpdatedAgentSkillsDescriptorFields < Struct.new(
12796
+ :skill_md,
12797
+ :skill_definition)
12798
+ SENSITIVE = []
12799
+ include Aws::Structure
12800
+ end
12801
+
12802
+ # Wrapper for updating an optional approval configuration field with
12803
+ # PATCH semantics. When present in an update request, the approval
12804
+ # configuration is replaced with the provided value. When absent, the
12805
+ # approval configuration is left unchanged.
12806
+ #
12807
+ # @!attribute [rw] optional_value
12808
+ # The updated approval configuration value. Set to `null` to unset the
12809
+ # approval configuration.
12810
+ # @return [Types::ApprovalConfiguration]
12811
+ #
12812
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdatedApprovalConfiguration AWS API Documentation
12813
+ #
12814
+ class UpdatedApprovalConfiguration < Struct.new(
12815
+ :optional_value)
12816
+ SENSITIVE = []
12817
+ include Aws::Structure
12818
+ end
12819
+
12820
+ # Wrapper for updating an optional AuthorizerConfiguration field with
12821
+ # PATCH semantics. When present in an update request, the authorizer
12822
+ # configuration is replaced with optionalValue. When absent, the
12823
+ # authorizer configuration is left unchanged. To unset, include the
12824
+ # wrapper with optionalValue not specified.
12825
+ #
12826
+ # @!attribute [rw] optional_value
12827
+ # The updated authorizer configuration value. If not specified, it
12828
+ # will clear the current authorizer configuration of the resource.
12829
+ # @return [Types::AuthorizerConfiguration]
12830
+ #
12831
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdatedAuthorizerConfiguration AWS API Documentation
12832
+ #
12833
+ class UpdatedAuthorizerConfiguration < Struct.new(
12834
+ :optional_value)
12835
+ SENSITIVE = []
12836
+ include Aws::Structure
12837
+ end
12838
+
12839
+ # Wrapper for updating a custom descriptor with PATCH semantics. When
12840
+ # present, the custom descriptor is replaced with the provided value.
12841
+ # When absent, the custom descriptor is left unchanged. To unset,
12842
+ # include the wrapper with the value set to null.
12843
+ #
12844
+ # @!attribute [rw] optional_value
12845
+ # The updated custom descriptor value.
12846
+ # @return [Types::CustomDescriptor]
12847
+ #
12848
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdatedCustomDescriptor AWS API Documentation
12849
+ #
12850
+ class UpdatedCustomDescriptor < Struct.new(
12851
+ :optional_value)
12852
+ SENSITIVE = []
12853
+ include Aws::Structure
12854
+ end
12855
+
11288
12856
  # Wrapper for updating an optional Description field with PATCH
11289
12857
  # semantics. When present in an update request, the description is
11290
12858
  # replaced with optionalValue. When absent, the description is left
@@ -11305,6 +12873,183 @@ module Aws::BedrockAgentCoreControl
11305
12873
  include Aws::Structure
11306
12874
  end
11307
12875
 
12876
+ # Wrapper for updating an optional descriptors field with PATCH
12877
+ # semantics. When present with a value, individual descriptors can be
12878
+ # updated. When present with a null value, all descriptors are unset.
12879
+ # When absent, descriptors are left unchanged.
12880
+ #
12881
+ # @!attribute [rw] optional_value
12882
+ # The updated descriptors value. Contains per-descriptor-type wrappers
12883
+ # that are each independently updatable.
12884
+ # @return [Types::UpdatedDescriptorsUnion]
12885
+ #
12886
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdatedDescriptors AWS API Documentation
12887
+ #
12888
+ class UpdatedDescriptors < Struct.new(
12889
+ :optional_value)
12890
+ SENSITIVE = []
12891
+ include Aws::Structure
12892
+ end
12893
+
12894
+ # Contains per-descriptor-type wrappers for updating descriptors. Each
12895
+ # descriptor type can be updated independently.
12896
+ #
12897
+ # @!attribute [rw] mcp
12898
+ # The updated MCP descriptor.
12899
+ # @return [Types::UpdatedMcpDescriptor]
12900
+ #
12901
+ # @!attribute [rw] a2a
12902
+ # The updated A2A descriptor.
12903
+ # @return [Types::UpdatedA2aDescriptor]
12904
+ #
12905
+ # @!attribute [rw] custom
12906
+ # The updated custom descriptor.
12907
+ # @return [Types::UpdatedCustomDescriptor]
12908
+ #
12909
+ # @!attribute [rw] agent_skills
12910
+ # The updated agent skills descriptor.
12911
+ # @return [Types::UpdatedAgentSkillsDescriptor]
12912
+ #
12913
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdatedDescriptorsUnion AWS API Documentation
12914
+ #
12915
+ class UpdatedDescriptorsUnion < Struct.new(
12916
+ :mcp,
12917
+ :a2a,
12918
+ :custom,
12919
+ :agent_skills)
12920
+ SENSITIVE = []
12921
+ include Aws::Structure
12922
+ end
12923
+
12924
+ # Wrapper for updating an MCP descriptor with PATCH semantics. When
12925
+ # present with a value, individual MCP fields can be updated
12926
+ # independently. When present with a null value, the entire MCP
12927
+ # descriptor is unset. When absent, the MCP descriptor is left
12928
+ # unchanged.
12929
+ #
12930
+ # @!attribute [rw] optional_value
12931
+ # The updated MCP descriptor fields.
12932
+ # @return [Types::UpdatedMcpDescriptorFields]
12933
+ #
12934
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdatedMcpDescriptor AWS API Documentation
12935
+ #
12936
+ class UpdatedMcpDescriptor < Struct.new(
12937
+ :optional_value)
12938
+ SENSITIVE = []
12939
+ include Aws::Structure
12940
+ end
12941
+
12942
+ # Individual MCP descriptor fields that can be updated independently.
12943
+ #
12944
+ # @!attribute [rw] server
12945
+ # The updated server definition for the MCP descriptor.
12946
+ # @return [Types::UpdatedServerDefinition]
12947
+ #
12948
+ # @!attribute [rw] tools
12949
+ # The updated tools definition for the MCP descriptor.
12950
+ # @return [Types::UpdatedToolsDefinition]
12951
+ #
12952
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdatedMcpDescriptorFields AWS API Documentation
12953
+ #
12954
+ class UpdatedMcpDescriptorFields < Struct.new(
12955
+ :server,
12956
+ :tools)
12957
+ SENSITIVE = []
12958
+ include Aws::Structure
12959
+ end
12960
+
12961
+ # Wrapper for updating a server definition with PATCH semantics. When
12962
+ # present, the server definition is replaced with the provided value.
12963
+ # When absent, the server definition is left unchanged. To unset,
12964
+ # include the wrapper with the value set to null.
12965
+ #
12966
+ # @!attribute [rw] optional_value
12967
+ # The updated server definition value.
12968
+ # @return [Types::ServerDefinition]
12969
+ #
12970
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdatedServerDefinition AWS API Documentation
12971
+ #
12972
+ class UpdatedServerDefinition < Struct.new(
12973
+ :optional_value)
12974
+ SENSITIVE = []
12975
+ include Aws::Structure
12976
+ end
12977
+
12978
+ # Wrapper for updating a skill definition with PATCH semantics.
12979
+ #
12980
+ # @!attribute [rw] optional_value
12981
+ # The updated skill definition value.
12982
+ # @return [Types::SkillDefinition]
12983
+ #
12984
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdatedSkillDefinition AWS API Documentation
12985
+ #
12986
+ class UpdatedSkillDefinition < Struct.new(
12987
+ :optional_value)
12988
+ SENSITIVE = []
12989
+ include Aws::Structure
12990
+ end
12991
+
12992
+ # Wrapper for updating a skill markdown definition with PATCH semantics.
12993
+ #
12994
+ # @!attribute [rw] optional_value
12995
+ # The updated skill markdown definition value.
12996
+ # @return [Types::SkillMdDefinition]
12997
+ #
12998
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdatedSkillMdDefinition AWS API Documentation
12999
+ #
13000
+ class UpdatedSkillMdDefinition < Struct.new(
13001
+ :optional_value)
13002
+ SENSITIVE = []
13003
+ include Aws::Structure
13004
+ end
13005
+
13006
+ # Wrapper for updating the synchronization configuration with PATCH
13007
+ # semantics. Must be matched with `UpdatedSynchronizationType`.
13008
+ #
13009
+ # @!attribute [rw] optional_value
13010
+ # The updated synchronization configuration value.
13011
+ # @return [Types::SynchronizationConfiguration]
13012
+ #
13013
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdatedSynchronizationConfiguration AWS API Documentation
13014
+ #
13015
+ class UpdatedSynchronizationConfiguration < Struct.new(
13016
+ :optional_value)
13017
+ SENSITIVE = []
13018
+ include Aws::Structure
13019
+ end
13020
+
13021
+ # Wrapper for updating the synchronization type with PATCH semantics.
13022
+ # Must be matched with `UpdatedSynchronizationConfiguration`.
13023
+ #
13024
+ # @!attribute [rw] optional_value
13025
+ # The updated synchronization type value.
13026
+ # @return [String]
13027
+ #
13028
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdatedSynchronizationType AWS API Documentation
13029
+ #
13030
+ class UpdatedSynchronizationType < Struct.new(
13031
+ :optional_value)
13032
+ SENSITIVE = []
13033
+ include Aws::Structure
13034
+ end
13035
+
13036
+ # Wrapper for updating a tools definition with PATCH semantics. When
13037
+ # present, the tools definition is replaced with the provided value.
13038
+ # When absent, the tools definition is left unchanged. To unset, include
13039
+ # the wrapper with the value set to null.
13040
+ #
13041
+ # @!attribute [rw] optional_value
13042
+ # The updated tools definition value.
13043
+ # @return [Types::ToolsDefinition]
13044
+ #
13045
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdatedToolsDefinition AWS API Documentation
13046
+ #
13047
+ class UpdatedToolsDefinition < Struct.new(
13048
+ :optional_value)
13049
+ SENSITIVE = []
13050
+ include Aws::Structure
13051
+ end
13052
+
11308
13053
  # Contains user preference consolidation override configuration.
11309
13054
  #
11310
13055
  # @!attribute [rw] append_to_prompt