aws-sdk-connect 1.280.0 → 1.281.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: d669d5558e140758c7e30a57adb114332f87a6cd17a4d4b7b9ca2d20ddc798bf
4
- data.tar.gz: fb6250c92571b1b593f426b6790537eb757af7769cbc9a99f5aa11ac151c02ad
3
+ metadata.gz: 0122f61d6e8f9068ee4eb0fa894b8479c7fe772bf022e3bcd0e972d21a20eefd
4
+ data.tar.gz: cd830486222c7767e2a28255dddfeb3ad1a50d1346cdb8c26c5e04d2d6078169
5
5
  SHA512:
6
- metadata.gz: 7e7edadf693508236fc29202ea0cb3373a56ec7a45ca0579b1547be3bf8fc8ca75b7e8167d26987e63cca5f7c690d1b9a0756fb7333a093e62ee520918790d45
7
- data.tar.gz: dc8b5310b44af965f7bb9d6a10c6c4228a626773820ce2693547d17d13ff9c43ddc8fce0abb52398db4c480c96a9a6173c89ff2bafc1af313ddd6b884aecf68b
6
+ metadata.gz: d078acd1f75ed84032e508ecacda3dab8ac12036fb141132166f0d01fd065cdc88a0476217ada71a8437750c8285c2d67799efe35e6e60aced7ce3e44b441090
7
+ data.tar.gz: dcbb09922af65bc45b7f845bb3d8b07d3d22ceb7357065de8a71d1d9814a90e1c0c69bde44e78beadf5ed8b19d434a7b902d392737ec39c099d6b9115d540579
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.281.0 (2026-09-18)
5
+ ------------------
6
+
7
+ * Feature - This release adds the ListSecurityProfileAIAgents API and updates the CreateSecurityProfile and UpdateSecurityProfile APIs to support the AllowedAIAgents field on security profiles, allowing customers to manage the 3P AI agents associated with a security profile for Agent-to-Agent interactions.
8
+
4
9
  1.280.0 (2026-09-17)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.280.0
1
+ 1.281.0
@@ -5370,6 +5370,9 @@ module Aws::Connect
5370
5370
  # @option params [Array<Types::FlowModule>] :allowed_flow_modules
5371
5371
  # A list of Flow Modules an AI Agent can invoke as a tool.
5372
5372
  #
5373
+ # @option params [Array<Types::AIAgent>] :allowed_ai_agents
5374
+ # A list of AI agents that the security profile will give access to.
5375
+ #
5373
5376
  # @option params [Types::GranularAccessControlConfiguration] :granular_access_control_configuration
5374
5377
  # The granular access control configuration for the security profile,
5375
5378
  # including data table permissions.
@@ -5408,6 +5411,12 @@ module Aws::Connect
5408
5411
  # flow_module_id: "FlowModuleId",
5409
5412
  # },
5410
5413
  # ],
5414
+ # allowed_ai_agents: [
5415
+ # {
5416
+ # arn: "ARN",
5417
+ # type: "THIRD_PARTY", # accepts THIRD_PARTY
5418
+ # },
5419
+ # ],
5411
5420
  # granular_access_control_configuration: {
5412
5421
  # data_table_access_control_configuration: {
5413
5422
  # primary_attribute_access_control_configuration: {
@@ -18899,6 +18908,64 @@ module Aws::Connect
18899
18908
  req.send_request(options)
18900
18909
  end
18901
18910
 
18911
+ # Returns a list of the allowed AI agents in a specific security
18912
+ # profile.
18913
+ #
18914
+ # @option params [required, String] :security_profile_id
18915
+ # The identifier for the security profle.
18916
+ #
18917
+ # @option params [required, String] :instance_id
18918
+ # The identifier of the Connect Customer instance. You can [find the
18919
+ # instance ID][1] in the Amazon Resource Name (ARN) of the instance.
18920
+ #
18921
+ #
18922
+ #
18923
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
18924
+ #
18925
+ # @option params [String] :next_token
18926
+ # The token for the next set of results. Use the value returned in the
18927
+ # previous response in the next request to retrieve the next set of
18928
+ # results.
18929
+ #
18930
+ # @option params [Integer] :max_results
18931
+ # The maximum number of results to return per page.
18932
+ #
18933
+ # @return [Types::ListSecurityProfileAIAgentsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
18934
+ #
18935
+ # * {Types::ListSecurityProfileAIAgentsResponse#allowed_ai_agents #allowed_ai_agents} => Array&lt;Types::AIAgent&gt;
18936
+ # * {Types::ListSecurityProfileAIAgentsResponse#next_token #next_token} => String
18937
+ # * {Types::ListSecurityProfileAIAgentsResponse#last_modified_time #last_modified_time} => Time
18938
+ # * {Types::ListSecurityProfileAIAgentsResponse#last_modified_region #last_modified_region} => String
18939
+ #
18940
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
18941
+ #
18942
+ # @example Request syntax with placeholder values
18943
+ #
18944
+ # resp = client.list_security_profile_ai_agents({
18945
+ # security_profile_id: "SecurityProfileId", # required
18946
+ # instance_id: "InstanceId", # required
18947
+ # next_token: "NextToken",
18948
+ # max_results: 1,
18949
+ # })
18950
+ #
18951
+ # @example Response structure
18952
+ #
18953
+ # resp.allowed_ai_agents #=> Array
18954
+ # resp.allowed_ai_agents[0].arn #=> String
18955
+ # resp.allowed_ai_agents[0].type #=> String, one of "THIRD_PARTY"
18956
+ # resp.next_token #=> String
18957
+ # resp.last_modified_time #=> Time
18958
+ # resp.last_modified_region #=> String
18959
+ #
18960
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListSecurityProfileAIAgents AWS API Documentation
18961
+ #
18962
+ # @overload list_security_profile_ai_agents(params = {})
18963
+ # @param [Hash] params ({})
18964
+ def list_security_profile_ai_agents(params = {}, options = {})
18965
+ req = build_request(:list_security_profile_ai_agents, params)
18966
+ req.send_request(options)
18967
+ end
18968
+
18902
18969
  # Returns a list of third-party applications or MCP Servers in a
18903
18970
  # specific security profile.
18904
18971
  #
@@ -30291,6 +30358,9 @@ module Aws::Connect
30291
30358
  # @option params [Array<Types::FlowModule>] :allowed_flow_modules
30292
30359
  # A list of Flow Modules an AI Agent can invoke as a tool
30293
30360
  #
30361
+ # @option params [Array<Types::AIAgent>] :allowed_ai_agents
30362
+ # A list of AI agents that the security profile will give access to.
30363
+ #
30294
30364
  # @option params [Types::GranularAccessControlConfiguration] :granular_access_control_configuration
30295
30365
  # The granular access control configuration for the security profile,
30296
30366
  # including data table permissions.
@@ -30323,6 +30393,12 @@ module Aws::Connect
30323
30393
  # flow_module_id: "FlowModuleId",
30324
30394
  # },
30325
30395
  # ],
30396
+ # allowed_ai_agents: [
30397
+ # {
30398
+ # arn: "ARN",
30399
+ # type: "THIRD_PARTY", # accepts THIRD_PARTY
30400
+ # },
30401
+ # ],
30326
30402
  # granular_access_control_configuration: {
30327
30403
  # data_table_access_control_configuration: {
30328
30404
  # primary_attribute_access_control_configuration: {
@@ -31542,7 +31618,7 @@ module Aws::Connect
31542
31618
  tracer: tracer
31543
31619
  )
31544
31620
  context[:gem_name] = 'aws-sdk-connect'
31545
- context[:gem_version] = '1.280.0'
31621
+ context[:gem_version] = '1.281.0'
31546
31622
  Seahorse::Client::Request.new(handlers, context)
31547
31623
  end
31548
31624
 
@@ -18,6 +18,8 @@ module Aws::Connect
18
18
  ACGRInstanceIdOrArn = Shapes::StringShape.new(name: 'ACGRInstanceIdOrArn')
19
19
  ACGRTrafficDistributionGroupArn = Shapes::StringShape.new(name: 'ACGRTrafficDistributionGroupArn')
20
20
  ACGRTrafficDistributionGroupId = Shapes::StringShape.new(name: 'ACGRTrafficDistributionGroupId')
21
+ AIAgent = Shapes::StructureShape.new(name: 'AIAgent')
22
+ AIAgentType = Shapes::StringShape.new(name: 'AIAgentType')
21
23
  ARN = Shapes::StringShape.new(name: 'ARN')
22
24
  AWSAccountId = Shapes::StringShape.new(name: 'AWSAccountId')
23
25
  AccessDeniedException = Shapes::StructureShape.new(name: 'AccessDeniedException')
@@ -85,6 +87,7 @@ module Aws::Connect
85
87
  AliasArn = Shapes::StringShape.new(name: 'AliasArn')
86
88
  AliasConfiguration = Shapes::StructureShape.new(name: 'AliasConfiguration')
87
89
  AliasConfigurationList = Shapes::ListShape.new(name: 'AliasConfigurationList')
90
+ AllowedAIAgents = Shapes::ListShape.new(name: 'AllowedAIAgents')
88
91
  AllowedAccessControlTags = Shapes::MapShape.new(name: 'AllowedAccessControlTags')
89
92
  AllowedCapabilities = Shapes::StructureShape.new(name: 'AllowedCapabilities')
90
93
  AllowedExtension = Shapes::StructureShape.new(name: 'AllowedExtension')
@@ -1267,6 +1270,8 @@ module Aws::Connect
1267
1270
  ListRulesResponse = Shapes::StructureShape.new(name: 'ListRulesResponse')
1268
1271
  ListSecurityKeysRequest = Shapes::StructureShape.new(name: 'ListSecurityKeysRequest')
1269
1272
  ListSecurityKeysResponse = Shapes::StructureShape.new(name: 'ListSecurityKeysResponse')
1273
+ ListSecurityProfileAIAgentsRequest = Shapes::StructureShape.new(name: 'ListSecurityProfileAIAgentsRequest')
1274
+ ListSecurityProfileAIAgentsResponse = Shapes::StructureShape.new(name: 'ListSecurityProfileAIAgentsResponse')
1270
1275
  ListSecurityProfileApplicationsRequest = Shapes::StructureShape.new(name: 'ListSecurityProfileApplicationsRequest')
1271
1276
  ListSecurityProfileApplicationsResponse = Shapes::StructureShape.new(name: 'ListSecurityProfileApplicationsResponse')
1272
1277
  ListSecurityProfileFlowModulesRequest = Shapes::StructureShape.new(name: 'ListSecurityProfileFlowModulesRequest')
@@ -2373,6 +2378,10 @@ module Aws::Connect
2373
2378
  resourceArnListMaxLimit100 = Shapes::ListShape.new(name: 'resourceArnListMaxLimit100')
2374
2379
  timestamp = Shapes::TimestampShape.new(name: 'timestamp')
2375
2380
 
2381
+ AIAgent.add_member(:arn, Shapes::ShapeRef.new(shape: ARN, location_name: "Arn"))
2382
+ AIAgent.add_member(:type, Shapes::ShapeRef.new(shape: AIAgentType, location_name: "Type"))
2383
+ AIAgent.struct_class = Types::AIAgent
2384
+
2376
2385
  AccessDeniedException.add_member(:message, Shapes::ShapeRef.new(shape: Message, location_name: "Message"))
2377
2386
  AccessDeniedException.struct_class = Types::AccessDeniedException
2378
2387
 
@@ -2536,6 +2545,8 @@ module Aws::Connect
2536
2545
 
2537
2546
  AliasConfigurationList.member = Shapes::ShapeRef.new(shape: AliasConfiguration)
2538
2547
 
2548
+ AllowedAIAgents.member = Shapes::ShapeRef.new(shape: AIAgent)
2549
+
2539
2550
  AllowedAccessControlTags.key = Shapes::ShapeRef.new(shape: SecurityProfilePolicyKey)
2540
2551
  AllowedAccessControlTags.value = Shapes::ShapeRef.new(shape: SecurityProfilePolicyValue)
2541
2552
 
@@ -3890,6 +3901,7 @@ module Aws::Connect
3890
3901
  CreateSecurityProfileRequest.add_member(:hierarchy_restricted_resources, Shapes::ShapeRef.new(shape: HierarchyRestrictedResourceList, location_name: "HierarchyRestrictedResources"))
3891
3902
  CreateSecurityProfileRequest.add_member(:allowed_access_control_hierarchy_group_id, Shapes::ShapeRef.new(shape: HierarchyGroupId, location_name: "AllowedAccessControlHierarchyGroupId"))
3892
3903
  CreateSecurityProfileRequest.add_member(:allowed_flow_modules, Shapes::ShapeRef.new(shape: AllowedFlowModules, location_name: "AllowedFlowModules"))
3904
+ CreateSecurityProfileRequest.add_member(:allowed_ai_agents, Shapes::ShapeRef.new(shape: AllowedAIAgents, location_name: "AllowedAIAgents"))
3893
3905
  CreateSecurityProfileRequest.add_member(:granular_access_control_configuration, Shapes::ShapeRef.new(shape: GranularAccessControlConfiguration, location_name: "GranularAccessControlConfiguration"))
3894
3906
  CreateSecurityProfileRequest.struct_class = Types::CreateSecurityProfileRequest
3895
3907
 
@@ -6774,6 +6786,18 @@ module Aws::Connect
6774
6786
  ListSecurityKeysResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
6775
6787
  ListSecurityKeysResponse.struct_class = Types::ListSecurityKeysResponse
6776
6788
 
6789
+ ListSecurityProfileAIAgentsRequest.add_member(:security_profile_id, Shapes::ShapeRef.new(shape: SecurityProfileId, required: true, location: "uri", location_name: "SecurityProfileId"))
6790
+ ListSecurityProfileAIAgentsRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location: "uri", location_name: "InstanceId"))
6791
+ ListSecurityProfileAIAgentsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location: "querystring", location_name: "nextToken"))
6792
+ ListSecurityProfileAIAgentsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResult1000, location: "querystring", location_name: "maxResults", metadata: {"box" => true}))
6793
+ ListSecurityProfileAIAgentsRequest.struct_class = Types::ListSecurityProfileAIAgentsRequest
6794
+
6795
+ ListSecurityProfileAIAgentsResponse.add_member(:allowed_ai_agents, Shapes::ShapeRef.new(shape: AllowedAIAgents, location_name: "AllowedAIAgents"))
6796
+ ListSecurityProfileAIAgentsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
6797
+ ListSecurityProfileAIAgentsResponse.add_member(:last_modified_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LastModifiedTime"))
6798
+ ListSecurityProfileAIAgentsResponse.add_member(:last_modified_region, Shapes::ShapeRef.new(shape: RegionName, location_name: "LastModifiedRegion"))
6799
+ ListSecurityProfileAIAgentsResponse.struct_class = Types::ListSecurityProfileAIAgentsResponse
6800
+
6777
6801
  ListSecurityProfileApplicationsRequest.add_member(:security_profile_id, Shapes::ShapeRef.new(shape: SecurityProfileId, required: true, location: "uri", location_name: "SecurityProfileId"))
6778
6802
  ListSecurityProfileApplicationsRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location: "uri", location_name: "InstanceId"))
6779
6803
  ListSecurityProfileApplicationsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location: "querystring", location_name: "nextToken"))
@@ -9738,6 +9762,7 @@ module Aws::Connect
9738
9762
  UpdateSecurityProfileRequest.add_member(:hierarchy_restricted_resources, Shapes::ShapeRef.new(shape: HierarchyRestrictedResourceList, location_name: "HierarchyRestrictedResources"))
9739
9763
  UpdateSecurityProfileRequest.add_member(:allowed_access_control_hierarchy_group_id, Shapes::ShapeRef.new(shape: HierarchyGroupId, location_name: "AllowedAccessControlHierarchyGroupId"))
9740
9764
  UpdateSecurityProfileRequest.add_member(:allowed_flow_modules, Shapes::ShapeRef.new(shape: AllowedFlowModules, location_name: "AllowedFlowModules"))
9765
+ UpdateSecurityProfileRequest.add_member(:allowed_ai_agents, Shapes::ShapeRef.new(shape: AllowedAIAgents, location_name: "AllowedAIAgents"))
9741
9766
  UpdateSecurityProfileRequest.add_member(:granular_access_control_configuration, Shapes::ShapeRef.new(shape: GranularAccessControlConfiguration, location_name: "GranularAccessControlConfiguration"))
9742
9767
  UpdateSecurityProfileRequest.struct_class = Types::UpdateSecurityProfileRequest
9743
9768
 
@@ -13928,6 +13953,25 @@ module Aws::Connect
13928
13953
  )
13929
13954
  end)
13930
13955
 
13956
+ api.add_operation(:list_security_profile_ai_agents, Seahorse::Model::Operation.new.tap do |o|
13957
+ o.name = "ListSecurityProfileAIAgents"
13958
+ o.http_method = "GET"
13959
+ o.http_request_uri = "/security-profiles-ai-agents/{InstanceId}/{SecurityProfileId}"
13960
+ o.input = Shapes::ShapeRef.new(shape: ListSecurityProfileAIAgentsRequest)
13961
+ o.output = Shapes::ShapeRef.new(shape: ListSecurityProfileAIAgentsResponse)
13962
+ o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
13963
+ o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
13964
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
13965
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
13966
+ o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
13967
+ o[:pager] = Aws::Pager.new(
13968
+ limit_key: "max_results",
13969
+ tokens: {
13970
+ "next_token" => "next_token"
13971
+ }
13972
+ )
13973
+ end)
13974
+
13931
13975
  api.add_operation(:list_security_profile_applications, Seahorse::Model::Operation.new.tap do |o|
13932
13976
  o.name = "ListSecurityProfileApplications"
13933
13977
  o.http_method = "GET"
@@ -10,6 +10,26 @@
10
10
  module Aws::Connect
11
11
  module Types
12
12
 
13
+ # Information about an AI agent that a security profile allows access to
14
+ # for Agent-to-Agent authorization.
15
+ #
16
+ # @!attribute [rw] arn
17
+ # The Amazon Resource Name (ARN) of the AI agent.
18
+ # @return [String]
19
+ #
20
+ # @!attribute [rw] type
21
+ # The type of the AI agent. The valid value is `THIRD_PARTY`.
22
+ # @return [String]
23
+ #
24
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/AIAgent AWS API Documentation
25
+ #
26
+ class AIAgent < Struct.new(
27
+ :arn,
28
+ :type)
29
+ SENSITIVE = []
30
+ include Aws::Structure
31
+ end
32
+
13
33
  # You do not have sufficient permissions to perform this action.
14
34
  #
15
35
  # @!attribute [rw] message
@@ -7758,6 +7778,10 @@ module Aws::Connect
7758
7778
  # A list of Flow Modules an AI Agent can invoke as a tool.
7759
7779
  # @return [Array<Types::FlowModule>]
7760
7780
  #
7781
+ # @!attribute [rw] allowed_ai_agents
7782
+ # A list of AI agents that the security profile will give access to.
7783
+ # @return [Array<Types::AIAgent>]
7784
+ #
7761
7785
  # @!attribute [rw] granular_access_control_configuration
7762
7786
  # The granular access control configuration for the security profile,
7763
7787
  # including data table permissions.
@@ -7777,6 +7801,7 @@ module Aws::Connect
7777
7801
  :hierarchy_restricted_resources,
7778
7802
  :allowed_access_control_hierarchy_group_id,
7779
7803
  :allowed_flow_modules,
7804
+ :allowed_ai_agents,
7780
7805
  :granular_access_control_configuration)
7781
7806
  SENSITIVE = []
7782
7807
  include Aws::Structure
@@ -24628,6 +24653,69 @@ module Aws::Connect
24628
24653
  include Aws::Structure
24629
24654
  end
24630
24655
 
24656
+ # @!attribute [rw] security_profile_id
24657
+ # The identifier for the security profle.
24658
+ # @return [String]
24659
+ #
24660
+ # @!attribute [rw] instance_id
24661
+ # The identifier of the Connect Customer instance. You can [find the
24662
+ # instance ID][1] in the Amazon Resource Name (ARN) of the instance.
24663
+ #
24664
+ #
24665
+ #
24666
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
24667
+ # @return [String]
24668
+ #
24669
+ # @!attribute [rw] next_token
24670
+ # The token for the next set of results. Use the value returned in the
24671
+ # previous response in the next request to retrieve the next set of
24672
+ # results.
24673
+ # @return [String]
24674
+ #
24675
+ # @!attribute [rw] max_results
24676
+ # The maximum number of results to return per page.
24677
+ # @return [Integer]
24678
+ #
24679
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListSecurityProfileAIAgentsRequest AWS API Documentation
24680
+ #
24681
+ class ListSecurityProfileAIAgentsRequest < Struct.new(
24682
+ :security_profile_id,
24683
+ :instance_id,
24684
+ :next_token,
24685
+ :max_results)
24686
+ SENSITIVE = []
24687
+ include Aws::Structure
24688
+ end
24689
+
24690
+ # @!attribute [rw] allowed_ai_agents
24691
+ # A list of the allowed AI agents and their types.
24692
+ # @return [Array<Types::AIAgent>]
24693
+ #
24694
+ # @!attribute [rw] next_token
24695
+ # If there are additional results, this is the token for the next set
24696
+ # of results.
24697
+ # @return [String]
24698
+ #
24699
+ # @!attribute [rw] last_modified_time
24700
+ # The timestamp when this resource was last modified.
24701
+ # @return [Time]
24702
+ #
24703
+ # @!attribute [rw] last_modified_region
24704
+ # The Amazon Web Services Region where this resource was last
24705
+ # modified.
24706
+ # @return [String]
24707
+ #
24708
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListSecurityProfileAIAgentsResponse AWS API Documentation
24709
+ #
24710
+ class ListSecurityProfileAIAgentsResponse < Struct.new(
24711
+ :allowed_ai_agents,
24712
+ :next_token,
24713
+ :last_modified_time,
24714
+ :last_modified_region)
24715
+ SENSITIVE = []
24716
+ include Aws::Structure
24717
+ end
24718
+
24631
24719
  # @!attribute [rw] security_profile_id
24632
24720
  # The identifier for the security profle.
24633
24721
  # @return [String]
@@ -39437,6 +39525,10 @@ module Aws::Connect
39437
39525
  # A list of Flow Modules an AI Agent can invoke as a tool
39438
39526
  # @return [Array<Types::FlowModule>]
39439
39527
  #
39528
+ # @!attribute [rw] allowed_ai_agents
39529
+ # A list of AI agents that the security profile will give access to.
39530
+ # @return [Array<Types::AIAgent>]
39531
+ #
39440
39532
  # @!attribute [rw] granular_access_control_configuration
39441
39533
  # The granular access control configuration for the security profile,
39442
39534
  # including data table permissions.
@@ -39455,6 +39547,7 @@ module Aws::Connect
39455
39547
  :hierarchy_restricted_resources,
39456
39548
  :allowed_access_control_hierarchy_group_id,
39457
39549
  :allowed_flow_modules,
39550
+ :allowed_ai_agents,
39458
39551
  :granular_access_control_configuration)
39459
39552
  SENSITIVE = []
39460
39553
  include Aws::Structure
@@ -54,7 +54,7 @@ module Aws::Connect
54
54
  autoload :EndpointProvider, 'aws-sdk-connect/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-connect/endpoints'
56
56
 
57
- GEM_VERSION = '1.280.0'
57
+ GEM_VERSION = '1.281.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -1125,6 +1125,12 @@ module Aws
1125
1125
  flow_module_id: ::String?
1126
1126
  }
1127
1127
  ],
1128
+ ?allowed_ai_agents: Array[
1129
+ {
1130
+ arn: ::String?,
1131
+ type: ("THIRD_PARTY")?
1132
+ }
1133
+ ],
1128
1134
  ?granular_access_control_configuration: Params::granular_access_control_configuration
1129
1135
  ) -> _CreateSecurityProfileResponseSuccess
1130
1136
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateSecurityProfileResponseSuccess
@@ -3449,6 +3455,22 @@ module Aws
3449
3455
  ) -> _ListSecurityKeysResponseSuccess
3450
3456
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListSecurityKeysResponseSuccess
3451
3457
 
3458
+ interface _ListSecurityProfileAIAgentsResponseSuccess
3459
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListSecurityProfileAIAgentsResponse]
3460
+ def allowed_ai_agents: () -> ::Array[Types::AIAgent]
3461
+ def next_token: () -> ::String
3462
+ def last_modified_time: () -> ::Time
3463
+ def last_modified_region: () -> ::String
3464
+ end
3465
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#list_security_profile_ai_agents-instance_method
3466
+ def list_security_profile_ai_agents: (
3467
+ security_profile_id: ::String,
3468
+ instance_id: ::String,
3469
+ ?next_token: ::String,
3470
+ ?max_results: ::Integer
3471
+ ) -> _ListSecurityProfileAIAgentsResponseSuccess
3472
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListSecurityProfileAIAgentsResponseSuccess
3473
+
3452
3474
  interface _ListSecurityProfileApplicationsResponseSuccess
3453
3475
  include ::Seahorse::Client::_ResponseSuccess[Types::ListSecurityProfileApplicationsResponse]
3454
3476
  def applications: () -> ::Array[Types::Application]
@@ -5869,6 +5891,12 @@ module Aws
5869
5891
  flow_module_id: ::String?
5870
5892
  }
5871
5893
  ],
5894
+ ?allowed_ai_agents: Array[
5895
+ {
5896
+ arn: ::String?,
5897
+ type: ("THIRD_PARTY")?
5898
+ }
5899
+ ],
5872
5900
  ?granular_access_control_configuration: Params::granular_access_control_configuration
5873
5901
  ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
5874
5902
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
data/sig/types.rbs CHANGED
@@ -8,6 +8,12 @@
8
8
  module Aws::Connect
9
9
  module Types
10
10
 
11
+ class AIAgent
12
+ attr_accessor arn: ::String
13
+ attr_accessor type: ("THIRD_PARTY")
14
+ SENSITIVE: []
15
+ end
16
+
11
17
  class AccessDeniedException
12
18
  attr_accessor message: ::String
13
19
  SENSITIVE: []
@@ -1819,6 +1825,7 @@ module Aws::Connect
1819
1825
  attr_accessor hierarchy_restricted_resources: ::Array[::String]
1820
1826
  attr_accessor allowed_access_control_hierarchy_group_id: ::String
1821
1827
  attr_accessor allowed_flow_modules: ::Array[Types::FlowModule]
1828
+ attr_accessor allowed_ai_agents: ::Array[Types::AIAgent]
1822
1829
  attr_accessor granular_access_control_configuration: Types::GranularAccessControlConfiguration
1823
1830
  SENSITIVE: []
1824
1831
  end
@@ -5583,6 +5590,22 @@ module Aws::Connect
5583
5590
  SENSITIVE: []
5584
5591
  end
5585
5592
 
5593
+ class ListSecurityProfileAIAgentsRequest
5594
+ attr_accessor security_profile_id: ::String
5595
+ attr_accessor instance_id: ::String
5596
+ attr_accessor next_token: ::String
5597
+ attr_accessor max_results: ::Integer
5598
+ SENSITIVE: []
5599
+ end
5600
+
5601
+ class ListSecurityProfileAIAgentsResponse
5602
+ attr_accessor allowed_ai_agents: ::Array[Types::AIAgent]
5603
+ attr_accessor next_token: ::String
5604
+ attr_accessor last_modified_time: ::Time
5605
+ attr_accessor last_modified_region: ::String
5606
+ SENSITIVE: []
5607
+ end
5608
+
5586
5609
  class ListSecurityProfileApplicationsRequest
5587
5610
  attr_accessor security_profile_id: ::String
5588
5611
  attr_accessor instance_id: ::String
@@ -9220,6 +9243,7 @@ module Aws::Connect
9220
9243
  attr_accessor hierarchy_restricted_resources: ::Array[::String]
9221
9244
  attr_accessor allowed_access_control_hierarchy_group_id: ::String
9222
9245
  attr_accessor allowed_flow_modules: ::Array[Types::FlowModule]
9246
+ attr_accessor allowed_ai_agents: ::Array[Types::AIAgent]
9223
9247
  attr_accessor granular_access_control_configuration: Types::GranularAccessControlConfiguration
9224
9248
  SENSITIVE: []
9225
9249
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-connect
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.280.0
4
+ version: 1.281.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services