aws-sdk-connect 1.84.0 → 1.85.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: b7ffad2a2e497607919e1aef3b44a738dbd7613c9efb716cc9e463d04ba10615
4
- data.tar.gz: a993487552d3ea9588c21c2f0eca4aa8684d7b2027e9271bf29333489e5a7131
3
+ metadata.gz: c34ec9771aa3f9687da4ddf3e2a636d71186cef538952aa5ee7b0859d3b16a49
4
+ data.tar.gz: 9b5bbc193bc0d3ba0b672b05ec7ba57581f60c8d4446c87f7f824af8d5e24e06
5
5
  SHA512:
6
- metadata.gz: 26f22c8e419b9ef8308f2e3d90c6c17d7a4a14e5d152e7446901bead8b8352833d1b362254441b32f1429c82e2ba9fad761168b5867d44b247321ff80ed0e22c
7
- data.tar.gz: 9d51bb40e1577636bf3cd398ae5ad27b4020864380173dccd7ca2c0aa77adf9c3d26ceea8ae9edfcdd25e63fc685ff78f71547cf0394df7423e69167dc623278
6
+ metadata.gz: f6da80341a3788de12b4275f18006b67f5226dcba0e854846ef7992793602cec31385230a5424ff5eead7b82744b66bd0b2c1914b6951b4d7cc6eadef62058ff
7
+ data.tar.gz: 5d45536f4b0f520d95fc33d82f7fc02c673e3202aa28f93739ff81c7b842ab00487f74d1fc017745c6da66661f96eeb3a1cdaaff5ba6d84d18e664757ab93d1b
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.85.0 (2022-11-18)
5
+ ------------------
6
+
7
+ * Feature - Added AllowedAccessControlTags and TagRestrictedResource for Tag Based Access Control on Amazon Connect Webpage
8
+
4
9
  1.84.0 (2022-11-16)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.84.0
1
+ 1.85.0
@@ -1492,6 +1492,14 @@ module Aws::Connect
1492
1492
  # For example, \\\{ "tags": \\\{"key1":"value1",
1493
1493
  # "key2":"value2"\\} \\}.
1494
1494
  #
1495
+ # @option params [Hash<String,String>] :allowed_access_control_tags
1496
+ # The list of tags that a security profile uses to restrict access to
1497
+ # resources in Amazon Connect.
1498
+ #
1499
+ # @option params [Array<String>] :tag_restricted_resources
1500
+ # The list of resources that a security profile applies tag restrictions
1501
+ # to in Amazon Connect.
1502
+ #
1495
1503
  # @return [Types::CreateSecurityProfileResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1496
1504
  #
1497
1505
  # * {Types::CreateSecurityProfileResponse#security_profile_id #security_profile_id} => String
@@ -1500,13 +1508,17 @@ module Aws::Connect
1500
1508
  # @example Request syntax with placeholder values
1501
1509
  #
1502
1510
  # resp = client.create_security_profile({
1503
- # security_profile_name: "SecurityProfileName", # required
1511
+ # security_profile_name: "CreateSecurityProfileName", # required
1504
1512
  # description: "SecurityProfileDescription",
1505
1513
  # permissions: ["SecurityProfilePermission"],
1506
1514
  # instance_id: "InstanceId", # required
1507
1515
  # tags: {
1508
1516
  # "TagKey" => "TagValue",
1509
1517
  # },
1518
+ # allowed_access_control_tags: {
1519
+ # "SecurityProfilePolicyKey" => "SecurityProfilePolicyValue",
1520
+ # },
1521
+ # tag_restricted_resources: ["TagRestrictedResourceName"],
1510
1522
  # })
1511
1523
  #
1512
1524
  # @example Response structure
@@ -2986,6 +2998,10 @@ module Aws::Connect
2986
2998
  # resp.security_profile.description #=> String
2987
2999
  # resp.security_profile.tags #=> Hash
2988
3000
  # resp.security_profile.tags["TagKey"] #=> String
3001
+ # resp.security_profile.allowed_access_control_tags #=> Hash
3002
+ # resp.security_profile.allowed_access_control_tags["SecurityProfilePolicyKey"] #=> String
3003
+ # resp.security_profile.tag_restricted_resources #=> Array
3004
+ # resp.security_profile.tag_restricted_resources[0] #=> String
2989
3005
  #
2990
3006
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DescribeSecurityProfile AWS API Documentation
2991
3007
  #
@@ -8765,6 +8781,14 @@ module Aws::Connect
8765
8781
  # The identifier of the Amazon Connect instance. You can find the
8766
8782
  # instanceId in the ARN of the instance.
8767
8783
  #
8784
+ # @option params [Hash<String,String>] :allowed_access_control_tags
8785
+ # The list of tags that a security profile uses to restrict access to
8786
+ # resources in Amazon Connect.
8787
+ #
8788
+ # @option params [Array<String>] :tag_restricted_resources
8789
+ # The list of resources that a security profile applies tag restrictions
8790
+ # to in Amazon Connect.
8791
+ #
8768
8792
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
8769
8793
  #
8770
8794
  # @example Request syntax with placeholder values
@@ -8774,6 +8798,10 @@ module Aws::Connect
8774
8798
  # permissions: ["SecurityProfilePermission"],
8775
8799
  # security_profile_id: "SecurityProfileId", # required
8776
8800
  # instance_id: "InstanceId", # required
8801
+ # allowed_access_control_tags: {
8802
+ # "SecurityProfilePolicyKey" => "SecurityProfilePolicyValue",
8803
+ # },
8804
+ # tag_restricted_resources: ["TagRestrictedResourceName"],
8777
8805
  # })
8778
8806
  #
8779
8807
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateSecurityProfile AWS API Documentation
@@ -9238,7 +9266,7 @@ module Aws::Connect
9238
9266
  params: params,
9239
9267
  config: config)
9240
9268
  context[:gem_name] = 'aws-sdk-connect'
9241
- context[:gem_version] = '1.84.0'
9269
+ context[:gem_version] = '1.85.0'
9242
9270
  Seahorse::Client::Request.new(handlers, context)
9243
9271
  end
9244
9272
 
@@ -35,6 +35,7 @@ module Aws::Connect
35
35
  AgentStatusTypes = Shapes::ListShape.new(name: 'AgentStatusTypes')
36
36
  AgentUsername = Shapes::StringShape.new(name: 'AgentUsername')
37
37
  AliasArn = Shapes::StringShape.new(name: 'AliasArn')
38
+ AllowedAccessControlTags = Shapes::MapShape.new(name: 'AllowedAccessControlTags')
38
39
  AllowedMonitorCapabilities = Shapes::ListShape.new(name: 'AllowedMonitorCapabilities')
39
40
  AnswerMachineDetectionConfig = Shapes::StructureShape.new(name: 'AnswerMachineDetectionConfig')
40
41
  ApproximateTotalCount = Shapes::IntegerShape.new(name: 'ApproximateTotalCount')
@@ -129,6 +130,7 @@ module Aws::Connect
129
130
  CreateQuickConnectResponse = Shapes::StructureShape.new(name: 'CreateQuickConnectResponse')
130
131
  CreateRoutingProfileRequest = Shapes::StructureShape.new(name: 'CreateRoutingProfileRequest')
131
132
  CreateRoutingProfileResponse = Shapes::StructureShape.new(name: 'CreateRoutingProfileResponse')
133
+ CreateSecurityProfileName = Shapes::StringShape.new(name: 'CreateSecurityProfileName')
132
134
  CreateSecurityProfileRequest = Shapes::StructureShape.new(name: 'CreateSecurityProfileRequest')
133
135
  CreateSecurityProfileResponse = Shapes::StructureShape.new(name: 'CreateSecurityProfileResponse')
134
136
  CreateTaskTemplateRequest = Shapes::StructureShape.new(name: 'CreateTaskTemplateRequest')
@@ -544,6 +546,8 @@ module Aws::Connect
544
546
  SecurityProfileIds = Shapes::ListShape.new(name: 'SecurityProfileIds')
545
547
  SecurityProfileName = Shapes::StringShape.new(name: 'SecurityProfileName')
546
548
  SecurityProfilePermission = Shapes::StringShape.new(name: 'SecurityProfilePermission')
549
+ SecurityProfilePolicyKey = Shapes::StringShape.new(name: 'SecurityProfilePolicyKey')
550
+ SecurityProfilePolicyValue = Shapes::StringShape.new(name: 'SecurityProfilePolicyValue')
547
551
  SecurityProfileSearchConditionList = Shapes::ListShape.new(name: 'SecurityProfileSearchConditionList')
548
552
  SecurityProfileSearchCriteria = Shapes::StructureShape.new(name: 'SecurityProfileSearchCriteria')
549
553
  SecurityProfileSearchSummary = Shapes::StructureShape.new(name: 'SecurityProfileSearchSummary')
@@ -591,6 +595,8 @@ module Aws::Connect
591
595
  TagMap = Shapes::MapShape.new(name: 'TagMap')
592
596
  TagOrConditionList = Shapes::ListShape.new(name: 'TagOrConditionList')
593
597
  TagResourceRequest = Shapes::StructureShape.new(name: 'TagResourceRequest')
598
+ TagRestrictedResourceList = Shapes::ListShape.new(name: 'TagRestrictedResourceList')
599
+ TagRestrictedResourceName = Shapes::StringShape.new(name: 'TagRestrictedResourceName')
594
600
  TagValue = Shapes::StringShape.new(name: 'TagValue')
595
601
  TaskTemplateArn = Shapes::StringShape.new(name: 'TaskTemplateArn')
596
602
  TaskTemplateConstraints = Shapes::StructureShape.new(name: 'TaskTemplateConstraints')
@@ -757,6 +763,9 @@ module Aws::Connect
757
763
 
758
764
  AgentStatusTypes.member = Shapes::ShapeRef.new(shape: AgentStatusType)
759
765
 
766
+ AllowedAccessControlTags.key = Shapes::ShapeRef.new(shape: SecurityProfilePolicyKey)
767
+ AllowedAccessControlTags.value = Shapes::ShapeRef.new(shape: SecurityProfilePolicyValue)
768
+
760
769
  AllowedMonitorCapabilities.member = Shapes::ShapeRef.new(shape: MonitorCapability)
761
770
 
762
771
  AnswerMachineDetectionConfig.add_member(:enable_answer_machine_detection, Shapes::ShapeRef.new(shape: Boolean, location_name: "EnableAnswerMachineDetection"))
@@ -1057,11 +1066,13 @@ module Aws::Connect
1057
1066
  CreateRoutingProfileResponse.add_member(:routing_profile_id, Shapes::ShapeRef.new(shape: RoutingProfileId, location_name: "RoutingProfileId"))
1058
1067
  CreateRoutingProfileResponse.struct_class = Types::CreateRoutingProfileResponse
1059
1068
 
1060
- CreateSecurityProfileRequest.add_member(:security_profile_name, Shapes::ShapeRef.new(shape: SecurityProfileName, required: true, location_name: "SecurityProfileName"))
1069
+ CreateSecurityProfileRequest.add_member(:security_profile_name, Shapes::ShapeRef.new(shape: CreateSecurityProfileName, required: true, location_name: "SecurityProfileName"))
1061
1070
  CreateSecurityProfileRequest.add_member(:description, Shapes::ShapeRef.new(shape: SecurityProfileDescription, location_name: "Description"))
1062
1071
  CreateSecurityProfileRequest.add_member(:permissions, Shapes::ShapeRef.new(shape: PermissionsList, location_name: "Permissions"))
1063
1072
  CreateSecurityProfileRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location: "uri", location_name: "InstanceId"))
1064
1073
  CreateSecurityProfileRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
1074
+ CreateSecurityProfileRequest.add_member(:allowed_access_control_tags, Shapes::ShapeRef.new(shape: AllowedAccessControlTags, location_name: "AllowedAccessControlTags"))
1075
+ CreateSecurityProfileRequest.add_member(:tag_restricted_resources, Shapes::ShapeRef.new(shape: TagRestrictedResourceList, location_name: "TagRestrictedResources"))
1065
1076
  CreateSecurityProfileRequest.struct_class = Types::CreateSecurityProfileRequest
1066
1077
 
1067
1078
  CreateSecurityProfileResponse.add_member(:security_profile_id, Shapes::ShapeRef.new(shape: SecurityProfileId, location_name: "SecurityProfileId"))
@@ -2416,6 +2427,8 @@ module Aws::Connect
2416
2427
  SecurityProfile.add_member(:security_profile_name, Shapes::ShapeRef.new(shape: SecurityProfileName, location_name: "SecurityProfileName"))
2417
2428
  SecurityProfile.add_member(:description, Shapes::ShapeRef.new(shape: SecurityProfileDescription, location_name: "Description"))
2418
2429
  SecurityProfile.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
2430
+ SecurityProfile.add_member(:allowed_access_control_tags, Shapes::ShapeRef.new(shape: AllowedAccessControlTags, location_name: "AllowedAccessControlTags"))
2431
+ SecurityProfile.add_member(:tag_restricted_resources, Shapes::ShapeRef.new(shape: TagRestrictedResourceList, location_name: "TagRestrictedResources"))
2419
2432
  SecurityProfile.struct_class = Types::SecurityProfile
2420
2433
 
2421
2434
  SecurityProfileIds.member = Shapes::ShapeRef.new(shape: SecurityProfileId)
@@ -2570,6 +2583,8 @@ module Aws::Connect
2570
2583
  TagResourceRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, required: true, location_name: "tags"))
2571
2584
  TagResourceRequest.struct_class = Types::TagResourceRequest
2572
2585
 
2586
+ TagRestrictedResourceList.member = Shapes::ShapeRef.new(shape: TagRestrictedResourceName)
2587
+
2573
2588
  TaskTemplateConstraints.add_member(:required_fields, Shapes::ShapeRef.new(shape: RequiredTaskTemplateFields, location_name: "RequiredFields"))
2574
2589
  TaskTemplateConstraints.add_member(:read_only_fields, Shapes::ShapeRef.new(shape: ReadOnlyTaskTemplateFields, location_name: "ReadOnlyFields"))
2575
2590
  TaskTemplateConstraints.add_member(:invisible_fields, Shapes::ShapeRef.new(shape: InvisibleTaskTemplateFields, location_name: "InvisibleFields"))
@@ -2806,6 +2821,8 @@ module Aws::Connect
2806
2821
  UpdateSecurityProfileRequest.add_member(:permissions, Shapes::ShapeRef.new(shape: PermissionsList, location_name: "Permissions"))
2807
2822
  UpdateSecurityProfileRequest.add_member(:security_profile_id, Shapes::ShapeRef.new(shape: SecurityProfileId, required: true, location: "uri", location_name: "SecurityProfileId"))
2808
2823
  UpdateSecurityProfileRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location: "uri", location_name: "InstanceId"))
2824
+ UpdateSecurityProfileRequest.add_member(:allowed_access_control_tags, Shapes::ShapeRef.new(shape: AllowedAccessControlTags, location_name: "AllowedAccessControlTags"))
2825
+ UpdateSecurityProfileRequest.add_member(:tag_restricted_resources, Shapes::ShapeRef.new(shape: TagRestrictedResourceList, location_name: "TagRestrictedResources"))
2809
2826
  UpdateSecurityProfileRequest.struct_class = Types::UpdateSecurityProfileRequest
2810
2827
 
2811
2828
  UpdateTaskTemplateRequest.add_member(:task_template_id, Shapes::ShapeRef.new(shape: TaskTemplateId, required: true, location: "uri", location_name: "TaskTemplateId"))
@@ -1995,13 +1995,17 @@ module Aws::Connect
1995
1995
  # data as a hash:
1996
1996
  #
1997
1997
  # {
1998
- # security_profile_name: "SecurityProfileName", # required
1998
+ # security_profile_name: "CreateSecurityProfileName", # required
1999
1999
  # description: "SecurityProfileDescription",
2000
2000
  # permissions: ["SecurityProfilePermission"],
2001
2001
  # instance_id: "InstanceId", # required
2002
2002
  # tags: {
2003
2003
  # "TagKey" => "TagValue",
2004
2004
  # },
2005
+ # allowed_access_control_tags: {
2006
+ # "SecurityProfilePolicyKey" => "SecurityProfilePolicyValue",
2007
+ # },
2008
+ # tag_restricted_resources: ["TagRestrictedResourceName"],
2005
2009
  # }
2006
2010
  #
2007
2011
  # @!attribute [rw] security_profile_name
@@ -2032,6 +2036,16 @@ module Aws::Connect
2032
2036
  # "key2":"value2"\\} \\}.
2033
2037
  # @return [Hash<String,String>]
2034
2038
  #
2039
+ # @!attribute [rw] allowed_access_control_tags
2040
+ # The list of tags that a security profile uses to restrict access to
2041
+ # resources in Amazon Connect.
2042
+ # @return [Hash<String,String>]
2043
+ #
2044
+ # @!attribute [rw] tag_restricted_resources
2045
+ # The list of resources that a security profile applies tag
2046
+ # restrictions to in Amazon Connect.
2047
+ # @return [Array<String>]
2048
+ #
2035
2049
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateSecurityProfileRequest AWS API Documentation
2036
2050
  #
2037
2051
  class CreateSecurityProfileRequest < Struct.new(
@@ -2039,7 +2053,9 @@ module Aws::Connect
2039
2053
  :description,
2040
2054
  :permissions,
2041
2055
  :instance_id,
2042
- :tags)
2056
+ :tags,
2057
+ :allowed_access_control_tags,
2058
+ :tag_restricted_resources)
2043
2059
  SENSITIVE = []
2044
2060
  include Aws::Structure
2045
2061
  end
@@ -10202,6 +10218,16 @@ module Aws::Connect
10202
10218
  # "key2":"value2"\\} \\}.
10203
10219
  # @return [Hash<String,String>]
10204
10220
  #
10221
+ # @!attribute [rw] allowed_access_control_tags
10222
+ # The list of tags that a security profile uses to restrict access to
10223
+ # resources in Amazon Connect.
10224
+ # @return [Hash<String,String>]
10225
+ #
10226
+ # @!attribute [rw] tag_restricted_resources
10227
+ # The list of resources that a security profile applies tag
10228
+ # restrictions to in Amazon Connect.
10229
+ # @return [Array<String>]
10230
+ #
10205
10231
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SecurityProfile AWS API Documentation
10206
10232
  #
10207
10233
  class SecurityProfile < Struct.new(
@@ -10210,7 +10236,9 @@ module Aws::Connect
10210
10236
  :arn,
10211
10237
  :security_profile_name,
10212
10238
  :description,
10213
- :tags)
10239
+ :tags,
10240
+ :allowed_access_control_tags,
10241
+ :tag_restricted_resources)
10214
10242
  SENSITIVE = []
10215
10243
  include Aws::Structure
10216
10244
  end
@@ -12721,6 +12749,10 @@ module Aws::Connect
12721
12749
  # permissions: ["SecurityProfilePermission"],
12722
12750
  # security_profile_id: "SecurityProfileId", # required
12723
12751
  # instance_id: "InstanceId", # required
12752
+ # allowed_access_control_tags: {
12753
+ # "SecurityProfilePolicyKey" => "SecurityProfilePolicyValue",
12754
+ # },
12755
+ # tag_restricted_resources: ["TagRestrictedResourceName"],
12724
12756
  # }
12725
12757
  #
12726
12758
  # @!attribute [rw] description
@@ -12745,13 +12777,25 @@ module Aws::Connect
12745
12777
  # instanceId in the ARN of the instance.
12746
12778
  # @return [String]
12747
12779
  #
12780
+ # @!attribute [rw] allowed_access_control_tags
12781
+ # The list of tags that a security profile uses to restrict access to
12782
+ # resources in Amazon Connect.
12783
+ # @return [Hash<String,String>]
12784
+ #
12785
+ # @!attribute [rw] tag_restricted_resources
12786
+ # The list of resources that a security profile applies tag
12787
+ # restrictions to in Amazon Connect.
12788
+ # @return [Array<String>]
12789
+ #
12748
12790
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateSecurityProfileRequest AWS API Documentation
12749
12791
  #
12750
12792
  class UpdateSecurityProfileRequest < Struct.new(
12751
12793
  :description,
12752
12794
  :permissions,
12753
12795
  :security_profile_id,
12754
- :instance_id)
12796
+ :instance_id,
12797
+ :allowed_access_control_tags,
12798
+ :tag_restricted_resources)
12755
12799
  SENSITIVE = []
12756
12800
  include Aws::Structure
12757
12801
  end
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-connect/customizations'
52
52
  # @!group service
53
53
  module Aws::Connect
54
54
 
55
- GEM_VERSION = '1.84.0'
55
+ GEM_VERSION = '1.85.0'
56
56
 
57
57
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-connect
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.84.0
4
+ version: 1.85.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-11-16 00:00:00.000000000 Z
11
+ date: 2022-11-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core