aws-sdk-connect 1.55.0 → 1.56.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: f51cf5bffe82046c7309c430e417e978dda97cebcc5a938163306cc34d6e24c6
4
- data.tar.gz: e98555fed6e21998b51830b527871be3350f71eb0858e94c9e63881a0a696559
3
+ metadata.gz: 3bcf3e184dc1a019a6a1dea87257dd1a125d53541ec8afdf34d5718fb8e019fa
4
+ data.tar.gz: 6ab5be4f6f7d5a89abafc2eabdecd0e0ec949674e73c06fac027be6f521400a8
5
5
  SHA512:
6
- metadata.gz: f8c937e1463daaf9380cafa035067a29efea14bcecb973a946f4781691ce6a9a14348426d3a7397fac5ad7ccc779ad9ba0f14fb880301bd6315ebf4b99517ce0
7
- data.tar.gz: d34711f830744df2cce191b23ef1fc8b0ba5915573644ed8f2b3a76b6eb35714930a777ccb2c76f641f6706999baa9d457163c73bfa2d2c3a167d681f4b4cd37
6
+ metadata.gz: 80903657153664f8947368a184be6d9c57c0e283ecfa1f2d92339a339c7dbb0037b9cef4e592921ff8f79d17617b24868f9af244edb10815e839e5bc2ab2b91f
7
+ data.tar.gz: 80005542307e4144376f850390a35891f1f93b10731f51c491a384b5d7f4ead477ba780043a51c8cc43cd01fbf830e07ec7c4dd1d02fdeb26fab70a152727068
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.56.0 (2021-11-04)
5
+ ------------------
6
+
7
+ * Feature - This release adds CRUD operation support for Security profile resource in Amazon Connect
8
+
4
9
  1.55.0 (2021-11-02)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.55.0
1
+ 1.56.0
@@ -275,6 +275,15 @@ module Aws::Connect
275
275
  # ** Please note ** When response stubbing is enabled, no HTTP
276
276
  # requests are made, and retries are disabled.
277
277
  #
278
+ # @option options [Boolean] :use_dualstack_endpoint
279
+ # When set to `true`, dualstack enabled endpoints (with `.aws` TLD)
280
+ # will be used if available.
281
+ #
282
+ # @option options [Boolean] :use_fips_endpoint
283
+ # When set to `true`, fips compatible endpoints will be used if available.
284
+ # When a `fips` region is used, the region is normalized and this config
285
+ # is set to `true`.
286
+ #
278
287
  # @option options [Boolean] :validate_params (true)
279
288
  # When `true`, request parameters are validated before
280
289
  # sending the request.
@@ -668,7 +677,7 @@ module Aws::Connect
668
677
  # The display order of the status.
669
678
  #
670
679
  # @option params [Hash<String,String>] :tags
671
- # One or more tags.
680
+ # The tags used to organize, track, or control access for this resource.
672
681
  #
673
682
  # @return [Types::CreateAgentStatusResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
674
683
  #
@@ -787,7 +796,7 @@ module Aws::Connect
787
796
  # and end time.
788
797
  #
789
798
  # @option params [Hash<String,String>] :tags
790
- # One or more tags.
799
+ # The tags used to organize, track, or control access for this resource.
791
800
  #
792
801
  # @return [Types::CreateHoursOfOperationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
793
802
  #
@@ -896,7 +905,8 @@ module Aws::Connect
896
905
  req.send_request(options)
897
906
  end
898
907
 
899
- # Creates an AWS resource association with an Amazon Connect instance.
908
+ # Creates an Amazon Web Services resource association with an Amazon
909
+ # Connect instance.
900
910
  #
901
911
  # @option params [required, String] :instance_id
902
912
  # The identifier of the Amazon Connect instance. You can find the
@@ -921,7 +931,7 @@ module Aws::Connect
921
931
  # integration type.
922
932
  #
923
933
  # @option params [Hash<String,String>] :tags
924
- # One or more tags.
934
+ # The tags used to organize, track, or control access for this resource.
925
935
  #
926
936
  # @return [Types::CreateIntegrationAssociationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
927
937
  #
@@ -985,7 +995,7 @@ module Aws::Connect
985
995
  # The quick connects available to agents who are working the queue.
986
996
  #
987
997
  # @option params [Hash<String,String>] :tags
988
- # One or more tags.
998
+ # The tags used to organize, track, or control access for this resource.
989
999
  #
990
1000
  # @return [Types::CreateQueueResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
991
1001
  #
@@ -1041,7 +1051,7 @@ module Aws::Connect
1041
1051
  # Configuration settings for the quick connect.
1042
1052
  #
1043
1053
  # @option params [Hash<String,String>] :tags
1044
- # One or more tags.
1054
+ # The tags used to organize, track, or control access for this resource.
1045
1055
  #
1046
1056
  # @return [Types::CreateQuickConnectResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1047
1057
  #
@@ -1161,6 +1171,58 @@ module Aws::Connect
1161
1171
  req.send_request(options)
1162
1172
  end
1163
1173
 
1174
+ # This API is in preview release for Amazon Connect and is subject to
1175
+ # change.
1176
+ #
1177
+ # Creates a security profile.
1178
+ #
1179
+ # @option params [required, String] :security_profile_name
1180
+ # The name of the security profile.
1181
+ #
1182
+ # @option params [String] :description
1183
+ # The description of the security profile.
1184
+ #
1185
+ # @option params [Array<String>] :permissions
1186
+ # Permissions assigned to the security profile.
1187
+ #
1188
+ # @option params [required, String] :instance_id
1189
+ # The identifier of the Amazon Connect instance. You can find the
1190
+ # instanceId in the ARN of the instance.
1191
+ #
1192
+ # @option params [Hash<String,String>] :tags
1193
+ # The tags used to organize, track, or control access for this resource.
1194
+ #
1195
+ # @return [Types::CreateSecurityProfileResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1196
+ #
1197
+ # * {Types::CreateSecurityProfileResponse#security_profile_id #security_profile_id} => String
1198
+ # * {Types::CreateSecurityProfileResponse#security_profile_arn #security_profile_arn} => String
1199
+ #
1200
+ # @example Request syntax with placeholder values
1201
+ #
1202
+ # resp = client.create_security_profile({
1203
+ # security_profile_name: "SecurityProfileName", # required
1204
+ # description: "SecurityProfileDescription",
1205
+ # permissions: ["SecurityProfilePermission"],
1206
+ # instance_id: "InstanceId", # required
1207
+ # tags: {
1208
+ # "TagKey" => "TagValue",
1209
+ # },
1210
+ # })
1211
+ #
1212
+ # @example Response structure
1213
+ #
1214
+ # resp.security_profile_id #=> String
1215
+ # resp.security_profile_arn #=> String
1216
+ #
1217
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateSecurityProfile AWS API Documentation
1218
+ #
1219
+ # @overload create_security_profile(params = {})
1220
+ # @param [Hash] params ({})
1221
+ def create_security_profile(params = {}, options = {})
1222
+ req = build_request(:create_security_profile, params)
1223
+ req.send_request(options)
1224
+ end
1225
+
1164
1226
  # Creates a use case for an integration association.
1165
1227
  #
1166
1228
  # @option params [required, String] :instance_id
@@ -1175,7 +1237,7 @@ module Aws::Connect
1175
1237
  # integration association can have only one of each use case type.
1176
1238
  #
1177
1239
  # @option params [Hash<String,String>] :tags
1178
- # One or more tags.
1240
+ # The tags used to organize, track, or control access for this resource.
1179
1241
  #
1180
1242
  # @return [Types::CreateUseCaseResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1181
1243
  #
@@ -1409,8 +1471,9 @@ module Aws::Connect
1409
1471
  req.send_request(options)
1410
1472
  end
1411
1473
 
1412
- # Deletes an AWS resource association from an Amazon Connect instance.
1413
- # The association must not have any use cases associated with it.
1474
+ # Deletes an Amazon Web Services resource association from an Amazon
1475
+ # Connect instance. The association must not have any use cases
1476
+ # associated with it.
1414
1477
  #
1415
1478
  # @option params [required, String] :instance_id
1416
1479
  # The identifier of the Amazon Connect instance. You can find the
@@ -1464,6 +1527,36 @@ module Aws::Connect
1464
1527
  req.send_request(options)
1465
1528
  end
1466
1529
 
1530
+ # This API is in preview release for Amazon Connect and is subject to
1531
+ # change.
1532
+ #
1533
+ # Deletes a security profile.
1534
+ #
1535
+ # @option params [required, String] :instance_id
1536
+ # The identifier of the Amazon Connect instance. You can find the
1537
+ # instanceId in the ARN of the instance.
1538
+ #
1539
+ # @option params [required, String] :security_profile_id
1540
+ # The identifier for the security profle.
1541
+ #
1542
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1543
+ #
1544
+ # @example Request syntax with placeholder values
1545
+ #
1546
+ # resp = client.delete_security_profile({
1547
+ # instance_id: "InstanceId", # required
1548
+ # security_profile_id: "SecurityProfileId", # required
1549
+ # })
1550
+ #
1551
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DeleteSecurityProfile AWS API Documentation
1552
+ #
1553
+ # @overload delete_security_profile(params = {})
1554
+ # @param [Hash] params ({})
1555
+ def delete_security_profile(params = {}, options = {})
1556
+ req = build_request(:delete_security_profile, params)
1557
+ req.send_request(options)
1558
+ end
1559
+
1467
1560
  # Deletes a use case from an integration association.
1468
1561
  #
1469
1562
  # @option params [required, String] :instance_id
@@ -1965,6 +2058,48 @@ module Aws::Connect
1965
2058
  req.send_request(options)
1966
2059
  end
1967
2060
 
2061
+ # This API is in preview release for Amazon Connect and is subject to
2062
+ # change.
2063
+ #
2064
+ # Gets basic information about the security profle.
2065
+ #
2066
+ # @option params [required, String] :security_profile_id
2067
+ # The identifier for the security profle.
2068
+ #
2069
+ # @option params [required, String] :instance_id
2070
+ # The identifier of the Amazon Connect instance. You can find the
2071
+ # instanceId in the ARN of the instance.
2072
+ #
2073
+ # @return [Types::DescribeSecurityProfileResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2074
+ #
2075
+ # * {Types::DescribeSecurityProfileResponse#security_profile #security_profile} => Types::SecurityProfile
2076
+ #
2077
+ # @example Request syntax with placeholder values
2078
+ #
2079
+ # resp = client.describe_security_profile({
2080
+ # security_profile_id: "SecurityProfileId", # required
2081
+ # instance_id: "InstanceId", # required
2082
+ # })
2083
+ #
2084
+ # @example Response structure
2085
+ #
2086
+ # resp.security_profile.id #=> String
2087
+ # resp.security_profile.organization_resource_id #=> String
2088
+ # resp.security_profile.arn #=> String
2089
+ # resp.security_profile.security_profile_name #=> String
2090
+ # resp.security_profile.description #=> String
2091
+ # resp.security_profile.tags #=> Hash
2092
+ # resp.security_profile.tags["TagKey"] #=> String
2093
+ #
2094
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DescribeSecurityProfile AWS API Documentation
2095
+ #
2096
+ # @overload describe_security_profile(params = {})
2097
+ # @param [Hash] params ({})
2098
+ def describe_security_profile(params = {}, options = {})
2099
+ req = build_request(:describe_security_profile, params)
2100
+ req.send_request(options)
2101
+ end
2102
+
1968
2103
  # Describes the specified user account. You can find the instance ID in
1969
2104
  # the console (it’s the final part of the ARN). The console does not
1970
2105
  # display the user IDs. Instead, list the users and note the IDs
@@ -3391,14 +3526,15 @@ module Aws::Connect
3391
3526
  req.send_request(options)
3392
3527
  end
3393
3528
 
3394
- # Provides summary information about the AWS resource associations for
3395
- # the specified Amazon Connect instance.
3529
+ # Provides summary information about the Amazon Web Services resource
3530
+ # associations for the specified Amazon Connect instance.
3396
3531
  #
3397
3532
  # @option params [required, String] :instance_id
3398
3533
  # The identifier of the Amazon Connect instance. You can find the
3399
3534
  # instanceId in the ARN of the instance.
3400
3535
  #
3401
3536
  # @option params [String] :integration_type
3537
+ # The type of integration.
3402
3538
  #
3403
3539
  # @option params [String] :next_token
3404
3540
  # The token for the next set of results. Use the value returned in the
@@ -3987,6 +4123,60 @@ module Aws::Connect
3987
4123
  req.send_request(options)
3988
4124
  end
3989
4125
 
4126
+ # This API is in preview release for Amazon Connect and is subject to
4127
+ # change.
4128
+ #
4129
+ # Lists the permissions granted to a security profile.
4130
+ #
4131
+ # @option params [required, String] :security_profile_id
4132
+ # The identifier for the security profle.
4133
+ #
4134
+ # @option params [required, String] :instance_id
4135
+ # The identifier of the Amazon Connect instance. You can find the
4136
+ # instanceId in the ARN of the instance.
4137
+ #
4138
+ # @option params [String] :next_token
4139
+ # The token for the next set of results. Use the value returned in the
4140
+ # previous response in the next request to retrieve the next set of
4141
+ # results.
4142
+ #
4143
+ # @option params [Integer] :max_results
4144
+ # The maximum number of results to return per page.
4145
+ #
4146
+ # @return [Types::ListSecurityProfilePermissionsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4147
+ #
4148
+ # * {Types::ListSecurityProfilePermissionsResponse#permissions #permissions} => Array&lt;String&gt;
4149
+ # * {Types::ListSecurityProfilePermissionsResponse#next_token #next_token} => String
4150
+ #
4151
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
4152
+ #
4153
+ # @example Request syntax with placeholder values
4154
+ #
4155
+ # resp = client.list_security_profile_permissions({
4156
+ # security_profile_id: "SecurityProfileId", # required
4157
+ # instance_id: "InstanceId", # required
4158
+ # next_token: "NextToken",
4159
+ # max_results: 1,
4160
+ # })
4161
+ #
4162
+ # @example Response structure
4163
+ #
4164
+ # resp.permissions #=> Array
4165
+ # resp.permissions[0] #=> String
4166
+ # resp.next_token #=> String
4167
+ #
4168
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListSecurityProfilePermissions AWS API Documentation
4169
+ #
4170
+ # @overload list_security_profile_permissions(params = {})
4171
+ # @param [Hash] params ({})
4172
+ def list_security_profile_permissions(params = {}, options = {})
4173
+ req = build_request(:list_security_profile_permissions, params)
4174
+ req.send_request(options)
4175
+ end
4176
+
4177
+ # This API is in preview release for Amazon Connect and is subject to
4178
+ # change.
4179
+ #
3990
4180
  # Provides summary information about the security profiles for the
3991
4181
  # specified Amazon Connect instance.
3992
4182
  #
@@ -5164,7 +5354,8 @@ module Aws::Connect
5164
5354
  # The type of attribute.
5165
5355
  #
5166
5356
  # <note markdown="1"> Only allowlisted customers can consume USE\_CUSTOM\_TTS\_VOICES. To
5167
- # access this feature, contact AWS Support for allowlisting.
5357
+ # access this feature, contact Amazon Web Services Support for
5358
+ # allowlisting.
5168
5359
  #
5169
5360
  # </note>
5170
5361
  #
@@ -5668,6 +5859,44 @@ module Aws::Connect
5668
5859
  req.send_request(options)
5669
5860
  end
5670
5861
 
5862
+ # This API is in preview release for Amazon Connect and is subject to
5863
+ # change.
5864
+ #
5865
+ # Updates a security profile.
5866
+ #
5867
+ # @option params [String] :description
5868
+ # The description of the security profile.
5869
+ #
5870
+ # @option params [Array<String>] :permissions
5871
+ # The permissions granted to a security profile.
5872
+ #
5873
+ # @option params [required, String] :security_profile_id
5874
+ # The identifier for the security profle.
5875
+ #
5876
+ # @option params [required, String] :instance_id
5877
+ # The identifier of the Amazon Connect instance. You can find the
5878
+ # instanceId in the ARN of the instance.
5879
+ #
5880
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
5881
+ #
5882
+ # @example Request syntax with placeholder values
5883
+ #
5884
+ # resp = client.update_security_profile({
5885
+ # description: "SecurityProfileDescription",
5886
+ # permissions: ["SecurityProfilePermission"],
5887
+ # security_profile_id: "SecurityProfileId", # required
5888
+ # instance_id: "InstanceId", # required
5889
+ # })
5890
+ #
5891
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateSecurityProfile AWS API Documentation
5892
+ #
5893
+ # @overload update_security_profile(params = {})
5894
+ # @param [Hash] params ({})
5895
+ def update_security_profile(params = {}, options = {})
5896
+ req = build_request(:update_security_profile, params)
5897
+ req.send_request(options)
5898
+ end
5899
+
5671
5900
  # Assigns the specified hierarchy group to the specified user.
5672
5901
  #
5673
5902
  # @option params [String] :hierarchy_group_id
@@ -5932,7 +6161,7 @@ module Aws::Connect
5932
6161
  params: params,
5933
6162
  config: config)
5934
6163
  context[:gem_name] = 'aws-sdk-connect'
5935
- context[:gem_version] = '1.55.0'
6164
+ context[:gem_version] = '1.56.0'
5936
6165
  Seahorse::Client::Request.new(handlers, context)
5937
6166
  end
5938
6167
 
@@ -14,6 +14,7 @@ module Aws::Connect
14
14
  include Seahorse::Model
15
15
 
16
16
  ARN = Shapes::StringShape.new(name: 'ARN')
17
+ AccessDeniedException = Shapes::StructureShape.new(name: 'AccessDeniedException')
17
18
  AfterContactWorkTimeLimit = Shapes::IntegerShape.new(name: 'AfterContactWorkTimeLimit')
18
19
  AgentFirstName = Shapes::StringShape.new(name: 'AgentFirstName')
19
20
  AgentLastName = Shapes::StringShape.new(name: 'AgentLastName')
@@ -91,6 +92,8 @@ module Aws::Connect
91
92
  CreateQuickConnectResponse = Shapes::StructureShape.new(name: 'CreateQuickConnectResponse')
92
93
  CreateRoutingProfileRequest = Shapes::StructureShape.new(name: 'CreateRoutingProfileRequest')
93
94
  CreateRoutingProfileResponse = Shapes::StructureShape.new(name: 'CreateRoutingProfileResponse')
95
+ CreateSecurityProfileRequest = Shapes::StructureShape.new(name: 'CreateSecurityProfileRequest')
96
+ CreateSecurityProfileResponse = Shapes::StructureShape.new(name: 'CreateSecurityProfileResponse')
94
97
  CreateUseCaseRequest = Shapes::StructureShape.new(name: 'CreateUseCaseRequest')
95
98
  CreateUseCaseResponse = Shapes::StructureShape.new(name: 'CreateUseCaseResponse')
96
99
  CreateUserHierarchyGroupRequest = Shapes::StructureShape.new(name: 'CreateUserHierarchyGroupRequest')
@@ -110,6 +113,7 @@ module Aws::Connect
110
113
  DeleteInstanceRequest = Shapes::StructureShape.new(name: 'DeleteInstanceRequest')
111
114
  DeleteIntegrationAssociationRequest = Shapes::StructureShape.new(name: 'DeleteIntegrationAssociationRequest')
112
115
  DeleteQuickConnectRequest = Shapes::StructureShape.new(name: 'DeleteQuickConnectRequest')
116
+ DeleteSecurityProfileRequest = Shapes::StructureShape.new(name: 'DeleteSecurityProfileRequest')
113
117
  DeleteUseCaseRequest = Shapes::StructureShape.new(name: 'DeleteUseCaseRequest')
114
118
  DeleteUserHierarchyGroupRequest = Shapes::StructureShape.new(name: 'DeleteUserHierarchyGroupRequest')
115
119
  DeleteUserRequest = Shapes::StructureShape.new(name: 'DeleteUserRequest')
@@ -131,6 +135,8 @@ module Aws::Connect
131
135
  DescribeQuickConnectResponse = Shapes::StructureShape.new(name: 'DescribeQuickConnectResponse')
132
136
  DescribeRoutingProfileRequest = Shapes::StructureShape.new(name: 'DescribeRoutingProfileRequest')
133
137
  DescribeRoutingProfileResponse = Shapes::StructureShape.new(name: 'DescribeRoutingProfileResponse')
138
+ DescribeSecurityProfileRequest = Shapes::StructureShape.new(name: 'DescribeSecurityProfileRequest')
139
+ DescribeSecurityProfileResponse = Shapes::StructureShape.new(name: 'DescribeSecurityProfileResponse')
134
140
  DescribeUserHierarchyGroupRequest = Shapes::StructureShape.new(name: 'DescribeUserHierarchyGroupRequest')
135
141
  DescribeUserHierarchyGroupResponse = Shapes::StructureShape.new(name: 'DescribeUserHierarchyGroupResponse')
136
142
  DescribeUserHierarchyStructureRequest = Shapes::StructureShape.new(name: 'DescribeUserHierarchyStructureRequest')
@@ -271,6 +277,8 @@ module Aws::Connect
271
277
  ListRoutingProfilesResponse = Shapes::StructureShape.new(name: 'ListRoutingProfilesResponse')
272
278
  ListSecurityKeysRequest = Shapes::StructureShape.new(name: 'ListSecurityKeysRequest')
273
279
  ListSecurityKeysResponse = Shapes::StructureShape.new(name: 'ListSecurityKeysResponse')
280
+ ListSecurityProfilePermissionsRequest = Shapes::StructureShape.new(name: 'ListSecurityProfilePermissionsRequest')
281
+ ListSecurityProfilePermissionsResponse = Shapes::StructureShape.new(name: 'ListSecurityProfilePermissionsResponse')
274
282
  ListSecurityProfilesRequest = Shapes::StructureShape.new(name: 'ListSecurityProfilesRequest')
275
283
  ListSecurityProfilesResponse = Shapes::StructureShape.new(name: 'ListSecurityProfilesResponse')
276
284
  ListTagsForResourceRequest = Shapes::StructureShape.new(name: 'ListTagsForResourceRequest')
@@ -304,6 +312,7 @@ module Aws::Connect
304
312
  ParticipantId = Shapes::StringShape.new(name: 'ParticipantId')
305
313
  ParticipantToken = Shapes::StringShape.new(name: 'ParticipantToken')
306
314
  Password = Shapes::StringShape.new(name: 'Password')
315
+ PermissionsList = Shapes::ListShape.new(name: 'PermissionsList')
307
316
  PhoneNumber = Shapes::StringShape.new(name: 'PhoneNumber')
308
317
  PhoneNumberCountryCode = Shapes::StringShape.new(name: 'PhoneNumberCountryCode')
309
318
  PhoneNumberCountryCodes = Shapes::ListShape.new(name: 'PhoneNumberCountryCodes')
@@ -371,9 +380,12 @@ module Aws::Connect
371
380
  S3Config = Shapes::StructureShape.new(name: 'S3Config')
372
381
  SecurityKey = Shapes::StructureShape.new(name: 'SecurityKey')
373
382
  SecurityKeysList = Shapes::ListShape.new(name: 'SecurityKeysList')
383
+ SecurityProfile = Shapes::StructureShape.new(name: 'SecurityProfile')
384
+ SecurityProfileDescription = Shapes::StringShape.new(name: 'SecurityProfileDescription')
374
385
  SecurityProfileId = Shapes::StringShape.new(name: 'SecurityProfileId')
375
386
  SecurityProfileIds = Shapes::ListShape.new(name: 'SecurityProfileIds')
376
387
  SecurityProfileName = Shapes::StringShape.new(name: 'SecurityProfileName')
388
+ SecurityProfilePermission = Shapes::StringShape.new(name: 'SecurityProfilePermission')
377
389
  SecurityProfileSummary = Shapes::StructureShape.new(name: 'SecurityProfileSummary')
378
390
  SecurityProfileSummaryList = Shapes::ListShape.new(name: 'SecurityProfileSummaryList')
379
391
  SecurityToken = Shapes::StringShape.new(name: 'SecurityToken')
@@ -438,6 +450,7 @@ module Aws::Connect
438
450
  UpdateRoutingProfileDefaultOutboundQueueRequest = Shapes::StructureShape.new(name: 'UpdateRoutingProfileDefaultOutboundQueueRequest')
439
451
  UpdateRoutingProfileNameRequest = Shapes::StructureShape.new(name: 'UpdateRoutingProfileNameRequest')
440
452
  UpdateRoutingProfileQueuesRequest = Shapes::StructureShape.new(name: 'UpdateRoutingProfileQueuesRequest')
453
+ UpdateSecurityProfileRequest = Shapes::StructureShape.new(name: 'UpdateSecurityProfileRequest')
441
454
  UpdateUserHierarchyGroupNameRequest = Shapes::StructureShape.new(name: 'UpdateUserHierarchyGroupNameRequest')
442
455
  UpdateUserHierarchyRequest = Shapes::StructureShape.new(name: 'UpdateUserHierarchyRequest')
443
456
  UpdateUserHierarchyStructureRequest = Shapes::StructureShape.new(name: 'UpdateUserHierarchyStructureRequest')
@@ -462,6 +475,9 @@ module Aws::Connect
462
475
  VoiceRecordingTrack = Shapes::StringShape.new(name: 'VoiceRecordingTrack')
463
476
  timestamp = Shapes::TimestampShape.new(name: 'timestamp')
464
477
 
478
+ AccessDeniedException.add_member(:message, Shapes::ShapeRef.new(shape: Message, location_name: "Message"))
479
+ AccessDeniedException.struct_class = Types::AccessDeniedException
480
+
465
481
  AgentStatus.add_member(:agent_status_arn, Shapes::ShapeRef.new(shape: ARN, location_name: "AgentStatusARN"))
466
482
  AgentStatus.add_member(:agent_status_id, Shapes::ShapeRef.new(shape: AgentStatusId, location_name: "AgentStatusId"))
467
483
  AgentStatus.add_member(:name, Shapes::ShapeRef.new(shape: AgentStatusName, location_name: "Name"))
@@ -673,6 +689,17 @@ module Aws::Connect
673
689
  CreateRoutingProfileResponse.add_member(:routing_profile_id, Shapes::ShapeRef.new(shape: RoutingProfileId, location_name: "RoutingProfileId"))
674
690
  CreateRoutingProfileResponse.struct_class = Types::CreateRoutingProfileResponse
675
691
 
692
+ CreateSecurityProfileRequest.add_member(:security_profile_name, Shapes::ShapeRef.new(shape: SecurityProfileName, required: true, location_name: "SecurityProfileName"))
693
+ CreateSecurityProfileRequest.add_member(:description, Shapes::ShapeRef.new(shape: SecurityProfileDescription, location_name: "Description"))
694
+ CreateSecurityProfileRequest.add_member(:permissions, Shapes::ShapeRef.new(shape: PermissionsList, location_name: "Permissions"))
695
+ CreateSecurityProfileRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location: "uri", location_name: "InstanceId"))
696
+ CreateSecurityProfileRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
697
+ CreateSecurityProfileRequest.struct_class = Types::CreateSecurityProfileRequest
698
+
699
+ CreateSecurityProfileResponse.add_member(:security_profile_id, Shapes::ShapeRef.new(shape: SecurityProfileId, location_name: "SecurityProfileId"))
700
+ CreateSecurityProfileResponse.add_member(:security_profile_arn, Shapes::ShapeRef.new(shape: ARN, location_name: "SecurityProfileArn"))
701
+ CreateSecurityProfileResponse.struct_class = Types::CreateSecurityProfileResponse
702
+
676
703
  CreateUseCaseRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location: "uri", location_name: "InstanceId"))
677
704
  CreateUseCaseRequest.add_member(:integration_association_id, Shapes::ShapeRef.new(shape: IntegrationAssociationId, required: true, location: "uri", location_name: "IntegrationAssociationId"))
678
705
  CreateUseCaseRequest.add_member(:use_case_type, Shapes::ShapeRef.new(shape: UseCaseType, required: true, location_name: "UseCaseType"))
@@ -747,6 +774,10 @@ module Aws::Connect
747
774
  DeleteQuickConnectRequest.add_member(:quick_connect_id, Shapes::ShapeRef.new(shape: QuickConnectId, required: true, location: "uri", location_name: "QuickConnectId"))
748
775
  DeleteQuickConnectRequest.struct_class = Types::DeleteQuickConnectRequest
749
776
 
777
+ DeleteSecurityProfileRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location: "uri", location_name: "InstanceId"))
778
+ DeleteSecurityProfileRequest.add_member(:security_profile_id, Shapes::ShapeRef.new(shape: SecurityProfileId, required: true, location: "uri", location_name: "SecurityProfileId"))
779
+ DeleteSecurityProfileRequest.struct_class = Types::DeleteSecurityProfileRequest
780
+
750
781
  DeleteUseCaseRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location: "uri", location_name: "InstanceId"))
751
782
  DeleteUseCaseRequest.add_member(:integration_association_id, Shapes::ShapeRef.new(shape: IntegrationAssociationId, required: true, location: "uri", location_name: "IntegrationAssociationId"))
752
783
  DeleteUseCaseRequest.add_member(:use_case_id, Shapes::ShapeRef.new(shape: UseCaseId, required: true, location: "uri", location_name: "UseCaseId"))
@@ -823,6 +854,13 @@ module Aws::Connect
823
854
  DescribeRoutingProfileResponse.add_member(:routing_profile, Shapes::ShapeRef.new(shape: RoutingProfile, location_name: "RoutingProfile"))
824
855
  DescribeRoutingProfileResponse.struct_class = Types::DescribeRoutingProfileResponse
825
856
 
857
+ DescribeSecurityProfileRequest.add_member(:security_profile_id, Shapes::ShapeRef.new(shape: SecurityProfileId, required: true, location: "uri", location_name: "SecurityProfileId"))
858
+ DescribeSecurityProfileRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location: "uri", location_name: "InstanceId"))
859
+ DescribeSecurityProfileRequest.struct_class = Types::DescribeSecurityProfileRequest
860
+
861
+ DescribeSecurityProfileResponse.add_member(:security_profile, Shapes::ShapeRef.new(shape: SecurityProfile, location_name: "SecurityProfile"))
862
+ DescribeSecurityProfileResponse.struct_class = Types::DescribeSecurityProfileResponse
863
+
826
864
  DescribeUserHierarchyGroupRequest.add_member(:hierarchy_group_id, Shapes::ShapeRef.new(shape: HierarchyGroupId, required: true, location: "uri", location_name: "HierarchyGroupId"))
827
865
  DescribeUserHierarchyGroupRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location: "uri", location_name: "InstanceId"))
828
866
  DescribeUserHierarchyGroupRequest.struct_class = Types::DescribeUserHierarchyGroupRequest
@@ -1304,6 +1342,16 @@ module Aws::Connect
1304
1342
  ListSecurityKeysResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
1305
1343
  ListSecurityKeysResponse.struct_class = Types::ListSecurityKeysResponse
1306
1344
 
1345
+ ListSecurityProfilePermissionsRequest.add_member(:security_profile_id, Shapes::ShapeRef.new(shape: SecurityProfileId, required: true, location: "uri", location_name: "SecurityProfileId"))
1346
+ ListSecurityProfilePermissionsRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location: "uri", location_name: "InstanceId"))
1347
+ ListSecurityProfilePermissionsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location: "querystring", location_name: "nextToken"))
1348
+ ListSecurityProfilePermissionsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResult1000, location: "querystring", location_name: "maxResults", metadata: {"box"=>true}))
1349
+ ListSecurityProfilePermissionsRequest.struct_class = Types::ListSecurityProfilePermissionsRequest
1350
+
1351
+ ListSecurityProfilePermissionsResponse.add_member(:permissions, Shapes::ShapeRef.new(shape: PermissionsList, location_name: "Permissions"))
1352
+ ListSecurityProfilePermissionsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
1353
+ ListSecurityProfilePermissionsResponse.struct_class = Types::ListSecurityProfilePermissionsResponse
1354
+
1307
1355
  ListSecurityProfilesRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location: "uri", location_name: "InstanceId"))
1308
1356
  ListSecurityProfilesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location: "querystring", location_name: "nextToken"))
1309
1357
  ListSecurityProfilesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResult1000, location: "querystring", location_name: "maxResults", metadata: {"box"=>true}))
@@ -1366,6 +1414,8 @@ module Aws::Connect
1366
1414
  ParticipantDetails.add_member(:display_name, Shapes::ShapeRef.new(shape: DisplayName, required: true, location_name: "DisplayName"))
1367
1415
  ParticipantDetails.struct_class = Types::ParticipantDetails
1368
1416
 
1417
+ PermissionsList.member = Shapes::ShapeRef.new(shape: SecurityProfilePermission)
1418
+
1369
1419
  PhoneNumberCountryCodes.member = Shapes::ShapeRef.new(shape: PhoneNumberCountryCode)
1370
1420
 
1371
1421
  PhoneNumberQuickConnectConfig.add_member(:phone_number, Shapes::ShapeRef.new(shape: PhoneNumber, required: true, location_name: "PhoneNumber"))
@@ -1525,6 +1575,14 @@ module Aws::Connect
1525
1575
 
1526
1576
  SecurityKeysList.member = Shapes::ShapeRef.new(shape: SecurityKey)
1527
1577
 
1578
+ SecurityProfile.add_member(:id, Shapes::ShapeRef.new(shape: SecurityProfileId, location_name: "Id"))
1579
+ SecurityProfile.add_member(:organization_resource_id, Shapes::ShapeRef.new(shape: InstanceId, location_name: "OrganizationResourceId"))
1580
+ SecurityProfile.add_member(:arn, Shapes::ShapeRef.new(shape: ARN, location_name: "Arn"))
1581
+ SecurityProfile.add_member(:security_profile_name, Shapes::ShapeRef.new(shape: SecurityProfileName, location_name: "SecurityProfileName"))
1582
+ SecurityProfile.add_member(:description, Shapes::ShapeRef.new(shape: SecurityProfileDescription, location_name: "Description"))
1583
+ SecurityProfile.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
1584
+ SecurityProfile.struct_class = Types::SecurityProfile
1585
+
1528
1586
  SecurityProfileIds.member = Shapes::ShapeRef.new(shape: SecurityProfileId)
1529
1587
 
1530
1588
  SecurityProfileSummary.add_member(:id, Shapes::ShapeRef.new(shape: SecurityProfileId, location_name: "Id"))
@@ -1746,6 +1804,12 @@ module Aws::Connect
1746
1804
  UpdateRoutingProfileQueuesRequest.add_member(:queue_configs, Shapes::ShapeRef.new(shape: RoutingProfileQueueConfigList, required: true, location_name: "QueueConfigs"))
1747
1805
  UpdateRoutingProfileQueuesRequest.struct_class = Types::UpdateRoutingProfileQueuesRequest
1748
1806
 
1807
+ UpdateSecurityProfileRequest.add_member(:description, Shapes::ShapeRef.new(shape: SecurityProfileDescription, location_name: "Description"))
1808
+ UpdateSecurityProfileRequest.add_member(:permissions, Shapes::ShapeRef.new(shape: PermissionsList, location_name: "Permissions"))
1809
+ UpdateSecurityProfileRequest.add_member(:security_profile_id, Shapes::ShapeRef.new(shape: SecurityProfileId, required: true, location: "uri", location_name: "SecurityProfileId"))
1810
+ UpdateSecurityProfileRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location: "uri", location_name: "InstanceId"))
1811
+ UpdateSecurityProfileRequest.struct_class = Types::UpdateSecurityProfileRequest
1812
+
1749
1813
  UpdateUserHierarchyGroupNameRequest.add_member(:name, Shapes::ShapeRef.new(shape: HierarchyGroupName, required: true, location_name: "Name"))
1750
1814
  UpdateUserHierarchyGroupNameRequest.add_member(:hierarchy_group_id, Shapes::ShapeRef.new(shape: HierarchyGroupId, required: true, location: "uri", location_name: "HierarchyGroupId"))
1751
1815
  UpdateUserHierarchyGroupNameRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location: "uri", location_name: "InstanceId"))
@@ -2079,6 +2143,21 @@ module Aws::Connect
2079
2143
  o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
2080
2144
  end)
2081
2145
 
2146
+ api.add_operation(:create_security_profile, Seahorse::Model::Operation.new.tap do |o|
2147
+ o.name = "CreateSecurityProfile"
2148
+ o.http_method = "PUT"
2149
+ o.http_request_uri = "/security-profiles/{InstanceId}"
2150
+ o.input = Shapes::ShapeRef.new(shape: CreateSecurityProfileRequest)
2151
+ o.output = Shapes::ShapeRef.new(shape: CreateSecurityProfileResponse)
2152
+ o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
2153
+ o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
2154
+ o.errors << Shapes::ShapeRef.new(shape: LimitExceededException)
2155
+ o.errors << Shapes::ShapeRef.new(shape: DuplicateResourceException)
2156
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2157
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
2158
+ o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
2159
+ end)
2160
+
2082
2161
  api.add_operation(:create_use_case, Seahorse::Model::Operation.new.tap do |o|
2083
2162
  o.name = "CreateUseCase"
2084
2163
  o.http_method = "PUT"
@@ -2171,6 +2250,21 @@ module Aws::Connect
2171
2250
  o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
2172
2251
  end)
2173
2252
 
2253
+ api.add_operation(:delete_security_profile, Seahorse::Model::Operation.new.tap do |o|
2254
+ o.name = "DeleteSecurityProfile"
2255
+ o.http_method = "DELETE"
2256
+ o.http_request_uri = "/security-profiles/{InstanceId}/{SecurityProfileId}"
2257
+ o.input = Shapes::ShapeRef.new(shape: DeleteSecurityProfileRequest)
2258
+ o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
2259
+ o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
2260
+ o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
2261
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2262
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
2263
+ o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
2264
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
2265
+ o.errors << Shapes::ShapeRef.new(shape: ResourceInUseException)
2266
+ end)
2267
+
2174
2268
  api.add_operation(:delete_use_case, Seahorse::Model::Operation.new.tap do |o|
2175
2269
  o.name = "DeleteUseCase"
2176
2270
  o.http_method = "DELETE"
@@ -2326,6 +2420,19 @@ module Aws::Connect
2326
2420
  o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
2327
2421
  end)
2328
2422
 
2423
+ api.add_operation(:describe_security_profile, Seahorse::Model::Operation.new.tap do |o|
2424
+ o.name = "DescribeSecurityProfile"
2425
+ o.http_method = "GET"
2426
+ o.http_request_uri = "/security-profiles/{InstanceId}/{SecurityProfileId}"
2427
+ o.input = Shapes::ShapeRef.new(shape: DescribeSecurityProfileRequest)
2428
+ o.output = Shapes::ShapeRef.new(shape: DescribeSecurityProfileResponse)
2429
+ o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
2430
+ o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
2431
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2432
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
2433
+ o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
2434
+ end)
2435
+
2329
2436
  api.add_operation(:describe_user, Seahorse::Model::Operation.new.tap do |o|
2330
2437
  o.name = "DescribeUser"
2331
2438
  o.http_method = "GET"
@@ -2887,6 +2994,25 @@ module Aws::Connect
2887
2994
  )
2888
2995
  end)
2889
2996
 
2997
+ api.add_operation(:list_security_profile_permissions, Seahorse::Model::Operation.new.tap do |o|
2998
+ o.name = "ListSecurityProfilePermissions"
2999
+ o.http_method = "GET"
3000
+ o.http_request_uri = "/security-profiles-permissions/{InstanceId}/{SecurityProfileId}"
3001
+ o.input = Shapes::ShapeRef.new(shape: ListSecurityProfilePermissionsRequest)
3002
+ o.output = Shapes::ShapeRef.new(shape: ListSecurityProfilePermissionsResponse)
3003
+ o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
3004
+ o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
3005
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
3006
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
3007
+ o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
3008
+ o[:pager] = Aws::Pager.new(
3009
+ limit_key: "max_results",
3010
+ tokens: {
3011
+ "next_token" => "next_token"
3012
+ }
3013
+ )
3014
+ end)
3015
+
2890
3016
  api.add_operation(:list_security_profiles, Seahorse::Model::Operation.new.tap do |o|
2891
3017
  o.name = "ListSecurityProfiles"
2892
3018
  o.http_method = "GET"
@@ -3366,6 +3492,19 @@ module Aws::Connect
3366
3492
  o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
3367
3493
  end)
3368
3494
 
3495
+ api.add_operation(:update_security_profile, Seahorse::Model::Operation.new.tap do |o|
3496
+ o.name = "UpdateSecurityProfile"
3497
+ o.http_method = "POST"
3498
+ o.http_request_uri = "/security-profiles/{InstanceId}/{SecurityProfileId}"
3499
+ o.input = Shapes::ShapeRef.new(shape: UpdateSecurityProfileRequest)
3500
+ o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
3501
+ o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
3502
+ o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
3503
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
3504
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
3505
+ o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
3506
+ end)
3507
+
3369
3508
  api.add_operation(:update_user_hierarchy, Seahorse::Model::Operation.new.tap do |o|
3370
3509
  o.name = "UpdateUserHierarchy"
3371
3510
  o.http_method = "POST"
@@ -27,6 +27,7 @@ module Aws::Connect
27
27
  # See {Seahorse::Client::RequestContext} for more information.
28
28
  #
29
29
  # ## Error Classes
30
+ # * {AccessDeniedException}
30
31
  # * {ContactFlowNotPublishedException}
31
32
  # * {ContactNotFoundException}
32
33
  # * {DestinationNotAllowedException}
@@ -50,6 +51,21 @@ module Aws::Connect
50
51
 
51
52
  extend Aws::Errors::DynamicErrors
52
53
 
54
+ class AccessDeniedException < ServiceError
55
+
56
+ # @param [Seahorse::Client::RequestContext] context
57
+ # @param [String] message
58
+ # @param [Aws::Connect::Types::AccessDeniedException] data
59
+ def initialize(context, message, data = Aws::EmptyStructure.new)
60
+ super(context, message, data)
61
+ end
62
+
63
+ # @return [String]
64
+ def message
65
+ @message || @data[:message]
66
+ end
67
+ end
68
+
53
69
  class ContactFlowNotPublishedException < ServiceError
54
70
 
55
71
  # @param [Seahorse::Client::RequestContext] context
@@ -10,6 +10,19 @@
10
10
  module Aws::Connect
11
11
  module Types
12
12
 
13
+ # You do not have sufficient access to perform this action.
14
+ #
15
+ # @!attribute [rw] message
16
+ # @return [String]
17
+ #
18
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/AccessDeniedException AWS API Documentation
19
+ #
20
+ class AccessDeniedException < Struct.new(
21
+ :message)
22
+ SENSITIVE = []
23
+ include Aws::Structure
24
+ end
25
+
13
26
  # Contains information about an agent status.
14
27
  #
15
28
  # @!attribute [rw] agent_status_arn
@@ -41,7 +54,8 @@ module Aws::Connect
41
54
  # @return [String]
42
55
  #
43
56
  # @!attribute [rw] tags
44
- # One or more tags.
57
+ # The tags used to organize, track, or control access for this
58
+ # resource.
45
59
  # @return [Hash<String,String>]
46
60
  #
47
61
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/AgentStatus AWS API Documentation
@@ -637,7 +651,8 @@ module Aws::Connect
637
651
  # @return [Integer]
638
652
  #
639
653
  # @!attribute [rw] tags
640
- # One or more tags.
654
+ # The tags used to organize, track, or control access for this
655
+ # resource.
641
656
  # @return [Hash<String,String>]
642
657
  #
643
658
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateAgentStatusRequest AWS API Documentation
@@ -793,7 +808,8 @@ module Aws::Connect
793
808
  # @return [Array<Types::HoursOfOperationConfig>]
794
809
  #
795
810
  # @!attribute [rw] tags
796
- # One or more tags.
811
+ # The tags used to organize, track, or control access for this
812
+ # resource.
797
813
  # @return [Hash<String,String>]
798
814
  #
799
815
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateHoursOfOperationRequest AWS API Documentation
@@ -936,7 +952,8 @@ module Aws::Connect
936
952
  # @return [String]
937
953
  #
938
954
  # @!attribute [rw] tags
939
- # One or more tags.
955
+ # The tags used to organize, track, or control access for this
956
+ # resource.
940
957
  # @return [Hash<String,String>]
941
958
  #
942
959
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateIntegrationAssociationRequest AWS API Documentation
@@ -1021,7 +1038,8 @@ module Aws::Connect
1021
1038
  # @return [Array<String>]
1022
1039
  #
1023
1040
  # @!attribute [rw] tags
1024
- # One or more tags.
1041
+ # The tags used to organize, track, or control access for this
1042
+ # resource.
1025
1043
  # @return [Hash<String,String>]
1026
1044
  #
1027
1045
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateQueueRequest AWS API Documentation
@@ -1100,7 +1118,8 @@ module Aws::Connect
1100
1118
  # @return [Types::QuickConnectConfig]
1101
1119
  #
1102
1120
  # @!attribute [rw] tags
1103
- # One or more tags.
1121
+ # The tags used to organize, track, or control access for this
1122
+ # resource.
1104
1123
  # @return [Hash<String,String>]
1105
1124
  #
1106
1125
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateQuickConnectRequest AWS API Documentation
@@ -1225,6 +1244,70 @@ module Aws::Connect
1225
1244
  include Aws::Structure
1226
1245
  end
1227
1246
 
1247
+ # @note When making an API call, you may pass CreateSecurityProfileRequest
1248
+ # data as a hash:
1249
+ #
1250
+ # {
1251
+ # security_profile_name: "SecurityProfileName", # required
1252
+ # description: "SecurityProfileDescription",
1253
+ # permissions: ["SecurityProfilePermission"],
1254
+ # instance_id: "InstanceId", # required
1255
+ # tags: {
1256
+ # "TagKey" => "TagValue",
1257
+ # },
1258
+ # }
1259
+ #
1260
+ # @!attribute [rw] security_profile_name
1261
+ # The name of the security profile.
1262
+ # @return [String]
1263
+ #
1264
+ # @!attribute [rw] description
1265
+ # The description of the security profile.
1266
+ # @return [String]
1267
+ #
1268
+ # @!attribute [rw] permissions
1269
+ # Permissions assigned to the security profile.
1270
+ # @return [Array<String>]
1271
+ #
1272
+ # @!attribute [rw] instance_id
1273
+ # The identifier of the Amazon Connect instance. You can find the
1274
+ # instanceId in the ARN of the instance.
1275
+ # @return [String]
1276
+ #
1277
+ # @!attribute [rw] tags
1278
+ # The tags used to organize, track, or control access for this
1279
+ # resource.
1280
+ # @return [Hash<String,String>]
1281
+ #
1282
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateSecurityProfileRequest AWS API Documentation
1283
+ #
1284
+ class CreateSecurityProfileRequest < Struct.new(
1285
+ :security_profile_name,
1286
+ :description,
1287
+ :permissions,
1288
+ :instance_id,
1289
+ :tags)
1290
+ SENSITIVE = []
1291
+ include Aws::Structure
1292
+ end
1293
+
1294
+ # @!attribute [rw] security_profile_id
1295
+ # The identifier for the security profle.
1296
+ # @return [String]
1297
+ #
1298
+ # @!attribute [rw] security_profile_arn
1299
+ # The Amazon Resource Name (ARN) for the security profile.
1300
+ # @return [String]
1301
+ #
1302
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateSecurityProfileResponse AWS API Documentation
1303
+ #
1304
+ class CreateSecurityProfileResponse < Struct.new(
1305
+ :security_profile_id,
1306
+ :security_profile_arn)
1307
+ SENSITIVE = []
1308
+ include Aws::Structure
1309
+ end
1310
+
1228
1311
  # @note When making an API call, you may pass CreateUseCaseRequest
1229
1312
  # data as a hash:
1230
1313
  #
@@ -1253,7 +1336,8 @@ module Aws::Connect
1253
1336
  # @return [String]
1254
1337
  #
1255
1338
  # @!attribute [rw] tags
1256
- # One or more tags.
1339
+ # The tags used to organize, track, or control access for this
1340
+ # resource.
1257
1341
  # @return [Hash<String,String>]
1258
1342
  #
1259
1343
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateUseCaseRequest AWS API Documentation
@@ -1654,6 +1738,32 @@ module Aws::Connect
1654
1738
  include Aws::Structure
1655
1739
  end
1656
1740
 
1741
+ # @note When making an API call, you may pass DeleteSecurityProfileRequest
1742
+ # data as a hash:
1743
+ #
1744
+ # {
1745
+ # instance_id: "InstanceId", # required
1746
+ # security_profile_id: "SecurityProfileId", # required
1747
+ # }
1748
+ #
1749
+ # @!attribute [rw] instance_id
1750
+ # The identifier of the Amazon Connect instance. You can find the
1751
+ # instanceId in the ARN of the instance.
1752
+ # @return [String]
1753
+ #
1754
+ # @!attribute [rw] security_profile_id
1755
+ # The identifier for the security profle.
1756
+ # @return [String]
1757
+ #
1758
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DeleteSecurityProfileRequest AWS API Documentation
1759
+ #
1760
+ class DeleteSecurityProfileRequest < Struct.new(
1761
+ :instance_id,
1762
+ :security_profile_id)
1763
+ SENSITIVE = []
1764
+ include Aws::Structure
1765
+ end
1766
+
1657
1767
  # @note When making an API call, you may pass DeleteUseCaseRequest
1658
1768
  # data as a hash:
1659
1769
  #
@@ -2080,6 +2190,44 @@ module Aws::Connect
2080
2190
  include Aws::Structure
2081
2191
  end
2082
2192
 
2193
+ # @note When making an API call, you may pass DescribeSecurityProfileRequest
2194
+ # data as a hash:
2195
+ #
2196
+ # {
2197
+ # security_profile_id: "SecurityProfileId", # required
2198
+ # instance_id: "InstanceId", # required
2199
+ # }
2200
+ #
2201
+ # @!attribute [rw] security_profile_id
2202
+ # The identifier for the security profle.
2203
+ # @return [String]
2204
+ #
2205
+ # @!attribute [rw] instance_id
2206
+ # The identifier of the Amazon Connect instance. You can find the
2207
+ # instanceId in the ARN of the instance.
2208
+ # @return [String]
2209
+ #
2210
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DescribeSecurityProfileRequest AWS API Documentation
2211
+ #
2212
+ class DescribeSecurityProfileRequest < Struct.new(
2213
+ :security_profile_id,
2214
+ :instance_id)
2215
+ SENSITIVE = []
2216
+ include Aws::Structure
2217
+ end
2218
+
2219
+ # @!attribute [rw] security_profile
2220
+ # The security profile.
2221
+ # @return [Types::SecurityProfile]
2222
+ #
2223
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DescribeSecurityProfileResponse AWS API Documentation
2224
+ #
2225
+ class DescribeSecurityProfileResponse < Struct.new(
2226
+ :security_profile)
2227
+ SENSITIVE = []
2228
+ include Aws::Structure
2229
+ end
2230
+
2083
2231
  # @note When making an API call, you may pass DescribeUserHierarchyGroupRequest
2084
2232
  # data as a hash:
2085
2233
  #
@@ -3463,7 +3611,8 @@ module Aws::Connect
3463
3611
  # @return [Array<Types::HoursOfOperationConfig>]
3464
3612
  #
3465
3613
  # @!attribute [rw] tags
3466
- # One or more tags.
3614
+ # The tags used to organize, track, or control access for this
3615
+ # resource.
3467
3616
  # @return [Hash<String,String>]
3468
3617
  #
3469
3618
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/HoursOfOperation AWS API Documentation
@@ -4490,6 +4639,7 @@ module Aws::Connect
4490
4639
  # @return [String]
4491
4640
  #
4492
4641
  # @!attribute [rw] integration_type
4642
+ # The type of integration.
4493
4643
  # @return [String]
4494
4644
  #
4495
4645
  # @!attribute [rw] next_token
@@ -4566,7 +4716,7 @@ module Aws::Connect
4566
4716
  end
4567
4717
 
4568
4718
  # @!attribute [rw] lambda_functions
4569
- # The Lambdafunction ARNs associated with the specified instance.
4719
+ # The Lambda function ARNs associated with the specified instance.
4570
4720
  # @return [Array<String>]
4571
4721
  #
4572
4722
  # @!attribute [rw] next_token
@@ -5091,6 +5241,64 @@ module Aws::Connect
5091
5241
  include Aws::Structure
5092
5242
  end
5093
5243
 
5244
+ # @note When making an API call, you may pass ListSecurityProfilePermissionsRequest
5245
+ # data as a hash:
5246
+ #
5247
+ # {
5248
+ # security_profile_id: "SecurityProfileId", # required
5249
+ # instance_id: "InstanceId", # required
5250
+ # next_token: "NextToken",
5251
+ # max_results: 1,
5252
+ # }
5253
+ #
5254
+ # @!attribute [rw] security_profile_id
5255
+ # The identifier for the security profle.
5256
+ # @return [String]
5257
+ #
5258
+ # @!attribute [rw] instance_id
5259
+ # The identifier of the Amazon Connect instance. You can find the
5260
+ # instanceId in the ARN of the instance.
5261
+ # @return [String]
5262
+ #
5263
+ # @!attribute [rw] next_token
5264
+ # The token for the next set of results. Use the value returned in the
5265
+ # previous response in the next request to retrieve the next set of
5266
+ # results.
5267
+ # @return [String]
5268
+ #
5269
+ # @!attribute [rw] max_results
5270
+ # The maximum number of results to return per page.
5271
+ # @return [Integer]
5272
+ #
5273
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListSecurityProfilePermissionsRequest AWS API Documentation
5274
+ #
5275
+ class ListSecurityProfilePermissionsRequest < Struct.new(
5276
+ :security_profile_id,
5277
+ :instance_id,
5278
+ :next_token,
5279
+ :max_results)
5280
+ SENSITIVE = []
5281
+ include Aws::Structure
5282
+ end
5283
+
5284
+ # @!attribute [rw] permissions
5285
+ # The permissions granted to the security profile.
5286
+ # @return [Array<String>]
5287
+ #
5288
+ # @!attribute [rw] next_token
5289
+ # If there are additional results, this is the token for the next set
5290
+ # of results.
5291
+ # @return [String]
5292
+ #
5293
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListSecurityProfilePermissionsResponse AWS API Documentation
5294
+ #
5295
+ class ListSecurityProfilePermissionsResponse < Struct.new(
5296
+ :permissions,
5297
+ :next_token)
5298
+ SENSITIVE = []
5299
+ include Aws::Structure
5300
+ end
5301
+
5094
5302
  # @note When making an API call, you may pass ListSecurityProfilesRequest
5095
5303
  # data as a hash:
5096
5304
  #
@@ -5573,7 +5781,8 @@ module Aws::Connect
5573
5781
  # @return [String]
5574
5782
  #
5575
5783
  # @!attribute [rw] tags
5576
- # One or more tags.
5784
+ # The tags used to organize, track, or control access for this
5785
+ # resource.
5577
5786
  # @return [Hash<String,String>]
5578
5787
  #
5579
5788
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/Queue AWS API Documentation
@@ -5692,7 +5901,8 @@ module Aws::Connect
5692
5901
  # @return [Types::QuickConnectConfig]
5693
5902
  #
5694
5903
  # @!attribute [rw] tags
5695
- # One or more tags.
5904
+ # The tags used to organize, track, or control access for this
5905
+ # resource.
5696
5906
  # @return [Hash<String,String>]
5697
5907
  #
5698
5908
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/QuickConnect AWS API Documentation
@@ -6174,6 +6384,46 @@ module Aws::Connect
6174
6384
  include Aws::Structure
6175
6385
  end
6176
6386
 
6387
+ # Contains information about a security profile.
6388
+ #
6389
+ # @!attribute [rw] id
6390
+ # The identifier for the security profile.
6391
+ # @return [String]
6392
+ #
6393
+ # @!attribute [rw] organization_resource_id
6394
+ # The organization resource identifier for the security profile.
6395
+ # @return [String]
6396
+ #
6397
+ # @!attribute [rw] arn
6398
+ # The Amazon Resource Name (ARN) for the secruity profile.
6399
+ # @return [String]
6400
+ #
6401
+ # @!attribute [rw] security_profile_name
6402
+ # The name for the security profile.
6403
+ # @return [String]
6404
+ #
6405
+ # @!attribute [rw] description
6406
+ # The description of the security profile.
6407
+ # @return [String]
6408
+ #
6409
+ # @!attribute [rw] tags
6410
+ # The tags used to organize, track, or control access for this
6411
+ # resource.
6412
+ # @return [Hash<String,String>]
6413
+ #
6414
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SecurityProfile AWS API Documentation
6415
+ #
6416
+ class SecurityProfile < Struct.new(
6417
+ :id,
6418
+ :organization_resource_id,
6419
+ :arn,
6420
+ :security_profile_name,
6421
+ :description,
6422
+ :tags)
6423
+ SENSITIVE = []
6424
+ include Aws::Structure
6425
+ end
6426
+
6177
6427
  # Contains information about a security profile.
6178
6428
  #
6179
6429
  # @!attribute [rw] id
@@ -7128,7 +7378,8 @@ module Aws::Connect
7128
7378
  # The type of attribute.
7129
7379
  #
7130
7380
  # <note markdown="1"> Only allowlisted customers can consume USE\_CUSTOM\_TTS\_VOICES. To
7131
- # access this feature, contact AWS Support for allowlisting.
7381
+ # access this feature, contact Amazon Web Services Support for
7382
+ # allowlisting.
7132
7383
  #
7133
7384
  # </note>
7134
7385
  # @return [String]
@@ -7618,6 +7869,44 @@ module Aws::Connect
7618
7869
  include Aws::Structure
7619
7870
  end
7620
7871
 
7872
+ # @note When making an API call, you may pass UpdateSecurityProfileRequest
7873
+ # data as a hash:
7874
+ #
7875
+ # {
7876
+ # description: "SecurityProfileDescription",
7877
+ # permissions: ["SecurityProfilePermission"],
7878
+ # security_profile_id: "SecurityProfileId", # required
7879
+ # instance_id: "InstanceId", # required
7880
+ # }
7881
+ #
7882
+ # @!attribute [rw] description
7883
+ # The description of the security profile.
7884
+ # @return [String]
7885
+ #
7886
+ # @!attribute [rw] permissions
7887
+ # The permissions granted to a security profile.
7888
+ # @return [Array<String>]
7889
+ #
7890
+ # @!attribute [rw] security_profile_id
7891
+ # The identifier for the security profle.
7892
+ # @return [String]
7893
+ #
7894
+ # @!attribute [rw] instance_id
7895
+ # The identifier of the Amazon Connect instance. You can find the
7896
+ # instanceId in the ARN of the instance.
7897
+ # @return [String]
7898
+ #
7899
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateSecurityProfileRequest AWS API Documentation
7900
+ #
7901
+ class UpdateSecurityProfileRequest < Struct.new(
7902
+ :description,
7903
+ :permissions,
7904
+ :security_profile_id,
7905
+ :instance_id)
7906
+ SENSITIVE = []
7907
+ include Aws::Structure
7908
+ end
7909
+
7621
7910
  # @note When making an API call, you may pass UpdateUserHierarchyGroupNameRequest
7622
7911
  # data as a hash:
7623
7912
  #
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-connect/customizations'
48
48
  # @!group service
49
49
  module Aws::Connect
50
50
 
51
- GEM_VERSION = '1.55.0'
51
+ GEM_VERSION = '1.56.0'
52
52
 
53
53
  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.55.0
4
+ version: 1.56.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: 2021-11-02 00:00:00.000000000 Z
11
+ date: 2021-11-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.121.2
22
+ version: 3.122.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.121.2
32
+ version: 3.122.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement