aws-sdk-connect 1.52.0 → 1.56.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -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
@@ -464,6 +478,30 @@ module Aws::Connect
464
478
  include Aws::Structure
465
479
  end
466
480
 
481
+ # The streaming configuration, such as the Amazon SNS streaming
482
+ # endpoint.
483
+ #
484
+ # @note When making an API call, you may pass ChatStreamingConfiguration
485
+ # data as a hash:
486
+ #
487
+ # {
488
+ # streaming_endpoint_arn: "ChatStreamingEndpointARN", # required
489
+ # }
490
+ #
491
+ # @!attribute [rw] streaming_endpoint_arn
492
+ # The Amazon Resource Name (ARN) of the standard Amazon SNS topic. The
493
+ # Amazon Resource Name (ARN) of the streaming endpoint that is used to
494
+ # publish real-time message streaming for chat conversations.
495
+ # @return [String]
496
+ #
497
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ChatStreamingConfiguration AWS API Documentation
498
+ #
499
+ class ChatStreamingConfiguration < Struct.new(
500
+ :streaming_endpoint_arn)
501
+ SENSITIVE = []
502
+ include Aws::Structure
503
+ end
504
+
467
505
  # Contains information about a contact flow.
468
506
  #
469
507
  # @!attribute [rw] arn
@@ -613,7 +651,8 @@ module Aws::Connect
613
651
  # @return [Integer]
614
652
  #
615
653
  # @!attribute [rw] tags
616
- # One or more tags.
654
+ # The tags used to organize, track, or control access for this
655
+ # resource.
617
656
  # @return [Hash<String,String>]
618
657
  #
619
658
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateAgentStatusRequest AWS API Documentation
@@ -769,7 +808,8 @@ module Aws::Connect
769
808
  # @return [Array<Types::HoursOfOperationConfig>]
770
809
  #
771
810
  # @!attribute [rw] tags
772
- # One or more tags.
811
+ # The tags used to organize, track, or control access for this
812
+ # resource.
773
813
  # @return [Hash<String,String>]
774
814
  #
775
815
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateHoursOfOperationRequest AWS API Documentation
@@ -912,7 +952,8 @@ module Aws::Connect
912
952
  # @return [String]
913
953
  #
914
954
  # @!attribute [rw] tags
915
- # One or more tags.
955
+ # The tags used to organize, track, or control access for this
956
+ # resource.
916
957
  # @return [Hash<String,String>]
917
958
  #
918
959
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateIntegrationAssociationRequest AWS API Documentation
@@ -997,7 +1038,8 @@ module Aws::Connect
997
1038
  # @return [Array<String>]
998
1039
  #
999
1040
  # @!attribute [rw] tags
1000
- # One or more tags.
1041
+ # The tags used to organize, track, or control access for this
1042
+ # resource.
1001
1043
  # @return [Hash<String,String>]
1002
1044
  #
1003
1045
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateQueueRequest AWS API Documentation
@@ -1076,7 +1118,8 @@ module Aws::Connect
1076
1118
  # @return [Types::QuickConnectConfig]
1077
1119
  #
1078
1120
  # @!attribute [rw] tags
1079
- # One or more tags.
1121
+ # The tags used to organize, track, or control access for this
1122
+ # resource.
1080
1123
  # @return [Hash<String,String>]
1081
1124
  #
1082
1125
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateQuickConnectRequest AWS API Documentation
@@ -1201,6 +1244,70 @@ module Aws::Connect
1201
1244
  include Aws::Structure
1202
1245
  end
1203
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
+
1204
1311
  # @note When making an API call, you may pass CreateUseCaseRequest
1205
1312
  # data as a hash:
1206
1313
  #
@@ -1229,7 +1336,8 @@ module Aws::Connect
1229
1336
  # @return [String]
1230
1337
  #
1231
1338
  # @!attribute [rw] tags
1232
- # One or more tags.
1339
+ # The tags used to organize, track, or control access for this
1340
+ # resource.
1233
1341
  # @return [Hash<String,String>]
1234
1342
  #
1235
1343
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateUseCaseRequest AWS API Documentation
@@ -1630,6 +1738,32 @@ module Aws::Connect
1630
1738
  include Aws::Structure
1631
1739
  end
1632
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
+
1633
1767
  # @note When making an API call, you may pass DeleteUseCaseRequest
1634
1768
  # data as a hash:
1635
1769
  #
@@ -2056,6 +2190,44 @@ module Aws::Connect
2056
2190
  include Aws::Structure
2057
2191
  end
2058
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
+
2059
2231
  # @note When making an API call, you may pass DescribeUserHierarchyGroupRequest
2060
2232
  # data as a hash:
2061
2233
  #
@@ -3439,7 +3611,8 @@ module Aws::Connect
3439
3611
  # @return [Array<Types::HoursOfOperationConfig>]
3440
3612
  #
3441
3613
  # @!attribute [rw] tags
3442
- # One or more tags.
3614
+ # The tags used to organize, track, or control access for this
3615
+ # resource.
3443
3616
  # @return [Hash<String,String>]
3444
3617
  #
3445
3618
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/HoursOfOperation AWS API Documentation
@@ -3478,11 +3651,11 @@ module Aws::Connect
3478
3651
  # @return [String]
3479
3652
  #
3480
3653
  # @!attribute [rw] start_time
3481
- # The start time that your contact center is open.
3654
+ # The start time that your contact center opens.
3482
3655
  # @return [Types::HoursOfOperationTimeSlice]
3483
3656
  #
3484
3657
  # @!attribute [rw] end_time
3485
- # The end time that your contact center is closes.
3658
+ # The end time that your contact center closes.
3486
3659
  # @return [Types::HoursOfOperationTimeSlice]
3487
3660
  #
3488
3661
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/HoursOfOperationConfig AWS API Documentation
@@ -4466,6 +4639,7 @@ module Aws::Connect
4466
4639
  # @return [String]
4467
4640
  #
4468
4641
  # @!attribute [rw] integration_type
4642
+ # The type of integration.
4469
4643
  # @return [String]
4470
4644
  #
4471
4645
  # @!attribute [rw] next_token
@@ -4542,7 +4716,7 @@ module Aws::Connect
4542
4716
  end
4543
4717
 
4544
4718
  # @!attribute [rw] lambda_functions
4545
- # The Lambdafunction ARNs associated with the specified instance.
4719
+ # The Lambda function ARNs associated with the specified instance.
4546
4720
  # @return [Array<String>]
4547
4721
  #
4548
4722
  # @!attribute [rw] next_token
@@ -4580,7 +4754,8 @@ module Aws::Connect
4580
4754
  # @return [String]
4581
4755
  #
4582
4756
  # @!attribute [rw] max_results
4583
- # The maximum number of results to return per page.
4757
+ # The maximum number of results to return per page. If no value is
4758
+ # specified, the default is 10.
4584
4759
  # @return [Integer]
4585
4760
  #
4586
4761
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListLexBotsRequest AWS API Documentation
@@ -5066,6 +5241,64 @@ module Aws::Connect
5066
5241
  include Aws::Structure
5067
5242
  end
5068
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
+
5069
5302
  # @note When making an API call, you may pass ListSecurityProfilesRequest
5070
5303
  # data as a hash:
5071
5304
  #
@@ -5548,7 +5781,8 @@ module Aws::Connect
5548
5781
  # @return [String]
5549
5782
  #
5550
5783
  # @!attribute [rw] tags
5551
- # One or more tags.
5784
+ # The tags used to organize, track, or control access for this
5785
+ # resource.
5552
5786
  # @return [Hash<String,String>]
5553
5787
  #
5554
5788
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/Queue AWS API Documentation
@@ -5667,7 +5901,8 @@ module Aws::Connect
5667
5901
  # @return [Types::QuickConnectConfig]
5668
5902
  #
5669
5903
  # @!attribute [rw] tags
5670
- # One or more tags.
5904
+ # The tags used to organize, track, or control access for this
5905
+ # resource.
5671
5906
  # @return [Hash<String,String>]
5672
5907
  #
5673
5908
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/QuickConnect AWS API Documentation
@@ -6149,6 +6384,46 @@ module Aws::Connect
6149
6384
  include Aws::Structure
6150
6385
  end
6151
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
+
6152
6427
  # Contains information about a security profile.
6153
6428
  #
6154
6429
  # @!attribute [rw] id
@@ -6334,6 +6609,64 @@ module Aws::Connect
6334
6609
  #
6335
6610
  class StartContactRecordingResponse < Aws::EmptyStructure; end
6336
6611
 
6612
+ # @note When making an API call, you may pass StartContactStreamingRequest
6613
+ # data as a hash:
6614
+ #
6615
+ # {
6616
+ # instance_id: "InstanceId", # required
6617
+ # contact_id: "ContactId", # required
6618
+ # chat_streaming_configuration: { # required
6619
+ # streaming_endpoint_arn: "ChatStreamingEndpointARN", # required
6620
+ # },
6621
+ # client_token: "ClientToken", # required
6622
+ # }
6623
+ #
6624
+ # @!attribute [rw] instance_id
6625
+ # The identifier of the Amazon Connect instance. You can find the
6626
+ # instanceId in the ARN of the instance.
6627
+ # @return [String]
6628
+ #
6629
+ # @!attribute [rw] contact_id
6630
+ # The identifier of the contact. This is the identifier of the contact
6631
+ # associated with the first interaction with the contact center.
6632
+ # @return [String]
6633
+ #
6634
+ # @!attribute [rw] chat_streaming_configuration
6635
+ # The streaming configuration, such as the Amazon SNS streaming
6636
+ # endpoint.
6637
+ # @return [Types::ChatStreamingConfiguration]
6638
+ #
6639
+ # @!attribute [rw] client_token
6640
+ # A unique, case-sensitive identifier that you provide to ensure the
6641
+ # idempotency of the request.
6642
+ #
6643
+ # **A suitable default value is auto-generated.** You should normally
6644
+ # not need to pass this option.
6645
+ # @return [String]
6646
+ #
6647
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/StartContactStreamingRequest AWS API Documentation
6648
+ #
6649
+ class StartContactStreamingRequest < Struct.new(
6650
+ :instance_id,
6651
+ :contact_id,
6652
+ :chat_streaming_configuration,
6653
+ :client_token)
6654
+ SENSITIVE = []
6655
+ include Aws::Structure
6656
+ end
6657
+
6658
+ # @!attribute [rw] streaming_id
6659
+ # The identifier of the streaming configuration enabled.
6660
+ # @return [String]
6661
+ #
6662
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/StartContactStreamingResponse AWS API Documentation
6663
+ #
6664
+ class StartContactStreamingResponse < Struct.new(
6665
+ :streaming_id)
6666
+ SENSITIVE = []
6667
+ include Aws::Structure
6668
+ end
6669
+
6337
6670
  # @note When making an API call, you may pass StartOutboundVoiceContactRequest
6338
6671
  # data as a hash:
6339
6672
  #
@@ -6622,6 +6955,44 @@ module Aws::Connect
6622
6955
  #
6623
6956
  class StopContactResponse < Aws::EmptyStructure; end
6624
6957
 
6958
+ # @note When making an API call, you may pass StopContactStreamingRequest
6959
+ # data as a hash:
6960
+ #
6961
+ # {
6962
+ # instance_id: "InstanceId", # required
6963
+ # contact_id: "ContactId", # required
6964
+ # streaming_id: "StreamingId", # required
6965
+ # }
6966
+ #
6967
+ # @!attribute [rw] instance_id
6968
+ # The identifier of the Amazon Connect instance. You can find the
6969
+ # instanceId in the ARN of the instance.
6970
+ # @return [String]
6971
+ #
6972
+ # @!attribute [rw] contact_id
6973
+ # The identifier of the contact. This is the identifier of the contact
6974
+ # that is associated with the first interaction with the contact
6975
+ # center.
6976
+ # @return [String]
6977
+ #
6978
+ # @!attribute [rw] streaming_id
6979
+ # The identifier of the streaming configuration enabled.
6980
+ # @return [String]
6981
+ #
6982
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/StopContactStreamingRequest AWS API Documentation
6983
+ #
6984
+ class StopContactStreamingRequest < Struct.new(
6985
+ :instance_id,
6986
+ :contact_id,
6987
+ :streaming_id)
6988
+ SENSITIVE = []
6989
+ include Aws::Structure
6990
+ end
6991
+
6992
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/StopContactStreamingResponse AWS API Documentation
6993
+ #
6994
+ class StopContactStreamingResponse < Aws::EmptyStructure; end
6995
+
6625
6996
  # @note When making an API call, you may pass SuspendContactRecordingRequest
6626
6997
  # data as a hash:
6627
6998
  #
@@ -7007,7 +7378,8 @@ module Aws::Connect
7007
7378
  # The type of attribute.
7008
7379
  #
7009
7380
  # <note markdown="1"> Only allowlisted customers can consume USE\_CUSTOM\_TTS\_VOICES. To
7010
- # access this feature, contact AWS Support for allowlisting.
7381
+ # access this feature, contact Amazon Web Services Support for
7382
+ # allowlisting.
7011
7383
  #
7012
7384
  # </note>
7013
7385
  # @return [String]
@@ -7497,6 +7869,44 @@ module Aws::Connect
7497
7869
  include Aws::Structure
7498
7870
  end
7499
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
+
7500
7910
  # @note When making an API call, you may pass UpdateUserHierarchyGroupNameRequest
7501
7911
  # data as a hash:
7502
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.52.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.52.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-10-18 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