aws-sdk-bedrockagentcorecontrol 1.33.0 → 1.34.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 82f7d491e35d370c3eeca48d86acbfdbc91988a4d7aa0dcf6a117263da51b6af
4
- data.tar.gz: cbe676ee248afa551fcf6b94687da1443f1e61e0f5ffca1ed5ad585b79668d35
3
+ metadata.gz: d34c4c12ae2be24e2d8fa68db89e2b61817bcbc8ad20332af60ce71607cceefb
4
+ data.tar.gz: f506602fbd879c30b347df296a91552c1ba29b68eaff5cf7aa5ab7a376efb43c
5
5
  SHA512:
6
- metadata.gz: 4f273b08dc90f164a50d82a8c3511fea86e7bfd4b53a3c5ddd6dfdad1a37c1816a73f3c3786f687914d4fb530cc3d51cde1daa5c415e71f3c8ac3a5505b4c4a9
7
- data.tar.gz: 48e6faf99739236b9d4bb788eba0e6ea0eb2f8322ec50dba76d877d6f397dd00b07e74f352ec6e47a5d9feab62d8833e324da13140efe354f2cdc521bb74f310
6
+ metadata.gz: d30576b8ff7e2c80afb2e670a31a8ebeb96eaa5e7c835b709b0f98a1eaba0b473edb0e9dacfa1c9cd8eb63c77cb9e9a7337d180ea1776a92c8136bd7dd281196
7
+ data.tar.gz: 0d038a4f9a720b6f3e6d39b16d8438713e69703326532373fe51860b1bd0974cbf71c4985040c3286fc922be5c4dee68d7ec634f20d3ca4d27a9411fc495a9c0
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.34.0 (2026-04-01)
5
+ ------------------
6
+
7
+ * Feature - Adds support for VPC egress private endpoints for Amazon Bedrock AgentCore gateway targets, enabling private connectivity through managed VPC Lattice resources. Also adds IAM credential provider for gateway targets, enabling IAM-based authentication to target endpoints
8
+
4
9
  1.33.0 (2026-03-27)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.33.0
1
+ 1.34.0
@@ -1384,6 +1384,10 @@ module Aws::BedrockAgentCoreControl
1384
1384
  # Optional configuration for HTTP header and query parameter propagation
1385
1385
  # to and from the gateway target.
1386
1386
  #
1387
+ # @option params [Types::PrivateEndpoint] :private_endpoint
1388
+ # The private endpoint configuration for the gateway target. Use this to
1389
+ # connect the gateway to private resources in your VPC.
1390
+ #
1387
1391
  # @return [Types::CreateGatewayTargetResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1388
1392
  #
1389
1393
  # * {Types::CreateGatewayTargetResponse#gateway_arn #gateway_arn} => String
@@ -1398,6 +1402,8 @@ module Aws::BedrockAgentCoreControl
1398
1402
  # * {Types::CreateGatewayTargetResponse#credential_provider_configurations #credential_provider_configurations} => Array<Types::CredentialProviderConfiguration>
1399
1403
  # * {Types::CreateGatewayTargetResponse#last_synchronized_at #last_synchronized_at} => Time
1400
1404
  # * {Types::CreateGatewayTargetResponse#metadata_configuration #metadata_configuration} => Types::MetadataConfiguration
1405
+ # * {Types::CreateGatewayTargetResponse#private_endpoint #private_endpoint} => Types::PrivateEndpoint
1406
+ # * {Types::CreateGatewayTargetResponse#private_endpoint_managed_resources #private_endpoint_managed_resources} => Array<Types::ManagedResourceDetails>
1401
1407
  #
1402
1408
  # @example Request syntax with placeholder values
1403
1409
  #
@@ -1507,6 +1513,10 @@ module Aws::BedrockAgentCoreControl
1507
1513
  # credential_prefix: "ApiKeyCredentialPrefix",
1508
1514
  # credential_location: "HEADER", # accepts HEADER, QUERY_PARAMETER
1509
1515
  # },
1516
+ # iam_credential_provider: {
1517
+ # service: "IamCredentialProviderServiceString", # required
1518
+ # region: "IamCredentialProviderRegionString",
1519
+ # },
1510
1520
  # },
1511
1521
  # },
1512
1522
  # ],
@@ -1515,6 +1525,21 @@ module Aws::BedrockAgentCoreControl
1515
1525
  # allowed_query_parameters: ["HttpQueryParameterName"],
1516
1526
  # allowed_response_headers: ["HttpHeaderName"],
1517
1527
  # },
1528
+ # private_endpoint: {
1529
+ # self_managed_lattice_resource: {
1530
+ # resource_configuration_identifier: "ResourceConfigurationIdentifier",
1531
+ # },
1532
+ # managed_lattice_resource: {
1533
+ # vpc_identifier: "VpcIdentifier", # required
1534
+ # subnet_ids: ["SubnetId"], # required
1535
+ # endpoint_ip_address_type: "IPV4", # required, accepts IPV4, IPV6
1536
+ # security_group_ids: ["SecurityGroupIdentifier"],
1537
+ # tags: {
1538
+ # "TagKey" => "TagValue",
1539
+ # },
1540
+ # routing_domain: "RoutingDomain",
1541
+ # },
1542
+ # },
1518
1543
  # })
1519
1544
  #
1520
1545
  # @example Response structure
@@ -1579,6 +1604,8 @@ module Aws::BedrockAgentCoreControl
1579
1604
  # resp.credential_provider_configurations[0].credential_provider.api_key_credential_provider.credential_parameter_name #=> String
1580
1605
  # resp.credential_provider_configurations[0].credential_provider.api_key_credential_provider.credential_prefix #=> String
1581
1606
  # resp.credential_provider_configurations[0].credential_provider.api_key_credential_provider.credential_location #=> String, one of "HEADER", "QUERY_PARAMETER"
1607
+ # resp.credential_provider_configurations[0].credential_provider.iam_credential_provider.service #=> String
1608
+ # resp.credential_provider_configurations[0].credential_provider.iam_credential_provider.region #=> String
1582
1609
  # resp.last_synchronized_at #=> Time
1583
1610
  # resp.metadata_configuration.allowed_request_headers #=> Array
1584
1611
  # resp.metadata_configuration.allowed_request_headers[0] #=> String
@@ -1586,6 +1613,20 @@ module Aws::BedrockAgentCoreControl
1586
1613
  # resp.metadata_configuration.allowed_query_parameters[0] #=> String
1587
1614
  # resp.metadata_configuration.allowed_response_headers #=> Array
1588
1615
  # resp.metadata_configuration.allowed_response_headers[0] #=> String
1616
+ # resp.private_endpoint.self_managed_lattice_resource.resource_configuration_identifier #=> String
1617
+ # resp.private_endpoint.managed_lattice_resource.vpc_identifier #=> String
1618
+ # resp.private_endpoint.managed_lattice_resource.subnet_ids #=> Array
1619
+ # resp.private_endpoint.managed_lattice_resource.subnet_ids[0] #=> String
1620
+ # resp.private_endpoint.managed_lattice_resource.endpoint_ip_address_type #=> String, one of "IPV4", "IPV6"
1621
+ # resp.private_endpoint.managed_lattice_resource.security_group_ids #=> Array
1622
+ # resp.private_endpoint.managed_lattice_resource.security_group_ids[0] #=> String
1623
+ # resp.private_endpoint.managed_lattice_resource.tags #=> Hash
1624
+ # resp.private_endpoint.managed_lattice_resource.tags["TagKey"] #=> String
1625
+ # resp.private_endpoint.managed_lattice_resource.routing_domain #=> String
1626
+ # resp.private_endpoint_managed_resources #=> Array
1627
+ # resp.private_endpoint_managed_resources[0].domain #=> String
1628
+ # resp.private_endpoint_managed_resources[0].resource_gateway_arn #=> String
1629
+ # resp.private_endpoint_managed_resources[0].resource_association_arn #=> String
1589
1630
  #
1590
1631
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CreateGatewayTarget AWS API Documentation
1591
1632
  #
@@ -3530,6 +3571,8 @@ module Aws::BedrockAgentCoreControl
3530
3571
  # * {Types::GetGatewayTargetResponse#credential_provider_configurations #credential_provider_configurations} => Array<Types::CredentialProviderConfiguration>
3531
3572
  # * {Types::GetGatewayTargetResponse#last_synchronized_at #last_synchronized_at} => Time
3532
3573
  # * {Types::GetGatewayTargetResponse#metadata_configuration #metadata_configuration} => Types::MetadataConfiguration
3574
+ # * {Types::GetGatewayTargetResponse#private_endpoint #private_endpoint} => Types::PrivateEndpoint
3575
+ # * {Types::GetGatewayTargetResponse#private_endpoint_managed_resources #private_endpoint_managed_resources} => Array<Types::ManagedResourceDetails>
3533
3576
  #
3534
3577
  # @example Request syntax with placeholder values
3535
3578
  #
@@ -3600,6 +3643,8 @@ module Aws::BedrockAgentCoreControl
3600
3643
  # resp.credential_provider_configurations[0].credential_provider.api_key_credential_provider.credential_parameter_name #=> String
3601
3644
  # resp.credential_provider_configurations[0].credential_provider.api_key_credential_provider.credential_prefix #=> String
3602
3645
  # resp.credential_provider_configurations[0].credential_provider.api_key_credential_provider.credential_location #=> String, one of "HEADER", "QUERY_PARAMETER"
3646
+ # resp.credential_provider_configurations[0].credential_provider.iam_credential_provider.service #=> String
3647
+ # resp.credential_provider_configurations[0].credential_provider.iam_credential_provider.region #=> String
3603
3648
  # resp.last_synchronized_at #=> Time
3604
3649
  # resp.metadata_configuration.allowed_request_headers #=> Array
3605
3650
  # resp.metadata_configuration.allowed_request_headers[0] #=> String
@@ -3607,6 +3652,20 @@ module Aws::BedrockAgentCoreControl
3607
3652
  # resp.metadata_configuration.allowed_query_parameters[0] #=> String
3608
3653
  # resp.metadata_configuration.allowed_response_headers #=> Array
3609
3654
  # resp.metadata_configuration.allowed_response_headers[0] #=> String
3655
+ # resp.private_endpoint.self_managed_lattice_resource.resource_configuration_identifier #=> String
3656
+ # resp.private_endpoint.managed_lattice_resource.vpc_identifier #=> String
3657
+ # resp.private_endpoint.managed_lattice_resource.subnet_ids #=> Array
3658
+ # resp.private_endpoint.managed_lattice_resource.subnet_ids[0] #=> String
3659
+ # resp.private_endpoint.managed_lattice_resource.endpoint_ip_address_type #=> String, one of "IPV4", "IPV6"
3660
+ # resp.private_endpoint.managed_lattice_resource.security_group_ids #=> Array
3661
+ # resp.private_endpoint.managed_lattice_resource.security_group_ids[0] #=> String
3662
+ # resp.private_endpoint.managed_lattice_resource.tags #=> Hash
3663
+ # resp.private_endpoint.managed_lattice_resource.tags["TagKey"] #=> String
3664
+ # resp.private_endpoint.managed_lattice_resource.routing_domain #=> String
3665
+ # resp.private_endpoint_managed_resources #=> Array
3666
+ # resp.private_endpoint_managed_resources[0].domain #=> String
3667
+ # resp.private_endpoint_managed_resources[0].resource_gateway_arn #=> String
3668
+ # resp.private_endpoint_managed_resources[0].resource_association_arn #=> String
3610
3669
  #
3611
3670
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetGatewayTarget AWS API Documentation
3612
3671
  #
@@ -5396,6 +5455,8 @@ module Aws::BedrockAgentCoreControl
5396
5455
  # resp.targets[0].credential_provider_configurations[0].credential_provider.api_key_credential_provider.credential_parameter_name #=> String
5397
5456
  # resp.targets[0].credential_provider_configurations[0].credential_provider.api_key_credential_provider.credential_prefix #=> String
5398
5457
  # resp.targets[0].credential_provider_configurations[0].credential_provider.api_key_credential_provider.credential_location #=> String, one of "HEADER", "QUERY_PARAMETER"
5458
+ # resp.targets[0].credential_provider_configurations[0].credential_provider.iam_credential_provider.service #=> String
5459
+ # resp.targets[0].credential_provider_configurations[0].credential_provider.iam_credential_provider.region #=> String
5399
5460
  # resp.targets[0].last_synchronized_at #=> Time
5400
5461
  # resp.targets[0].metadata_configuration.allowed_request_headers #=> Array
5401
5462
  # resp.targets[0].metadata_configuration.allowed_request_headers[0] #=> String
@@ -5403,6 +5464,20 @@ module Aws::BedrockAgentCoreControl
5403
5464
  # resp.targets[0].metadata_configuration.allowed_query_parameters[0] #=> String
5404
5465
  # resp.targets[0].metadata_configuration.allowed_response_headers #=> Array
5405
5466
  # resp.targets[0].metadata_configuration.allowed_response_headers[0] #=> String
5467
+ # resp.targets[0].private_endpoint.self_managed_lattice_resource.resource_configuration_identifier #=> String
5468
+ # resp.targets[0].private_endpoint.managed_lattice_resource.vpc_identifier #=> String
5469
+ # resp.targets[0].private_endpoint.managed_lattice_resource.subnet_ids #=> Array
5470
+ # resp.targets[0].private_endpoint.managed_lattice_resource.subnet_ids[0] #=> String
5471
+ # resp.targets[0].private_endpoint.managed_lattice_resource.endpoint_ip_address_type #=> String, one of "IPV4", "IPV6"
5472
+ # resp.targets[0].private_endpoint.managed_lattice_resource.security_group_ids #=> Array
5473
+ # resp.targets[0].private_endpoint.managed_lattice_resource.security_group_ids[0] #=> String
5474
+ # resp.targets[0].private_endpoint.managed_lattice_resource.tags #=> Hash
5475
+ # resp.targets[0].private_endpoint.managed_lattice_resource.tags["TagKey"] #=> String
5476
+ # resp.targets[0].private_endpoint.managed_lattice_resource.routing_domain #=> String
5477
+ # resp.targets[0].private_endpoint_managed_resources #=> Array
5478
+ # resp.targets[0].private_endpoint_managed_resources[0].domain #=> String
5479
+ # resp.targets[0].private_endpoint_managed_resources[0].resource_gateway_arn #=> String
5480
+ # resp.targets[0].private_endpoint_managed_resources[0].resource_association_arn #=> String
5406
5481
  #
5407
5482
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/SynchronizeGatewayTargets AWS API Documentation
5408
5483
  #
@@ -6052,6 +6127,10 @@ module Aws::BedrockAgentCoreControl
6052
6127
  # Configuration for HTTP header and query parameter propagation to the
6053
6128
  # gateway target.
6054
6129
  #
6130
+ # @option params [Types::PrivateEndpoint] :private_endpoint
6131
+ # The private endpoint configuration for the gateway target. Use this to
6132
+ # connect the gateway to private resources in your VPC.
6133
+ #
6055
6134
  # @return [Types::UpdateGatewayTargetResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
6056
6135
  #
6057
6136
  # * {Types::UpdateGatewayTargetResponse#gateway_arn #gateway_arn} => String
@@ -6066,6 +6145,8 @@ module Aws::BedrockAgentCoreControl
6066
6145
  # * {Types::UpdateGatewayTargetResponse#credential_provider_configurations #credential_provider_configurations} => Array<Types::CredentialProviderConfiguration>
6067
6146
  # * {Types::UpdateGatewayTargetResponse#last_synchronized_at #last_synchronized_at} => Time
6068
6147
  # * {Types::UpdateGatewayTargetResponse#metadata_configuration #metadata_configuration} => Types::MetadataConfiguration
6148
+ # * {Types::UpdateGatewayTargetResponse#private_endpoint #private_endpoint} => Types::PrivateEndpoint
6149
+ # * {Types::UpdateGatewayTargetResponse#private_endpoint_managed_resources #private_endpoint_managed_resources} => Array<Types::ManagedResourceDetails>
6069
6150
  #
6070
6151
  # @example Request syntax with placeholder values
6071
6152
  #
@@ -6175,6 +6256,10 @@ module Aws::BedrockAgentCoreControl
6175
6256
  # credential_prefix: "ApiKeyCredentialPrefix",
6176
6257
  # credential_location: "HEADER", # accepts HEADER, QUERY_PARAMETER
6177
6258
  # },
6259
+ # iam_credential_provider: {
6260
+ # service: "IamCredentialProviderServiceString", # required
6261
+ # region: "IamCredentialProviderRegionString",
6262
+ # },
6178
6263
  # },
6179
6264
  # },
6180
6265
  # ],
@@ -6183,6 +6268,21 @@ module Aws::BedrockAgentCoreControl
6183
6268
  # allowed_query_parameters: ["HttpQueryParameterName"],
6184
6269
  # allowed_response_headers: ["HttpHeaderName"],
6185
6270
  # },
6271
+ # private_endpoint: {
6272
+ # self_managed_lattice_resource: {
6273
+ # resource_configuration_identifier: "ResourceConfigurationIdentifier",
6274
+ # },
6275
+ # managed_lattice_resource: {
6276
+ # vpc_identifier: "VpcIdentifier", # required
6277
+ # subnet_ids: ["SubnetId"], # required
6278
+ # endpoint_ip_address_type: "IPV4", # required, accepts IPV4, IPV6
6279
+ # security_group_ids: ["SecurityGroupIdentifier"],
6280
+ # tags: {
6281
+ # "TagKey" => "TagValue",
6282
+ # },
6283
+ # routing_domain: "RoutingDomain",
6284
+ # },
6285
+ # },
6186
6286
  # })
6187
6287
  #
6188
6288
  # @example Response structure
@@ -6247,6 +6347,8 @@ module Aws::BedrockAgentCoreControl
6247
6347
  # resp.credential_provider_configurations[0].credential_provider.api_key_credential_provider.credential_parameter_name #=> String
6248
6348
  # resp.credential_provider_configurations[0].credential_provider.api_key_credential_provider.credential_prefix #=> String
6249
6349
  # resp.credential_provider_configurations[0].credential_provider.api_key_credential_provider.credential_location #=> String, one of "HEADER", "QUERY_PARAMETER"
6350
+ # resp.credential_provider_configurations[0].credential_provider.iam_credential_provider.service #=> String
6351
+ # resp.credential_provider_configurations[0].credential_provider.iam_credential_provider.region #=> String
6250
6352
  # resp.last_synchronized_at #=> Time
6251
6353
  # resp.metadata_configuration.allowed_request_headers #=> Array
6252
6354
  # resp.metadata_configuration.allowed_request_headers[0] #=> String
@@ -6254,6 +6356,20 @@ module Aws::BedrockAgentCoreControl
6254
6356
  # resp.metadata_configuration.allowed_query_parameters[0] #=> String
6255
6357
  # resp.metadata_configuration.allowed_response_headers #=> Array
6256
6358
  # resp.metadata_configuration.allowed_response_headers[0] #=> String
6359
+ # resp.private_endpoint.self_managed_lattice_resource.resource_configuration_identifier #=> String
6360
+ # resp.private_endpoint.managed_lattice_resource.vpc_identifier #=> String
6361
+ # resp.private_endpoint.managed_lattice_resource.subnet_ids #=> Array
6362
+ # resp.private_endpoint.managed_lattice_resource.subnet_ids[0] #=> String
6363
+ # resp.private_endpoint.managed_lattice_resource.endpoint_ip_address_type #=> String, one of "IPV4", "IPV6"
6364
+ # resp.private_endpoint.managed_lattice_resource.security_group_ids #=> Array
6365
+ # resp.private_endpoint.managed_lattice_resource.security_group_ids[0] #=> String
6366
+ # resp.private_endpoint.managed_lattice_resource.tags #=> Hash
6367
+ # resp.private_endpoint.managed_lattice_resource.tags["TagKey"] #=> String
6368
+ # resp.private_endpoint.managed_lattice_resource.routing_domain #=> String
6369
+ # resp.private_endpoint_managed_resources #=> Array
6370
+ # resp.private_endpoint_managed_resources[0].domain #=> String
6371
+ # resp.private_endpoint_managed_resources[0].resource_gateway_arn #=> String
6372
+ # resp.private_endpoint_managed_resources[0].resource_association_arn #=> String
6257
6373
  #
6258
6374
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdateGatewayTarget AWS API Documentation
6259
6375
  #
@@ -7085,7 +7201,7 @@ module Aws::BedrockAgentCoreControl
7085
7201
  tracer: tracer
7086
7202
  )
7087
7203
  context[:gem_name] = 'aws-sdk-bedrockagentcorecontrol'
7088
- context[:gem_version] = '1.33.0'
7204
+ context[:gem_version] = '1.34.0'
7089
7205
  Seahorse::Client::Request.new(handlers, context)
7090
7206
  end
7091
7207
 
@@ -216,8 +216,10 @@ module Aws::BedrockAgentCoreControl
216
216
  Description = Shapes::StringShape.new(name: 'Description')
217
217
  DiscoveryUrl = Shapes::StringShape.new(name: 'DiscoveryUrl')
218
218
  DiscoveryUrlType = Shapes::StringShape.new(name: 'DiscoveryUrlType')
219
+ DomainName = Shapes::StringShape.new(name: 'DomainName')
219
220
  Double = Shapes::FloatShape.new(name: 'Double')
220
221
  EncryptionFailure = Shapes::StructureShape.new(name: 'EncryptionFailure')
222
+ EndpointIpAddressType = Shapes::StringShape.new(name: 'EndpointIpAddressType')
221
223
  EndpointName = Shapes::StringShape.new(name: 'EndpointName')
222
224
  EnvironmentVariableKey = Shapes::StringShape.new(name: 'EnvironmentVariableKey')
223
225
  EnvironmentVariableValue = Shapes::StringShape.new(name: 'EnvironmentVariableValue')
@@ -326,6 +328,9 @@ module Aws::BedrockAgentCoreControl
326
328
  HeaderName = Shapes::StringShape.new(name: 'HeaderName')
327
329
  HttpHeaderName = Shapes::StringShape.new(name: 'HttpHeaderName')
328
330
  HttpQueryParameterName = Shapes::StringShape.new(name: 'HttpQueryParameterName')
331
+ IamCredentialProvider = Shapes::StructureShape.new(name: 'IamCredentialProvider')
332
+ IamCredentialProviderRegionString = Shapes::StringShape.new(name: 'IamCredentialProviderRegionString')
333
+ IamCredentialProviderServiceString = Shapes::StringShape.new(name: 'IamCredentialProviderServiceString')
329
334
  InboundTokenClaimNameType = Shapes::StringShape.new(name: 'InboundTokenClaimNameType')
330
335
  InboundTokenClaimValueType = Shapes::StringShape.new(name: 'InboundTokenClaimValueType')
331
336
  IncludedOauth2ProviderConfigInput = Shapes::StructureShape.new(name: 'IncludedOauth2ProviderConfigInput')
@@ -405,6 +410,8 @@ module Aws::BedrockAgentCoreControl
405
410
  LlmAsAJudgeEvaluatorConfig = Shapes::StructureShape.new(name: 'LlmAsAJudgeEvaluatorConfig')
406
411
  LogGroupName = Shapes::StringShape.new(name: 'LogGroupName')
407
412
  MCPGatewayConfiguration = Shapes::StructureShape.new(name: 'MCPGatewayConfiguration')
413
+ ManagedLatticeResource = Shapes::StructureShape.new(name: 'ManagedLatticeResource')
414
+ ManagedResourceDetails = Shapes::StructureShape.new(name: 'ManagedResourceDetails')
408
415
  MatchValueString = Shapes::StringShape.new(name: 'MatchValueString')
409
416
  MatchValueStringList = Shapes::ListShape.new(name: 'MatchValueStringList')
410
417
  MaxResults = Shapes::IntegerShape.new(name: 'MaxResults')
@@ -506,6 +513,8 @@ module Aws::BedrockAgentCoreControl
506
513
  PolicyStatus = Shapes::StringShape.new(name: 'PolicyStatus')
507
514
  PolicyStatusReasons = Shapes::ListShape.new(name: 'PolicyStatusReasons')
508
515
  PolicyValidationMode = Shapes::StringShape.new(name: 'PolicyValidationMode')
516
+ PrivateEndpoint = Shapes::UnionShape.new(name: 'PrivateEndpoint')
517
+ PrivateEndpointManagedResources = Shapes::ListShape.new(name: 'PrivateEndpointManagedResources')
509
518
  Prompt = Shapes::StringShape.new(name: 'Prompt')
510
519
  ProtocolConfiguration = Shapes::StructureShape.new(name: 'ProtocolConfiguration')
511
520
  PutResourcePolicyRequest = Shapes::StructureShape.new(name: 'PutResourcePolicyRequest')
@@ -517,6 +526,9 @@ module Aws::BedrockAgentCoreControl
517
526
  RequestHeaderConfiguration = Shapes::UnionShape.new(name: 'RequestHeaderConfiguration')
518
527
  RequiredProperties = Shapes::ListShape.new(name: 'RequiredProperties')
519
528
  Resource = Shapes::UnionShape.new(name: 'Resource')
529
+ ResourceAssociationArn = Shapes::StringShape.new(name: 'ResourceAssociationArn')
530
+ ResourceConfigurationIdentifier = Shapes::StringShape.new(name: 'ResourceConfigurationIdentifier')
531
+ ResourceGatewayArn = Shapes::StringShape.new(name: 'ResourceGatewayArn')
520
532
  ResourceId = Shapes::StringShape.new(name: 'ResourceId')
521
533
  ResourceLimitExceededException = Shapes::StructureShape.new(name: 'ResourceLimitExceededException')
522
534
  ResourceLocation = Shapes::UnionShape.new(name: 'ResourceLocation')
@@ -530,6 +542,7 @@ module Aws::BedrockAgentCoreControl
530
542
  RestApiMethod = Shapes::StringShape.new(name: 'RestApiMethod')
531
543
  RestApiMethods = Shapes::ListShape.new(name: 'RestApiMethods')
532
544
  RoleArn = Shapes::StringShape.new(name: 'RoleArn')
545
+ RoutingDomain = Shapes::StringShape.new(name: 'RoutingDomain')
533
546
  Rule = Shapes::StructureShape.new(name: 'Rule')
534
547
  RuntimeContainerUri = Shapes::StringShape.new(name: 'RuntimeContainerUri')
535
548
  RuntimeMetadataConfiguration = Shapes::StructureShape.new(name: 'RuntimeMetadataConfiguration')
@@ -552,10 +565,13 @@ module Aws::BedrockAgentCoreControl
552
565
  SecretArn = Shapes::StringShape.new(name: 'SecretArn')
553
566
  SecretsManagerLocation = Shapes::StructureShape.new(name: 'SecretsManagerLocation')
554
567
  SecurityGroupId = Shapes::StringShape.new(name: 'SecurityGroupId')
568
+ SecurityGroupIdentifier = Shapes::StringShape.new(name: 'SecurityGroupIdentifier')
569
+ SecurityGroupIds = Shapes::ListShape.new(name: 'SecurityGroupIds')
555
570
  SecurityGroups = Shapes::ListShape.new(name: 'SecurityGroups')
556
571
  SelfManagedConfiguration = Shapes::StructureShape.new(name: 'SelfManagedConfiguration')
557
572
  SelfManagedConfigurationInput = Shapes::StructureShape.new(name: 'SelfManagedConfigurationInput')
558
573
  SelfManagedConfigurationInputHistoricalContextWindowSizeInteger = Shapes::IntegerShape.new(name: 'SelfManagedConfigurationInputHistoricalContextWindowSizeInteger')
574
+ SelfManagedLatticeResource = Shapes::UnionShape.new(name: 'SelfManagedLatticeResource')
559
575
  SemanticConsolidationOverride = Shapes::StructureShape.new(name: 'SemanticConsolidationOverride')
560
576
  SemanticExtractionOverride = Shapes::StructureShape.new(name: 'SemanticExtractionOverride')
561
577
  SemanticMemoryStrategyInput = Shapes::StructureShape.new(name: 'SemanticMemoryStrategyInput')
@@ -584,6 +600,7 @@ module Aws::BedrockAgentCoreControl
584
600
  StreamDeliveryResourcesList = Shapes::ListShape.new(name: 'StreamDeliveryResourcesList')
585
601
  String = Shapes::StringShape.new(name: 'String')
586
602
  SubnetId = Shapes::StringShape.new(name: 'SubnetId')
603
+ SubnetIds = Shapes::ListShape.new(name: 'SubnetIds')
587
604
  Subnets = Shapes::ListShape.new(name: 'Subnets')
588
605
  SummaryConsolidationOverride = Shapes::StructureShape.new(name: 'SummaryConsolidationOverride')
589
606
  SummaryMemoryStrategyInput = Shapes::StructureShape.new(name: 'SummaryMemoryStrategyInput')
@@ -671,6 +688,7 @@ module Aws::BedrockAgentCoreControl
671
688
  ValidationExceptionFieldList = Shapes::ListShape.new(name: 'ValidationExceptionFieldList')
672
689
  ValidationExceptionReason = Shapes::StringShape.new(name: 'ValidationExceptionReason')
673
690
  VpcConfig = Shapes::StructureShape.new(name: 'VpcConfig')
691
+ VpcIdentifier = Shapes::StringShape.new(name: 'VpcIdentifier')
674
692
  WorkloadIdentityArn = Shapes::StringShape.new(name: 'WorkloadIdentityArn')
675
693
  WorkloadIdentityArnType = Shapes::StringShape.new(name: 'WorkloadIdentityArnType')
676
694
  WorkloadIdentityDetails = Shapes::StructureShape.new(name: 'WorkloadIdentityDetails')
@@ -1086,6 +1104,7 @@ module Aws::BedrockAgentCoreControl
1086
1104
  CreateGatewayTargetRequest.add_member(:target_configuration, Shapes::ShapeRef.new(shape: TargetConfiguration, required: true, location_name: "targetConfiguration"))
1087
1105
  CreateGatewayTargetRequest.add_member(:credential_provider_configurations, Shapes::ShapeRef.new(shape: CredentialProviderConfigurations, location_name: "credentialProviderConfigurations"))
1088
1106
  CreateGatewayTargetRequest.add_member(:metadata_configuration, Shapes::ShapeRef.new(shape: MetadataConfiguration, location_name: "metadataConfiguration"))
1107
+ CreateGatewayTargetRequest.add_member(:private_endpoint, Shapes::ShapeRef.new(shape: PrivateEndpoint, location_name: "privateEndpoint"))
1089
1108
  CreateGatewayTargetRequest.struct_class = Types::CreateGatewayTargetRequest
1090
1109
 
1091
1110
  CreateGatewayTargetResponse.add_member(:gateway_arn, Shapes::ShapeRef.new(shape: GatewayArn, required: true, location_name: "gatewayArn"))
@@ -1100,6 +1119,8 @@ module Aws::BedrockAgentCoreControl
1100
1119
  CreateGatewayTargetResponse.add_member(:credential_provider_configurations, Shapes::ShapeRef.new(shape: CredentialProviderConfigurations, required: true, location_name: "credentialProviderConfigurations"))
1101
1120
  CreateGatewayTargetResponse.add_member(:last_synchronized_at, Shapes::ShapeRef.new(shape: DateTimestamp, location_name: "lastSynchronizedAt"))
1102
1121
  CreateGatewayTargetResponse.add_member(:metadata_configuration, Shapes::ShapeRef.new(shape: MetadataConfiguration, location_name: "metadataConfiguration"))
1122
+ CreateGatewayTargetResponse.add_member(:private_endpoint, Shapes::ShapeRef.new(shape: PrivateEndpoint, location_name: "privateEndpoint"))
1123
+ CreateGatewayTargetResponse.add_member(:private_endpoint_managed_resources, Shapes::ShapeRef.new(shape: PrivateEndpointManagedResources, location_name: "privateEndpointManagedResources"))
1103
1124
  CreateGatewayTargetResponse.struct_class = Types::CreateGatewayTargetResponse
1104
1125
 
1105
1126
  CreateMemoryInput.add_member(:client_token, Shapes::ShapeRef.new(shape: CreateMemoryInputClientTokenString, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
@@ -1199,9 +1220,11 @@ module Aws::BedrockAgentCoreControl
1199
1220
 
1200
1221
  CredentialProvider.add_member(:oauth_credential_provider, Shapes::ShapeRef.new(shape: OAuthCredentialProvider, location_name: "oauthCredentialProvider"))
1201
1222
  CredentialProvider.add_member(:api_key_credential_provider, Shapes::ShapeRef.new(shape: ApiKeyCredentialProvider, location_name: "apiKeyCredentialProvider"))
1223
+ CredentialProvider.add_member(:iam_credential_provider, Shapes::ShapeRef.new(shape: IamCredentialProvider, location_name: "iamCredentialProvider"))
1202
1224
  CredentialProvider.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
1203
1225
  CredentialProvider.add_member_subclass(:oauth_credential_provider, Types::CredentialProvider::OauthCredentialProvider)
1204
1226
  CredentialProvider.add_member_subclass(:api_key_credential_provider, Types::CredentialProvider::ApiKeyCredentialProvider)
1227
+ CredentialProvider.add_member_subclass(:iam_credential_provider, Types::CredentialProvider::IamCredentialProvider)
1205
1228
  CredentialProvider.add_member_subclass(:unknown, Types::CredentialProvider::Unknown)
1206
1229
  CredentialProvider.struct_class = Types::CredentialProvider
1207
1230
 
@@ -1634,6 +1657,8 @@ module Aws::BedrockAgentCoreControl
1634
1657
  GatewayTarget.add_member(:credential_provider_configurations, Shapes::ShapeRef.new(shape: CredentialProviderConfigurations, required: true, location_name: "credentialProviderConfigurations"))
1635
1658
  GatewayTarget.add_member(:last_synchronized_at, Shapes::ShapeRef.new(shape: DateTimestamp, location_name: "lastSynchronizedAt"))
1636
1659
  GatewayTarget.add_member(:metadata_configuration, Shapes::ShapeRef.new(shape: MetadataConfiguration, location_name: "metadataConfiguration"))
1660
+ GatewayTarget.add_member(:private_endpoint, Shapes::ShapeRef.new(shape: PrivateEndpoint, location_name: "privateEndpoint"))
1661
+ GatewayTarget.add_member(:private_endpoint_managed_resources, Shapes::ShapeRef.new(shape: PrivateEndpointManagedResources, location_name: "privateEndpointManagedResources"))
1637
1662
  GatewayTarget.struct_class = Types::GatewayTarget
1638
1663
 
1639
1664
  GatewayTargetList.member = Shapes::ShapeRef.new(shape: GatewayTarget)
@@ -1796,6 +1821,8 @@ module Aws::BedrockAgentCoreControl
1796
1821
  GetGatewayTargetResponse.add_member(:credential_provider_configurations, Shapes::ShapeRef.new(shape: CredentialProviderConfigurations, required: true, location_name: "credentialProviderConfigurations"))
1797
1822
  GetGatewayTargetResponse.add_member(:last_synchronized_at, Shapes::ShapeRef.new(shape: DateTimestamp, location_name: "lastSynchronizedAt"))
1798
1823
  GetGatewayTargetResponse.add_member(:metadata_configuration, Shapes::ShapeRef.new(shape: MetadataConfiguration, location_name: "metadataConfiguration"))
1824
+ GetGatewayTargetResponse.add_member(:private_endpoint, Shapes::ShapeRef.new(shape: PrivateEndpoint, location_name: "privateEndpoint"))
1825
+ GetGatewayTargetResponse.add_member(:private_endpoint_managed_resources, Shapes::ShapeRef.new(shape: PrivateEndpointManagedResources, location_name: "privateEndpointManagedResources"))
1799
1826
  GetGatewayTargetResponse.struct_class = Types::GetGatewayTargetResponse
1800
1827
 
1801
1828
  GetMemoryInput.add_member(:memory_id, Shapes::ShapeRef.new(shape: MemoryId, required: true, location: "uri", location_name: "memoryId"))
@@ -1923,6 +1950,10 @@ module Aws::BedrockAgentCoreControl
1923
1950
  GoogleOauth2ProviderConfigOutput.add_member(:client_id, Shapes::ShapeRef.new(shape: ClientIdType, location_name: "clientId"))
1924
1951
  GoogleOauth2ProviderConfigOutput.struct_class = Types::GoogleOauth2ProviderConfigOutput
1925
1952
 
1953
+ IamCredentialProvider.add_member(:service, Shapes::ShapeRef.new(shape: IamCredentialProviderServiceString, required: true, location_name: "service"))
1954
+ IamCredentialProvider.add_member(:region, Shapes::ShapeRef.new(shape: IamCredentialProviderRegionString, location_name: "region"))
1955
+ IamCredentialProvider.struct_class = Types::IamCredentialProvider
1956
+
1926
1957
  IncludedOauth2ProviderConfigInput.add_member(:client_id, Shapes::ShapeRef.new(shape: ClientIdType, required: true, location_name: "clientId"))
1927
1958
  IncludedOauth2ProviderConfigInput.add_member(:client_secret, Shapes::ShapeRef.new(shape: ClientSecretType, required: true, location_name: "clientSecret"))
1928
1959
  IncludedOauth2ProviderConfigInput.add_member(:issuer, Shapes::ShapeRef.new(shape: IssuerUrlType, location_name: "issuer"))
@@ -2162,6 +2193,19 @@ module Aws::BedrockAgentCoreControl
2162
2193
  MCPGatewayConfiguration.add_member(:search_type, Shapes::ShapeRef.new(shape: SearchType, location_name: "searchType"))
2163
2194
  MCPGatewayConfiguration.struct_class = Types::MCPGatewayConfiguration
2164
2195
 
2196
+ ManagedLatticeResource.add_member(:vpc_identifier, Shapes::ShapeRef.new(shape: VpcIdentifier, required: true, location_name: "vpcIdentifier"))
2197
+ ManagedLatticeResource.add_member(:subnet_ids, Shapes::ShapeRef.new(shape: SubnetIds, required: true, location_name: "subnetIds"))
2198
+ ManagedLatticeResource.add_member(:endpoint_ip_address_type, Shapes::ShapeRef.new(shape: EndpointIpAddressType, required: true, location_name: "endpointIpAddressType"))
2199
+ ManagedLatticeResource.add_member(:security_group_ids, Shapes::ShapeRef.new(shape: SecurityGroupIds, location_name: "securityGroupIds"))
2200
+ ManagedLatticeResource.add_member(:tags, Shapes::ShapeRef.new(shape: TagsMap, location_name: "tags"))
2201
+ ManagedLatticeResource.add_member(:routing_domain, Shapes::ShapeRef.new(shape: RoutingDomain, location_name: "routingDomain"))
2202
+ ManagedLatticeResource.struct_class = Types::ManagedLatticeResource
2203
+
2204
+ ManagedResourceDetails.add_member(:domain, Shapes::ShapeRef.new(shape: DomainName, location_name: "domain"))
2205
+ ManagedResourceDetails.add_member(:resource_gateway_arn, Shapes::ShapeRef.new(shape: ResourceGatewayArn, location_name: "resourceGatewayArn"))
2206
+ ManagedResourceDetails.add_member(:resource_association_arn, Shapes::ShapeRef.new(shape: ResourceAssociationArn, location_name: "resourceAssociationArn"))
2207
+ ManagedResourceDetails.struct_class = Types::ManagedResourceDetails
2208
+
2165
2209
  MatchValueStringList.member = Shapes::ShapeRef.new(shape: MatchValueString)
2166
2210
 
2167
2211
  McpLambdaTargetConfiguration.add_member(:lambda_arn, Shapes::ShapeRef.new(shape: LambdaFunctionArn, required: true, location_name: "lambdaArn"))
@@ -2482,6 +2526,16 @@ module Aws::BedrockAgentCoreControl
2482
2526
 
2483
2527
  PolicyStatusReasons.member = Shapes::ShapeRef.new(shape: String)
2484
2528
 
2529
+ PrivateEndpoint.add_member(:self_managed_lattice_resource, Shapes::ShapeRef.new(shape: SelfManagedLatticeResource, location_name: "selfManagedLatticeResource"))
2530
+ PrivateEndpoint.add_member(:managed_lattice_resource, Shapes::ShapeRef.new(shape: ManagedLatticeResource, location_name: "managedLatticeResource"))
2531
+ PrivateEndpoint.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
2532
+ PrivateEndpoint.add_member_subclass(:self_managed_lattice_resource, Types::PrivateEndpoint::SelfManagedLatticeResource)
2533
+ PrivateEndpoint.add_member_subclass(:managed_lattice_resource, Types::PrivateEndpoint::ManagedLatticeResource)
2534
+ PrivateEndpoint.add_member_subclass(:unknown, Types::PrivateEndpoint::Unknown)
2535
+ PrivateEndpoint.struct_class = Types::PrivateEndpoint
2536
+
2537
+ PrivateEndpointManagedResources.member = Shapes::ShapeRef.new(shape: ManagedResourceDetails)
2538
+
2485
2539
  ProtocolConfiguration.add_member(:server_protocol, Shapes::ShapeRef.new(shape: ServerProtocol, required: true, location_name: "serverProtocol"))
2486
2540
  ProtocolConfiguration.struct_class = Types::ProtocolConfiguration
2487
2541
 
@@ -2590,6 +2644,8 @@ module Aws::BedrockAgentCoreControl
2590
2644
  SecretsManagerLocation.add_member(:secret_arn, Shapes::ShapeRef.new(shape: ToolSecretArn, required: true, location_name: "secretArn"))
2591
2645
  SecretsManagerLocation.struct_class = Types::SecretsManagerLocation
2592
2646
 
2647
+ SecurityGroupIds.member = Shapes::ShapeRef.new(shape: SecurityGroupIdentifier)
2648
+
2593
2649
  SecurityGroups.member = Shapes::ShapeRef.new(shape: SecurityGroupId)
2594
2650
 
2595
2651
  SelfManagedConfiguration.add_member(:trigger_conditions, Shapes::ShapeRef.new(shape: TriggerConditionsList, required: true, location_name: "triggerConditions"))
@@ -2602,6 +2658,12 @@ module Aws::BedrockAgentCoreControl
2602
2658
  SelfManagedConfigurationInput.add_member(:historical_context_window_size, Shapes::ShapeRef.new(shape: SelfManagedConfigurationInputHistoricalContextWindowSizeInteger, location_name: "historicalContextWindowSize"))
2603
2659
  SelfManagedConfigurationInput.struct_class = Types::SelfManagedConfigurationInput
2604
2660
 
2661
+ SelfManagedLatticeResource.add_member(:resource_configuration_identifier, Shapes::ShapeRef.new(shape: ResourceConfigurationIdentifier, location_name: "resourceConfigurationIdentifier"))
2662
+ SelfManagedLatticeResource.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
2663
+ SelfManagedLatticeResource.add_member_subclass(:resource_configuration_identifier, Types::SelfManagedLatticeResource::ResourceConfigurationIdentifier)
2664
+ SelfManagedLatticeResource.add_member_subclass(:unknown, Types::SelfManagedLatticeResource::Unknown)
2665
+ SelfManagedLatticeResource.struct_class = Types::SelfManagedLatticeResource
2666
+
2605
2667
  SemanticConsolidationOverride.add_member(:append_to_prompt, Shapes::ShapeRef.new(shape: Prompt, required: true, location_name: "appendToPrompt"))
2606
2668
  SemanticConsolidationOverride.add_member(:model_id, Shapes::ShapeRef.new(shape: String, required: true, location_name: "modelId"))
2607
2669
  SemanticConsolidationOverride.struct_class = Types::SemanticConsolidationOverride
@@ -2696,6 +2758,8 @@ module Aws::BedrockAgentCoreControl
2696
2758
 
2697
2759
  StreamDeliveryResourcesList.member = Shapes::ShapeRef.new(shape: StreamDeliveryResource)
2698
2760
 
2761
+ SubnetIds.member = Shapes::ShapeRef.new(shape: SubnetId)
2762
+
2699
2763
  Subnets.member = Shapes::ShapeRef.new(shape: SubnetId)
2700
2764
 
2701
2765
  SummaryConsolidationOverride.add_member(:append_to_prompt, Shapes::ShapeRef.new(shape: Prompt, required: true, location_name: "appendToPrompt"))
@@ -2926,6 +2990,7 @@ module Aws::BedrockAgentCoreControl
2926
2990
  UpdateGatewayTargetRequest.add_member(:target_configuration, Shapes::ShapeRef.new(shape: TargetConfiguration, required: true, location_name: "targetConfiguration"))
2927
2991
  UpdateGatewayTargetRequest.add_member(:credential_provider_configurations, Shapes::ShapeRef.new(shape: CredentialProviderConfigurations, location_name: "credentialProviderConfigurations"))
2928
2992
  UpdateGatewayTargetRequest.add_member(:metadata_configuration, Shapes::ShapeRef.new(shape: MetadataConfiguration, location_name: "metadataConfiguration"))
2993
+ UpdateGatewayTargetRequest.add_member(:private_endpoint, Shapes::ShapeRef.new(shape: PrivateEndpoint, location_name: "privateEndpoint"))
2929
2994
  UpdateGatewayTargetRequest.struct_class = Types::UpdateGatewayTargetRequest
2930
2995
 
2931
2996
  UpdateGatewayTargetResponse.add_member(:gateway_arn, Shapes::ShapeRef.new(shape: GatewayArn, required: true, location_name: "gatewayArn"))
@@ -2940,6 +3005,8 @@ module Aws::BedrockAgentCoreControl
2940
3005
  UpdateGatewayTargetResponse.add_member(:credential_provider_configurations, Shapes::ShapeRef.new(shape: CredentialProviderConfigurations, required: true, location_name: "credentialProviderConfigurations"))
2941
3006
  UpdateGatewayTargetResponse.add_member(:last_synchronized_at, Shapes::ShapeRef.new(shape: DateTimestamp, location_name: "lastSynchronizedAt"))
2942
3007
  UpdateGatewayTargetResponse.add_member(:metadata_configuration, Shapes::ShapeRef.new(shape: MetadataConfiguration, location_name: "metadataConfiguration"))
3008
+ UpdateGatewayTargetResponse.add_member(:private_endpoint, Shapes::ShapeRef.new(shape: PrivateEndpoint, location_name: "privateEndpoint"))
3009
+ UpdateGatewayTargetResponse.add_member(:private_endpoint_managed_resources, Shapes::ShapeRef.new(shape: PrivateEndpointManagedResources, location_name: "privateEndpointManagedResources"))
2943
3010
  UpdateGatewayTargetResponse.struct_class = Types::UpdateGatewayTargetResponse
2944
3011
 
2945
3012
  UpdateMemoryInput.add_member(:client_token, Shapes::ShapeRef.new(shape: UpdateMemoryInputClientTokenString, location_name: "clientToken", metadata: {"idempotencyToken" => true}))
@@ -1921,6 +1921,11 @@ module Aws::BedrockAgentCoreControl
1921
1921
  # propagation to and from the gateway target.
1922
1922
  # @return [Types::MetadataConfiguration]
1923
1923
  #
1924
+ # @!attribute [rw] private_endpoint
1925
+ # The private endpoint configuration for the gateway target. Use this
1926
+ # to connect the gateway to private resources in your VPC.
1927
+ # @return [Types::PrivateEndpoint]
1928
+ #
1924
1929
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CreateGatewayTargetRequest AWS API Documentation
1925
1930
  #
1926
1931
  class CreateGatewayTargetRequest < Struct.new(
@@ -1930,7 +1935,8 @@ module Aws::BedrockAgentCoreControl
1930
1935
  :client_token,
1931
1936
  :target_configuration,
1932
1937
  :credential_provider_configurations,
1933
- :metadata_configuration)
1938
+ :metadata_configuration,
1939
+ :private_endpoint)
1934
1940
  SENSITIVE = [:name, :description]
1935
1941
  include Aws::Structure
1936
1942
  end
@@ -1984,6 +1990,15 @@ module Aws::BedrockAgentCoreControl
1984
1990
  # target.
1985
1991
  # @return [Types::MetadataConfiguration]
1986
1992
  #
1993
+ # @!attribute [rw] private_endpoint
1994
+ # The private endpoint configuration for the gateway target.
1995
+ # @return [Types::PrivateEndpoint]
1996
+ #
1997
+ # @!attribute [rw] private_endpoint_managed_resources
1998
+ # The managed resources created by the gateway for private endpoint
1999
+ # connectivity.
2000
+ # @return [Array<Types::ManagedResourceDetails>]
2001
+ #
1987
2002
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CreateGatewayTargetResponse AWS API Documentation
1988
2003
  #
1989
2004
  class CreateGatewayTargetResponse < Struct.new(
@@ -1998,7 +2013,9 @@ module Aws::BedrockAgentCoreControl
1998
2013
  :target_configuration,
1999
2014
  :credential_provider_configurations,
2000
2015
  :last_synchronized_at,
2001
- :metadata_configuration)
2016
+ :metadata_configuration,
2017
+ :private_endpoint,
2018
+ :private_endpoint_managed_resources)
2002
2019
  SENSITIVE = [:name, :description]
2003
2020
  include Aws::Structure
2004
2021
  end
@@ -2594,11 +2611,17 @@ module Aws::BedrockAgentCoreControl
2594
2611
  # authenticate with the target endpoint.
2595
2612
  # @return [Types::ApiKeyCredentialProvider]
2596
2613
  #
2614
+ # @!attribute [rw] iam_credential_provider
2615
+ # The IAM credential provider. This provider uses IAM authentication
2616
+ # with SigV4 signing to access the target endpoint.
2617
+ # @return [Types::IamCredentialProvider]
2618
+ #
2597
2619
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CredentialProvider AWS API Documentation
2598
2620
  #
2599
2621
  class CredentialProvider < Struct.new(
2600
2622
  :oauth_credential_provider,
2601
2623
  :api_key_credential_provider,
2624
+ :iam_credential_provider,
2602
2625
  :unknown)
2603
2626
  SENSITIVE = []
2604
2627
  include Aws::Structure
@@ -2606,6 +2629,7 @@ module Aws::BedrockAgentCoreControl
2606
2629
 
2607
2630
  class OauthCredentialProvider < CredentialProvider; end
2608
2631
  class ApiKeyCredentialProvider < CredentialProvider; end
2632
+ class IamCredentialProvider < CredentialProvider; end
2609
2633
  class Unknown < CredentialProvider; end
2610
2634
  end
2611
2635
 
@@ -4474,6 +4498,17 @@ module Aws::BedrockAgentCoreControl
4474
4498
  # propagation to and from this gateway target.
4475
4499
  # @return [Types::MetadataConfiguration]
4476
4500
  #
4501
+ # @!attribute [rw] private_endpoint
4502
+ # The private endpoint configuration for a gateway target. Defines how
4503
+ # the gateway connects to private resources in your VPC.
4504
+ # @return [Types::PrivateEndpoint]
4505
+ #
4506
+ # @!attribute [rw] private_endpoint_managed_resources
4507
+ # A list of managed resources created by the gateway for private
4508
+ # endpoint connectivity. These resources are created in your account
4509
+ # when you use a managed VPC Lattice resource configuration.
4510
+ # @return [Array<Types::ManagedResourceDetails>]
4511
+ #
4477
4512
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GatewayTarget AWS API Documentation
4478
4513
  #
4479
4514
  class GatewayTarget < Struct.new(
@@ -4488,7 +4523,9 @@ module Aws::BedrockAgentCoreControl
4488
4523
  :target_configuration,
4489
4524
  :credential_provider_configurations,
4490
4525
  :last_synchronized_at,
4491
- :metadata_configuration)
4526
+ :metadata_configuration,
4527
+ :private_endpoint,
4528
+ :private_endpoint_managed_resources)
4492
4529
  SENSITIVE = [:name, :description]
4493
4530
  include Aws::Structure
4494
4531
  end
@@ -5252,6 +5289,15 @@ module Aws::BedrockAgentCoreControl
5252
5289
  # propagation for the retrieved gateway target.
5253
5290
  # @return [Types::MetadataConfiguration]
5254
5291
  #
5292
+ # @!attribute [rw] private_endpoint
5293
+ # The private endpoint configuration for the gateway target.
5294
+ # @return [Types::PrivateEndpoint]
5295
+ #
5296
+ # @!attribute [rw] private_endpoint_managed_resources
5297
+ # The managed resources created by the gateway for private endpoint
5298
+ # connectivity.
5299
+ # @return [Array<Types::ManagedResourceDetails>]
5300
+ #
5255
5301
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/GetGatewayTargetResponse AWS API Documentation
5256
5302
  #
5257
5303
  class GetGatewayTargetResponse < Struct.new(
@@ -5266,7 +5312,9 @@ module Aws::BedrockAgentCoreControl
5266
5312
  :target_configuration,
5267
5313
  :credential_provider_configurations,
5268
5314
  :last_synchronized_at,
5269
- :metadata_configuration)
5315
+ :metadata_configuration,
5316
+ :private_endpoint,
5317
+ :private_endpoint_managed_resources)
5270
5318
  SENSITIVE = [:name, :description]
5271
5319
  include Aws::Structure
5272
5320
  end
@@ -5907,6 +5955,30 @@ module Aws::BedrockAgentCoreControl
5907
5955
  include Aws::Structure
5908
5956
  end
5909
5957
 
5958
+ # An IAM credential provider for gateway authentication. This structure
5959
+ # contains the configuration for authenticating with the target endpoint
5960
+ # using IAM credentials and SigV4 signing.
5961
+ #
5962
+ # @!attribute [rw] service
5963
+ # The target Amazon Web Services service name used for SigV4 signing.
5964
+ # This value identifies the service that the gateway authenticates
5965
+ # with when making requests to the target endpoint.
5966
+ # @return [String]
5967
+ #
5968
+ # @!attribute [rw] region
5969
+ # The Amazon Web Services Region used for SigV4 signing. If not
5970
+ # specified, defaults to the gateway's Region.
5971
+ # @return [String]
5972
+ #
5973
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/IamCredentialProvider AWS API Documentation
5974
+ #
5975
+ class IamCredentialProvider < Struct.new(
5976
+ :service,
5977
+ :region)
5978
+ SENSITIVE = []
5979
+ include Aws::Structure
5980
+ end
5981
+
5910
5982
  # Configuration settings for connecting to a supported OAuth2 provider.
5911
5983
  # This includes client credentials and OAuth2 discovery information for
5912
5984
  # providers that have built-in support.
@@ -7092,6 +7164,77 @@ module Aws::BedrockAgentCoreControl
7092
7164
  include Aws::Structure
7093
7165
  end
7094
7166
 
7167
+ # Configuration for a managed VPC Lattice resource. The gateway creates
7168
+ # and manages the VPC Lattice resource gateway and resource
7169
+ # configuration on your behalf using a service-linked role.
7170
+ #
7171
+ # @!attribute [rw] vpc_identifier
7172
+ # The ID of the VPC that contains your private resource.
7173
+ # @return [String]
7174
+ #
7175
+ # @!attribute [rw] subnet_ids
7176
+ # The subnet IDs within the VPC where the VPC Lattice resource gateway
7177
+ # is placed.
7178
+ # @return [Array<String>]
7179
+ #
7180
+ # @!attribute [rw] endpoint_ip_address_type
7181
+ # The IP address type for the resource configuration endpoint.
7182
+ # @return [String]
7183
+ #
7184
+ # @!attribute [rw] security_group_ids
7185
+ # The security group IDs to associate with the VPC Lattice resource
7186
+ # gateway. If not specified, the default security group for the VPC is
7187
+ # used.
7188
+ # @return [Array<String>]
7189
+ #
7190
+ # @!attribute [rw] tags
7191
+ # Tags to apply to the managed VPC Lattice resource gateway.
7192
+ # @return [Hash<String,String>]
7193
+ #
7194
+ # @!attribute [rw] routing_domain
7195
+ # An intermediate publicly resolvable domain used as the VPC Lattice
7196
+ # resource configuration endpoint. Required when your private endpoint
7197
+ # uses a domain that is not publicly resolvable.
7198
+ # @return [String]
7199
+ #
7200
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ManagedLatticeResource AWS API Documentation
7201
+ #
7202
+ class ManagedLatticeResource < Struct.new(
7203
+ :vpc_identifier,
7204
+ :subnet_ids,
7205
+ :endpoint_ip_address_type,
7206
+ :security_group_ids,
7207
+ :tags,
7208
+ :routing_domain)
7209
+ SENSITIVE = []
7210
+ include Aws::Structure
7211
+ end
7212
+
7213
+ # Details of a resource created and managed by the gateway for private
7214
+ # endpoint connectivity.
7215
+ #
7216
+ # @!attribute [rw] domain
7217
+ # The domain associated with this managed resource.
7218
+ # @return [String]
7219
+ #
7220
+ # @!attribute [rw] resource_gateway_arn
7221
+ # The ARN of the VPC Lattice resource gateway created in your account.
7222
+ # @return [String]
7223
+ #
7224
+ # @!attribute [rw] resource_association_arn
7225
+ # The ARN of the service network resource association.
7226
+ # @return [String]
7227
+ #
7228
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ManagedResourceDetails AWS API Documentation
7229
+ #
7230
+ class ManagedResourceDetails < Struct.new(
7231
+ :domain,
7232
+ :resource_gateway_arn,
7233
+ :resource_association_arn)
7234
+ SENSITIVE = []
7235
+ include Aws::Structure
7236
+ end
7237
+
7095
7238
  # The Lambda configuration for a Model Context Protocol target. This
7096
7239
  # structure defines how the gateway uses a Lambda function to
7097
7240
  # communicate with the target.
@@ -8469,6 +8612,39 @@ module Aws::BedrockAgentCoreControl
8469
8612
  include Aws::Structure
8470
8613
  end
8471
8614
 
8615
+ # The private endpoint configuration for a gateway target. Defines how
8616
+ # the gateway connects to private resources in your VPC.
8617
+ #
8618
+ # @note PrivateEndpoint is a union - when making an API calls you must set exactly one of the members.
8619
+ #
8620
+ # @note PrivateEndpoint is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of PrivateEndpoint corresponding to the set member.
8621
+ #
8622
+ # @!attribute [rw] self_managed_lattice_resource
8623
+ # Configuration for connecting to a private resource using a
8624
+ # self-managed VPC Lattice resource configuration.
8625
+ # @return [Types::SelfManagedLatticeResource]
8626
+ #
8627
+ # @!attribute [rw] managed_lattice_resource
8628
+ # Configuration for connecting to a private resource using a managed
8629
+ # VPC Lattice resource. The gateway creates and manages the VPC
8630
+ # Lattice resources on your behalf.
8631
+ # @return [Types::ManagedLatticeResource]
8632
+ #
8633
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/PrivateEndpoint AWS API Documentation
8634
+ #
8635
+ class PrivateEndpoint < Struct.new(
8636
+ :self_managed_lattice_resource,
8637
+ :managed_lattice_resource,
8638
+ :unknown)
8639
+ SENSITIVE = []
8640
+ include Aws::Structure
8641
+ include Aws::Structure::Union
8642
+
8643
+ class SelfManagedLatticeResource < PrivateEndpoint; end
8644
+ class ManagedLatticeResource < PrivateEndpoint; end
8645
+ class Unknown < PrivateEndpoint; end
8646
+ end
8647
+
8472
8648
  # The protocol configuration for an agent runtime. This structure
8473
8649
  # defines how the agent runtime communicates with clients.
8474
8650
  #
@@ -8965,6 +9141,31 @@ module Aws::BedrockAgentCoreControl
8965
9141
  include Aws::Structure
8966
9142
  end
8967
9143
 
9144
+ # Configuration for a self-managed VPC Lattice resource. You create and
9145
+ # manage the VPC Lattice resource gateway and resource configuration,
9146
+ # then provide the resource configuration identifier.
9147
+ #
9148
+ # @note SelfManagedLatticeResource is a union - when making an API calls you must set exactly one of the members.
9149
+ #
9150
+ # @note SelfManagedLatticeResource is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of SelfManagedLatticeResource corresponding to the set member.
9151
+ #
9152
+ # @!attribute [rw] resource_configuration_identifier
9153
+ # The ARN or ID of the VPC Lattice resource configuration.
9154
+ # @return [String]
9155
+ #
9156
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/SelfManagedLatticeResource AWS API Documentation
9157
+ #
9158
+ class SelfManagedLatticeResource < Struct.new(
9159
+ :resource_configuration_identifier,
9160
+ :unknown)
9161
+ SENSITIVE = []
9162
+ include Aws::Structure
9163
+ include Aws::Structure::Union
9164
+
9165
+ class ResourceConfigurationIdentifier < SelfManagedLatticeResource; end
9166
+ class Unknown < SelfManagedLatticeResource; end
9167
+ end
9168
+
8968
9169
  # Contains semantic consolidation override configuration.
8969
9170
  #
8970
9171
  # @!attribute [rw] append_to_prompt
@@ -10407,6 +10608,11 @@ module Aws::BedrockAgentCoreControl
10407
10608
  # gateway target.
10408
10609
  # @return [Types::MetadataConfiguration]
10409
10610
  #
10611
+ # @!attribute [rw] private_endpoint
10612
+ # The private endpoint configuration for the gateway target. Use this
10613
+ # to connect the gateway to private resources in your VPC.
10614
+ # @return [Types::PrivateEndpoint]
10615
+ #
10410
10616
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdateGatewayTargetRequest AWS API Documentation
10411
10617
  #
10412
10618
  class UpdateGatewayTargetRequest < Struct.new(
@@ -10416,7 +10622,8 @@ module Aws::BedrockAgentCoreControl
10416
10622
  :description,
10417
10623
  :target_configuration,
10418
10624
  :credential_provider_configurations,
10419
- :metadata_configuration)
10625
+ :metadata_configuration,
10626
+ :private_endpoint)
10420
10627
  SENSITIVE = [:name, :description]
10421
10628
  include Aws::Structure
10422
10629
  end
@@ -10471,6 +10678,15 @@ module Aws::BedrockAgentCoreControl
10471
10678
  # The metadata configuration that was applied to the gateway target.
10472
10679
  # @return [Types::MetadataConfiguration]
10473
10680
  #
10681
+ # @!attribute [rw] private_endpoint
10682
+ # The private endpoint configuration for the gateway target.
10683
+ # @return [Types::PrivateEndpoint]
10684
+ #
10685
+ # @!attribute [rw] private_endpoint_managed_resources
10686
+ # The managed resources created by the gateway for private endpoint
10687
+ # connectivity.
10688
+ # @return [Array<Types::ManagedResourceDetails>]
10689
+ #
10474
10690
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/UpdateGatewayTargetResponse AWS API Documentation
10475
10691
  #
10476
10692
  class UpdateGatewayTargetResponse < Struct.new(
@@ -10485,7 +10701,9 @@ module Aws::BedrockAgentCoreControl
10485
10701
  :target_configuration,
10486
10702
  :credential_provider_configurations,
10487
10703
  :last_synchronized_at,
10488
- :metadata_configuration)
10704
+ :metadata_configuration,
10705
+ :private_endpoint,
10706
+ :private_endpoint_managed_resources)
10489
10707
  SENSITIVE = [:name, :description]
10490
10708
  include Aws::Structure
10491
10709
  end
@@ -55,7 +55,7 @@ module Aws::BedrockAgentCoreControl
55
55
  autoload :EndpointProvider, 'aws-sdk-bedrockagentcorecontrol/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-bedrockagentcorecontrol/endpoints'
57
57
 
58
- GEM_VERSION = '1.33.0'
58
+ GEM_VERSION = '1.34.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -450,6 +450,8 @@ module Aws
450
450
  def credential_provider_configurations: () -> ::Array[Types::CredentialProviderConfiguration]
451
451
  def last_synchronized_at: () -> ::Time
452
452
  def metadata_configuration: () -> Types::MetadataConfiguration
453
+ def private_endpoint: () -> Types::PrivateEndpoint
454
+ def private_endpoint_managed_resources: () -> ::Array[Types::ManagedResourceDetails]
453
455
  end
454
456
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#create_gateway_target-instance_method
455
457
  def create_gateway_target: (
@@ -543,6 +545,10 @@ module Aws
543
545
  credential_parameter_name: ::String?,
544
546
  credential_prefix: ::String?,
545
547
  credential_location: ("HEADER" | "QUERY_PARAMETER")?
548
+ }?,
549
+ iam_credential_provider: {
550
+ service: ::String,
551
+ region: ::String?
546
552
  }?
547
553
  }?
548
554
  },
@@ -551,6 +557,19 @@ module Aws
551
557
  allowed_request_headers: Array[::String]?,
552
558
  allowed_query_parameters: Array[::String]?,
553
559
  allowed_response_headers: Array[::String]?
560
+ },
561
+ ?private_endpoint: {
562
+ self_managed_lattice_resource: {
563
+ resource_configuration_identifier: ::String?
564
+ }?,
565
+ managed_lattice_resource: {
566
+ vpc_identifier: ::String,
567
+ subnet_ids: Array[::String],
568
+ endpoint_ip_address_type: ("IPV4" | "IPV6"),
569
+ security_group_ids: Array[::String]?,
570
+ tags: Hash[::String, ::String]?,
571
+ routing_domain: ::String?
572
+ }?
554
573
  }
555
574
  ) -> _CreateGatewayTargetResponseSuccess
556
575
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateGatewayTargetResponseSuccess
@@ -1266,6 +1285,8 @@ module Aws
1266
1285
  def credential_provider_configurations: () -> ::Array[Types::CredentialProviderConfiguration]
1267
1286
  def last_synchronized_at: () -> ::Time
1268
1287
  def metadata_configuration: () -> Types::MetadataConfiguration
1288
+ def private_endpoint: () -> Types::PrivateEndpoint
1289
+ def private_endpoint_managed_resources: () -> ::Array[Types::ManagedResourceDetails]
1269
1290
  end
1270
1291
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#get_gateway_target-instance_method
1271
1292
  def get_gateway_target: (
@@ -2009,6 +2030,8 @@ module Aws
2009
2030
  def credential_provider_configurations: () -> ::Array[Types::CredentialProviderConfiguration]
2010
2031
  def last_synchronized_at: () -> ::Time
2011
2032
  def metadata_configuration: () -> Types::MetadataConfiguration
2033
+ def private_endpoint: () -> Types::PrivateEndpoint
2034
+ def private_endpoint_managed_resources: () -> ::Array[Types::ManagedResourceDetails]
2012
2035
  end
2013
2036
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#update_gateway_target-instance_method
2014
2037
  def update_gateway_target: (
@@ -2102,6 +2125,10 @@ module Aws
2102
2125
  credential_parameter_name: ::String?,
2103
2126
  credential_prefix: ::String?,
2104
2127
  credential_location: ("HEADER" | "QUERY_PARAMETER")?
2128
+ }?,
2129
+ iam_credential_provider: {
2130
+ service: ::String,
2131
+ region: ::String?
2105
2132
  }?
2106
2133
  }?
2107
2134
  },
@@ -2110,6 +2137,19 @@ module Aws
2110
2137
  allowed_request_headers: Array[::String]?,
2111
2138
  allowed_query_parameters: Array[::String]?,
2112
2139
  allowed_response_headers: Array[::String]?
2140
+ },
2141
+ ?private_endpoint: {
2142
+ self_managed_lattice_resource: {
2143
+ resource_configuration_identifier: ::String?
2144
+ }?,
2145
+ managed_lattice_resource: {
2146
+ vpc_identifier: ::String,
2147
+ subnet_ids: Array[::String],
2148
+ endpoint_ip_address_type: ("IPV4" | "IPV6"),
2149
+ security_group_ids: Array[::String]?,
2150
+ tags: Hash[::String, ::String]?,
2151
+ routing_domain: ::String?
2152
+ }?
2113
2153
  }
2114
2154
  ) -> _UpdateGatewayTargetResponseSuccess
2115
2155
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateGatewayTargetResponseSuccess
data/sig/types.rbs CHANGED
@@ -518,6 +518,7 @@ module Aws::BedrockAgentCoreControl
518
518
  attr_accessor target_configuration: Types::TargetConfiguration
519
519
  attr_accessor credential_provider_configurations: ::Array[Types::CredentialProviderConfiguration]
520
520
  attr_accessor metadata_configuration: Types::MetadataConfiguration
521
+ attr_accessor private_endpoint: Types::PrivateEndpoint
521
522
  SENSITIVE: [:name, :description]
522
523
  end
523
524
 
@@ -534,6 +535,8 @@ module Aws::BedrockAgentCoreControl
534
535
  attr_accessor credential_provider_configurations: ::Array[Types::CredentialProviderConfiguration]
535
536
  attr_accessor last_synchronized_at: ::Time
536
537
  attr_accessor metadata_configuration: Types::MetadataConfiguration
538
+ attr_accessor private_endpoint: Types::PrivateEndpoint
539
+ attr_accessor private_endpoint_managed_resources: ::Array[Types::ManagedResourceDetails]
537
540
  SENSITIVE: [:name, :description]
538
541
  end
539
542
 
@@ -659,6 +662,7 @@ module Aws::BedrockAgentCoreControl
659
662
  class CredentialProvider
660
663
  attr_accessor oauth_credential_provider: Types::OAuthCredentialProvider
661
664
  attr_accessor api_key_credential_provider: Types::ApiKeyCredentialProvider
665
+ attr_accessor iam_credential_provider: Types::IamCredentialProvider
662
666
  attr_accessor unknown: untyped
663
667
  SENSITIVE: []
664
668
 
@@ -666,6 +670,8 @@ module Aws::BedrockAgentCoreControl
666
670
  end
667
671
  class ApiKeyCredentialProvider < CredentialProvider
668
672
  end
673
+ class IamCredentialProvider < CredentialProvider
674
+ end
669
675
  class Unknown < CredentialProvider
670
676
  end
671
677
  end
@@ -1277,6 +1283,8 @@ module Aws::BedrockAgentCoreControl
1277
1283
  attr_accessor credential_provider_configurations: ::Array[Types::CredentialProviderConfiguration]
1278
1284
  attr_accessor last_synchronized_at: ::Time
1279
1285
  attr_accessor metadata_configuration: Types::MetadataConfiguration
1286
+ attr_accessor private_endpoint: Types::PrivateEndpoint
1287
+ attr_accessor private_endpoint_managed_resources: ::Array[Types::ManagedResourceDetails]
1280
1288
  SENSITIVE: [:name, :description]
1281
1289
  end
1282
1290
 
@@ -1473,6 +1481,8 @@ module Aws::BedrockAgentCoreControl
1473
1481
  attr_accessor credential_provider_configurations: ::Array[Types::CredentialProviderConfiguration]
1474
1482
  attr_accessor last_synchronized_at: ::Time
1475
1483
  attr_accessor metadata_configuration: Types::MetadataConfiguration
1484
+ attr_accessor private_endpoint: Types::PrivateEndpoint
1485
+ attr_accessor private_endpoint_managed_resources: ::Array[Types::ManagedResourceDetails]
1476
1486
  SENSITIVE: [:name, :description]
1477
1487
  end
1478
1488
 
@@ -1645,6 +1655,12 @@ module Aws::BedrockAgentCoreControl
1645
1655
  SENSITIVE: []
1646
1656
  end
1647
1657
 
1658
+ class IamCredentialProvider
1659
+ attr_accessor service: ::String
1660
+ attr_accessor region: ::String
1661
+ SENSITIVE: []
1662
+ end
1663
+
1648
1664
  class IncludedOauth2ProviderConfigInput
1649
1665
  attr_accessor client_id: ::String
1650
1666
  attr_accessor client_secret: ::String
@@ -1993,6 +2009,23 @@ module Aws::BedrockAgentCoreControl
1993
2009
  SENSITIVE: []
1994
2010
  end
1995
2011
 
2012
+ class ManagedLatticeResource
2013
+ attr_accessor vpc_identifier: ::String
2014
+ attr_accessor subnet_ids: ::Array[::String]
2015
+ attr_accessor endpoint_ip_address_type: ("IPV4" | "IPV6")
2016
+ attr_accessor security_group_ids: ::Array[::String]
2017
+ attr_accessor tags: ::Hash[::String, ::String]
2018
+ attr_accessor routing_domain: ::String
2019
+ SENSITIVE: []
2020
+ end
2021
+
2022
+ class ManagedResourceDetails
2023
+ attr_accessor domain: ::String
2024
+ attr_accessor resource_gateway_arn: ::String
2025
+ attr_accessor resource_association_arn: ::String
2026
+ SENSITIVE: []
2027
+ end
2028
+
1996
2029
  class McpLambdaTargetConfiguration
1997
2030
  attr_accessor lambda_arn: ::String
1998
2031
  attr_accessor tool_schema: Types::ToolSchema
@@ -2404,6 +2437,20 @@ module Aws::BedrockAgentCoreControl
2404
2437
  SENSITIVE: []
2405
2438
  end
2406
2439
 
2440
+ class PrivateEndpoint
2441
+ attr_accessor self_managed_lattice_resource: Types::SelfManagedLatticeResource
2442
+ attr_accessor managed_lattice_resource: Types::ManagedLatticeResource
2443
+ attr_accessor unknown: untyped
2444
+ SENSITIVE: []
2445
+
2446
+ class SelfManagedLatticeResource < PrivateEndpoint
2447
+ end
2448
+ class ManagedLatticeResource < PrivateEndpoint
2449
+ end
2450
+ class Unknown < PrivateEndpoint
2451
+ end
2452
+ end
2453
+
2407
2454
  class ProtocolConfiguration
2408
2455
  attr_accessor server_protocol: ("MCP" | "HTTP" | "A2A" | "AGUI")
2409
2456
  SENSITIVE: []
@@ -2572,6 +2619,17 @@ module Aws::BedrockAgentCoreControl
2572
2619
  SENSITIVE: []
2573
2620
  end
2574
2621
 
2622
+ class SelfManagedLatticeResource
2623
+ attr_accessor resource_configuration_identifier: ::String
2624
+ attr_accessor unknown: untyped
2625
+ SENSITIVE: []
2626
+
2627
+ class ResourceConfigurationIdentifier < SelfManagedLatticeResource
2628
+ end
2629
+ class Unknown < SelfManagedLatticeResource
2630
+ end
2631
+ end
2632
+
2575
2633
  class SemanticConsolidationOverride
2576
2634
  attr_accessor append_to_prompt: ::String
2577
2635
  attr_accessor model_id: ::String
@@ -2996,6 +3054,7 @@ module Aws::BedrockAgentCoreControl
2996
3054
  attr_accessor target_configuration: Types::TargetConfiguration
2997
3055
  attr_accessor credential_provider_configurations: ::Array[Types::CredentialProviderConfiguration]
2998
3056
  attr_accessor metadata_configuration: Types::MetadataConfiguration
3057
+ attr_accessor private_endpoint: Types::PrivateEndpoint
2999
3058
  SENSITIVE: [:name, :description]
3000
3059
  end
3001
3060
 
@@ -3012,6 +3071,8 @@ module Aws::BedrockAgentCoreControl
3012
3071
  attr_accessor credential_provider_configurations: ::Array[Types::CredentialProviderConfiguration]
3013
3072
  attr_accessor last_synchronized_at: ::Time
3014
3073
  attr_accessor metadata_configuration: Types::MetadataConfiguration
3074
+ attr_accessor private_endpoint: Types::PrivateEndpoint
3075
+ attr_accessor private_endpoint_managed_resources: ::Array[Types::ManagedResourceDetails]
3015
3076
  SENSITIVE: [:name, :description]
3016
3077
  end
3017
3078
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-bedrockagentcorecontrol
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.33.0
4
+ version: 1.34.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services