aws-sdk-connect 1.155.0 → 1.157.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f1ddde038d256559085bcba7b9d2ab1469221727e08d2c97f9ca54b2be10bdec
4
- data.tar.gz: 541f7d1f033c3f25cab3ed6e0e2d74ae42d2c82b63ddafd5fb6b5033dee55635
3
+ metadata.gz: 9877a07e6f2e7f70963b03caa0d3edeb11bb732f6f8d2e6187bc746eed55ee7b
4
+ data.tar.gz: ca3c746c241383dd46b754b2961859ae39da41b98c2bb1e2a057b6b9f0e720c7
5
5
  SHA512:
6
- metadata.gz: fa2d1fd98e8a5b19a7a95d369e21a8586490abd26e3eadf219194890b6061d9298b5bb5c5fe442976902afad49761dd77a0c92a38737b8ff1672454537e0e2cb
7
- data.tar.gz: 95151c6683f3d1b426a48beca9f8a1b47fa949e23deb8ebc795e0901eb7a5f6dd5a021c3dfb13221dc0c6717b4bbddfe7a3fb5ceb47c9d50fa8b316db467b68d
6
+ metadata.gz: 27fc418f9bfaee8518bc4c131d78d4b6e9fd00e131265259efde0be624da0e4e6c3e799cbe9a754c5af9515c15fcd78cc8fb5c78be0be9c0e138f7c610f1593f
7
+ data.tar.gz: 460ce51e8b67570ef46eb5bc4545d6b39d4e5b7cf0999bbf004f5f4b1fb107f0700b8ce55f302aa43e9efcd5a3007a5e7a8e78d39e0f8d07d3f29648afe885c6
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.157.0 (2024-05-13)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.156.0 (2024-05-03)
10
+ ------------------
11
+
12
+ * Feature - This release adds 5 new APIs for managing attachments: StartAttachedFileUpload, CompleteAttachedFileUpload, GetAttachedFile, BatchGetAttachedFileMetadata, DeleteAttachedFile. These APIs can be used to programmatically upload and download attachments to Connect resources, like cases.
13
+
4
14
  1.155.0 (2024-04-25)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.155.0
1
+ 1.157.0
@@ -301,8 +301,9 @@ module Aws::Connect
301
301
  #
302
302
  # @option options [String] :sdk_ua_app_id
303
303
  # A unique and opaque application ID that is appended to the
304
- # User-Agent header as app/<sdk_ua_app_id>. It should have a
305
- # maximum length of 50.
304
+ # User-Agent header as app/sdk_ua_app_id. It should have a
305
+ # maximum length of 50. This variable is sourced from environment
306
+ # variable AWS_SDK_UA_APP_ID or the shared config profile attribute sdk_ua_app_id.
306
307
  #
307
308
  # @option options [String] :secret_access_key
308
309
  #
@@ -1205,6 +1206,70 @@ module Aws::Connect
1205
1206
  req.send_request(options)
1206
1207
  end
1207
1208
 
1209
+ # Allows you to retrieve metadata about multiple attached files on an
1210
+ # associated resource. Each attached file provided in the input list
1211
+ # must be associated with the input AssociatedResourceArn.
1212
+ #
1213
+ # @option params [required, Array<String>] :file_ids
1214
+ # The unique identifiers of the attached file resource.
1215
+ #
1216
+ # @option params [required, String] :instance_id
1217
+ # The unique identifier of the Connect instance.
1218
+ #
1219
+ # @option params [required, String] :associated_resource_arn
1220
+ # The resource to which the attached file is (being) uploaded to.
1221
+ # [Cases][1] are the only current supported resource.
1222
+ #
1223
+ # <note markdown="1"> This value must be a valid ARN.
1224
+ #
1225
+ # </note>
1226
+ #
1227
+ #
1228
+ #
1229
+ # [1]: https://docs.aws.amazon.com/connect/latest/APIReference/API_connect-cases_CreateCase.html
1230
+ #
1231
+ # @return [Types::BatchGetAttachedFileMetadataResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1232
+ #
1233
+ # * {Types::BatchGetAttachedFileMetadataResponse#files #files} => Array&lt;Types::AttachedFile&gt;
1234
+ # * {Types::BatchGetAttachedFileMetadataResponse#errors #errors} => Array&lt;Types::AttachedFileError&gt;
1235
+ #
1236
+ # @example Request syntax with placeholder values
1237
+ #
1238
+ # resp = client.batch_get_attached_file_metadata({
1239
+ # file_ids: ["FileId"], # required
1240
+ # instance_id: "InstanceId", # required
1241
+ # associated_resource_arn: "ARN", # required
1242
+ # })
1243
+ #
1244
+ # @example Response structure
1245
+ #
1246
+ # resp.files #=> Array
1247
+ # resp.files[0].creation_time #=> String
1248
+ # resp.files[0].file_arn #=> String
1249
+ # resp.files[0].file_id #=> String
1250
+ # resp.files[0].file_name #=> String
1251
+ # resp.files[0].file_size_in_bytes #=> Integer
1252
+ # resp.files[0].file_status #=> String, one of "APPROVED", "REJECTED", "PROCESSING", "FAILED"
1253
+ # resp.files[0].created_by.connect_user_arn #=> String
1254
+ # resp.files[0].created_by.aws_identity_arn #=> String
1255
+ # resp.files[0].file_use_case_type #=> String, one of "ATTACHMENT"
1256
+ # resp.files[0].associated_resource_arn #=> String
1257
+ # resp.files[0].tags #=> Hash
1258
+ # resp.files[0].tags["TagKey"] #=> String
1259
+ # resp.errors #=> Array
1260
+ # resp.errors[0].error_code #=> String
1261
+ # resp.errors[0].error_message #=> String
1262
+ # resp.errors[0].file_id #=> String
1263
+ #
1264
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/BatchGetAttachedFileMetadata AWS API Documentation
1265
+ #
1266
+ # @overload batch_get_attached_file_metadata(params = {})
1267
+ # @param [Hash] params ({})
1268
+ def batch_get_attached_file_metadata(params = {}, options = {})
1269
+ req = build_request(:batch_get_attached_file_metadata, params)
1270
+ req.send_request(options)
1271
+ end
1272
+
1208
1273
  # Retrieve the flow associations for the given resources.
1209
1274
  #
1210
1275
  # @option params [required, String] :instance_id
@@ -1456,6 +1521,46 @@ module Aws::Connect
1456
1521
  req.send_request(options)
1457
1522
  end
1458
1523
 
1524
+ # Allows you to confirm that the attached file has been uploaded using
1525
+ # the pre-signed URL provided in the StartAttachedFileUpload API.
1526
+ #
1527
+ # @option params [required, String] :instance_id
1528
+ # The unique identifier of the Connect instance.
1529
+ #
1530
+ # @option params [required, String] :file_id
1531
+ # The unique identifier of the attached file resource.
1532
+ #
1533
+ # @option params [required, String] :associated_resource_arn
1534
+ # The resource to which the attached file is (being) uploaded to.
1535
+ # [Cases][1] are the only current supported resource.
1536
+ #
1537
+ # <note markdown="1"> This value must be a valid ARN.
1538
+ #
1539
+ # </note>
1540
+ #
1541
+ #
1542
+ #
1543
+ # [1]: https://docs.aws.amazon.com/connect/latest/APIReference/API_connect-cases_CreateCase.html
1544
+ #
1545
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1546
+ #
1547
+ # @example Request syntax with placeholder values
1548
+ #
1549
+ # resp = client.complete_attached_file_upload({
1550
+ # instance_id: "InstanceId", # required
1551
+ # file_id: "FileId", # required
1552
+ # associated_resource_arn: "ARN", # required
1553
+ # })
1554
+ #
1555
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CompleteAttachedFileUpload AWS API Documentation
1556
+ #
1557
+ # @overload complete_attached_file_upload(params = {})
1558
+ # @param [Hash] params ({})
1559
+ def complete_attached_file_upload(params = {}, options = {})
1560
+ req = build_request(:complete_attached_file_upload, params)
1561
+ req.send_request(options)
1562
+ end
1563
+
1459
1564
  # This API is in preview release for Amazon Connect and is subject to
1460
1565
  # change.
1461
1566
  #
@@ -3546,6 +3651,48 @@ module Aws::Connect
3546
3651
  req.send_request(options)
3547
3652
  end
3548
3653
 
3654
+ # Deletes an attached file along with the underlying S3 Object.
3655
+ #
3656
+ # The attached file is **permanently deleted** if S3 bucket versioning
3657
+ # is not enabled.
3658
+ #
3659
+ # @option params [required, String] :instance_id
3660
+ # The unique identifier of the Connect instance.
3661
+ #
3662
+ # @option params [required, String] :file_id
3663
+ # The unique identifier of the attached file resource.
3664
+ #
3665
+ # @option params [required, String] :associated_resource_arn
3666
+ # The resource to which the attached file is (being) uploaded to.
3667
+ # [Cases][1] are the only current supported resource.
3668
+ #
3669
+ # <note markdown="1"> This value must be a valid ARN.
3670
+ #
3671
+ # </note>
3672
+ #
3673
+ #
3674
+ #
3675
+ # [1]: https://docs.aws.amazon.com/connect/latest/APIReference/API_connect-cases_CreateCase.html
3676
+ #
3677
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
3678
+ #
3679
+ # @example Request syntax with placeholder values
3680
+ #
3681
+ # resp = client.delete_attached_file({
3682
+ # instance_id: "InstanceId", # required
3683
+ # file_id: "FileId", # required
3684
+ # associated_resource_arn: "ARN", # required
3685
+ # })
3686
+ #
3687
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DeleteAttachedFile AWS API Documentation
3688
+ #
3689
+ # @overload delete_attached_file(params = {})
3690
+ # @param [Hash] params ({})
3691
+ def delete_attached_file(params = {}, options = {})
3692
+ req = build_request(:delete_attached_file, params)
3693
+ req.send_request(options)
3694
+ end
3695
+
3549
3696
  # Deletes a contact evaluation in the specified Amazon Connect instance.
3550
3697
  #
3551
3698
  # @option params [required, String] :instance_id
@@ -6208,6 +6355,80 @@ module Aws::Connect
6208
6355
  req.send_request(options)
6209
6356
  end
6210
6357
 
6358
+ # Provides a pre-signed URL for download of an approved attached file.
6359
+ # This API also returns metadata about the attached file. It will only
6360
+ # return a downloadURL if the status of the attached file is `APPROVED`.
6361
+ #
6362
+ # @option params [required, String] :instance_id
6363
+ # The unique identifier of the Connect instance.
6364
+ #
6365
+ # @option params [required, String] :file_id
6366
+ # The unique identifier of the attached file resource.
6367
+ #
6368
+ # @option params [Integer] :url_expiry_in_seconds
6369
+ # Optional override for the expiry of the pre-signed S3 URL in seconds.
6370
+ #
6371
+ # @option params [required, String] :associated_resource_arn
6372
+ # The resource to which the attached file is (being) uploaded to.
6373
+ # [Cases][1] are the only current supported resource.
6374
+ #
6375
+ # <note markdown="1"> This value must be a valid ARN.
6376
+ #
6377
+ # </note>
6378
+ #
6379
+ #
6380
+ #
6381
+ # [1]: https://docs.aws.amazon.com/connect/latest/APIReference/API_connect-cases_CreateCase.html
6382
+ #
6383
+ # @return [Types::GetAttachedFileResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
6384
+ #
6385
+ # * {Types::GetAttachedFileResponse#file_arn #file_arn} => String
6386
+ # * {Types::GetAttachedFileResponse#file_id #file_id} => String
6387
+ # * {Types::GetAttachedFileResponse#creation_time #creation_time} => String
6388
+ # * {Types::GetAttachedFileResponse#file_status #file_status} => String
6389
+ # * {Types::GetAttachedFileResponse#file_name #file_name} => String
6390
+ # * {Types::GetAttachedFileResponse#file_size_in_bytes #file_size_in_bytes} => Integer
6391
+ # * {Types::GetAttachedFileResponse#associated_resource_arn #associated_resource_arn} => String
6392
+ # * {Types::GetAttachedFileResponse#file_use_case_type #file_use_case_type} => String
6393
+ # * {Types::GetAttachedFileResponse#created_by #created_by} => Types::CreatedByInfo
6394
+ # * {Types::GetAttachedFileResponse#download_url_metadata #download_url_metadata} => Types::DownloadUrlMetadata
6395
+ # * {Types::GetAttachedFileResponse#tags #tags} => Hash&lt;String,String&gt;
6396
+ #
6397
+ # @example Request syntax with placeholder values
6398
+ #
6399
+ # resp = client.get_attached_file({
6400
+ # instance_id: "InstanceId", # required
6401
+ # file_id: "FileId", # required
6402
+ # url_expiry_in_seconds: 1,
6403
+ # associated_resource_arn: "ARN", # required
6404
+ # })
6405
+ #
6406
+ # @example Response structure
6407
+ #
6408
+ # resp.file_arn #=> String
6409
+ # resp.file_id #=> String
6410
+ # resp.creation_time #=> String
6411
+ # resp.file_status #=> String, one of "APPROVED", "REJECTED", "PROCESSING", "FAILED"
6412
+ # resp.file_name #=> String
6413
+ # resp.file_size_in_bytes #=> Integer
6414
+ # resp.associated_resource_arn #=> String
6415
+ # resp.file_use_case_type #=> String, one of "ATTACHMENT"
6416
+ # resp.created_by.connect_user_arn #=> String
6417
+ # resp.created_by.aws_identity_arn #=> String
6418
+ # resp.download_url_metadata.url #=> String
6419
+ # resp.download_url_metadata.url_expiry #=> String
6420
+ # resp.tags #=> Hash
6421
+ # resp.tags["TagKey"] #=> String
6422
+ #
6423
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/GetAttachedFile AWS API Documentation
6424
+ #
6425
+ # @overload get_attached_file(params = {})
6426
+ # @param [Hash] params ({})
6427
+ def get_attached_file(params = {}, options = {})
6428
+ req = build_request(:get_attached_file, params)
6429
+ req.send_request(options)
6430
+ end
6431
+
6211
6432
  # Retrieves the contact attributes for the specified contact.
6212
6433
  #
6213
6434
  # @option params [required, String] :instance_id
@@ -7399,7 +7620,7 @@ module Aws::Connect
7399
7620
  # Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
7400
7621
  # Agent Hierarchy, contact/segmentAttributes/connect:Subtype
7401
7622
  #
7402
- # UI name: [Average greeting time agent ][21]
7623
+ # UI name: [Average agent greeting time][21]
7403
7624
  #
7404
7625
  # AVG\_HANDLE\_TIME
7405
7626
  #
@@ -7484,7 +7705,7 @@ module Aws::Connect
7484
7705
  # Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
7485
7706
  # Agent Hierarchy, contact/segmentAttributes/connect:Subtype
7486
7707
  #
7487
- # UI name: [Average interruptions agent ][28]
7708
+ # UI name: [Average agent interruptions][28]
7488
7709
  #
7489
7710
  # AVG\_INTERRUPTION\_TIME\_AGENT
7490
7711
  #
@@ -7496,7 +7717,7 @@ module Aws::Connect
7496
7717
  # Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
7497
7718
  # Agent Hierarchy, contact/segmentAttributes/connect:Subtype
7498
7719
  #
7499
- # UI name: [Average interruption time agent][29]
7720
+ # UI name: [Average agent interruption time][29]
7500
7721
  #
7501
7722
  # AVG\_NON\_TALK\_TIME
7502
7723
  #
@@ -7554,7 +7775,7 @@ module Aws::Connect
7554
7775
  # Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
7555
7776
  # Agent Hierarchy, contact/segmentAttributes/connect:Subtype
7556
7777
  #
7557
- # UI name: [Average talk time agent][34]
7778
+ # UI name: [Average agent talk time][34]
7558
7779
  #
7559
7780
  # AVG\_TALK\_TIME\_CUSTOMER
7560
7781
  #
@@ -7566,7 +7787,7 @@ module Aws::Connect
7566
7787
  # Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
7567
7788
  # Agent Hierarchy, contact/segmentAttributes/connect:Subtype
7568
7789
  #
7569
- # UI name: [Average talk time customer][35]
7790
+ # UI name: [Average customer talk time][35]
7570
7791
  #
7571
7792
  # CASES\_CREATED
7572
7793
  #
@@ -7628,7 +7849,7 @@ module Aws::Connect
7628
7849
  # Valid groupings and filters: Queue, Channel, Agent, Agent Hierarchy,
7629
7850
  # contact/segmentAttributes/connect:Subtype
7630
7851
  #
7631
- # UI name: [Contacts handled by Connected to agent][40]
7852
+ # UI name: [Contacts handled (connected to agent timestamp)][40]
7632
7853
  #
7633
7854
  # CONTACTS\_HOLD\_ABANDONS
7634
7855
  #
@@ -7700,7 +7921,7 @@ module Aws::Connect
7700
7921
  # Valid groupings and filters: Queue, Channel, Agent, Agent Hierarchy,
7701
7922
  # contact/segmentAttributes/connect:Subtype
7702
7923
  #
7703
- # UI name: [Contacts queued by Enqueue][46]
7924
+ # UI name: [Contacts queued (enqueue timestamp)][46]
7704
7925
  #
7705
7926
  # CONTACTS\_RESOLVED\_IN\_X
7706
7927
  #
@@ -7825,7 +8046,7 @@ module Aws::Connect
7825
8046
  # Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
7826
8047
  # Agent Hierarchy, contact/segmentAttributes/connect:Subtype
7827
8048
  #
7828
- # UI name: [Talk time agent percent][55]
8049
+ # UI name: [Agent talk time percent][55]
7829
8050
  #
7830
8051
  # PERCENT\_TALK\_TIME\_CUSTOMER
7831
8052
  #
@@ -7837,7 +8058,7 @@ module Aws::Connect
7837
8058
  # Valid groupings and filters: Queue, Channel, Routing Profile, Agent,
7838
8059
  # Agent Hierarchy, contact/segmentAttributes/connect:Subtype
7839
8060
  #
7840
- # UI name: [Talk time customer percent][56]
8061
+ # UI name: [Customer talk time percent][56]
7841
8062
  #
7842
8063
  # REOPENED\_CASE\_ACTIONS
7843
8064
  #
@@ -12791,6 +13012,113 @@ module Aws::Connect
12791
13012
  req.send_request(options)
12792
13013
  end
12793
13014
 
13015
+ # Provides a pre-signed Amazon S3 URL in response for uploading your
13016
+ # content.
13017
+ #
13018
+ # You may only use this API to upload attachments to a [Connect
13019
+ # Case][1].
13020
+ #
13021
+ #
13022
+ #
13023
+ # [1]: https://docs.aws.amazon.com/connect/latest/APIReference/API_connect-cases_CreateCase.html
13024
+ #
13025
+ # @option params [String] :client_token
13026
+ # A unique, case-sensitive identifier that you provide to ensure the
13027
+ # idempotency of the request. If not provided, the Amazon Web Services
13028
+ # SDK populates this field. For more information about idempotency, see
13029
+ # [Making retries safe with idempotent APIs][1].
13030
+ #
13031
+ # **A suitable default value is auto-generated.** You should normally
13032
+ # not need to pass this option.**
13033
+ #
13034
+ #
13035
+ #
13036
+ # [1]: https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/
13037
+ #
13038
+ # @option params [required, String] :instance_id
13039
+ # The unique identifier of the Connect instance.
13040
+ #
13041
+ # @option params [required, String] :file_name
13042
+ # A case-sensitive name of the attached file being uploaded.
13043
+ #
13044
+ # @option params [required, Integer] :file_size_in_bytes
13045
+ # The size of the attached file in bytes.
13046
+ #
13047
+ # @option params [Integer] :url_expiry_in_seconds
13048
+ # Optional override for the expiry of the pre-signed S3 URL in seconds.
13049
+ #
13050
+ # @option params [required, String] :file_use_case_type
13051
+ # The use case for the file.
13052
+ #
13053
+ # @option params [required, String] :associated_resource_arn
13054
+ # The resource to which the attached file is (being) uploaded to.
13055
+ # [Cases][1] are the only current supported resource.
13056
+ #
13057
+ # <note markdown="1"> This value must be a valid ARN.
13058
+ #
13059
+ # </note>
13060
+ #
13061
+ #
13062
+ #
13063
+ # [1]: https://docs.aws.amazon.com/connect/latest/APIReference/API_connect-cases_CreateCase.html
13064
+ #
13065
+ # @option params [Types::CreatedByInfo] :created_by
13066
+ # Represents the identity that created the file.
13067
+ #
13068
+ # @option params [Hash<String,String>] :tags
13069
+ # The tags used to organize, track, or control access for this resource.
13070
+ # For example, `\{ "Tags": \{"key1":"value1", "key2":"value2"\} \}`.
13071
+ #
13072
+ # @return [Types::StartAttachedFileUploadResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
13073
+ #
13074
+ # * {Types::StartAttachedFileUploadResponse#file_arn #file_arn} => String
13075
+ # * {Types::StartAttachedFileUploadResponse#file_id #file_id} => String
13076
+ # * {Types::StartAttachedFileUploadResponse#creation_time #creation_time} => String
13077
+ # * {Types::StartAttachedFileUploadResponse#file_status #file_status} => String
13078
+ # * {Types::StartAttachedFileUploadResponse#created_by #created_by} => Types::CreatedByInfo
13079
+ # * {Types::StartAttachedFileUploadResponse#upload_url_metadata #upload_url_metadata} => Types::UploadUrlMetadata
13080
+ #
13081
+ # @example Request syntax with placeholder values
13082
+ #
13083
+ # resp = client.start_attached_file_upload({
13084
+ # client_token: "ClientToken",
13085
+ # instance_id: "InstanceId", # required
13086
+ # file_name: "FileName", # required
13087
+ # file_size_in_bytes: 1, # required
13088
+ # url_expiry_in_seconds: 1,
13089
+ # file_use_case_type: "ATTACHMENT", # required, accepts ATTACHMENT
13090
+ # associated_resource_arn: "ARN", # required
13091
+ # created_by: {
13092
+ # connect_user_arn: "ARN",
13093
+ # aws_identity_arn: "ARN",
13094
+ # },
13095
+ # tags: {
13096
+ # "TagKey" => "TagValue",
13097
+ # },
13098
+ # })
13099
+ #
13100
+ # @example Response structure
13101
+ #
13102
+ # resp.file_arn #=> String
13103
+ # resp.file_id #=> String
13104
+ # resp.creation_time #=> String
13105
+ # resp.file_status #=> String, one of "APPROVED", "REJECTED", "PROCESSING", "FAILED"
13106
+ # resp.created_by.connect_user_arn #=> String
13107
+ # resp.created_by.aws_identity_arn #=> String
13108
+ # resp.upload_url_metadata.url #=> String
13109
+ # resp.upload_url_metadata.url_expiry #=> String
13110
+ # resp.upload_url_metadata.headers_to_include #=> Hash
13111
+ # resp.upload_url_metadata.headers_to_include["UrlMetadataSignedHeadersKey"] #=> String
13112
+ #
13113
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/StartAttachedFileUpload AWS API Documentation
13114
+ #
13115
+ # @overload start_attached_file_upload(params = {})
13116
+ # @param [Hash] params ({})
13117
+ def start_attached_file_upload(params = {}, options = {})
13118
+ req = build_request(:start_attached_file_upload, params)
13119
+ req.send_request(options)
13120
+ end
13121
+
12794
13122
  # Initiates a flow to start a new chat for the customer. Response of
12795
13123
  # this API provides a token required to obtain credentials from the
12796
13124
  # [CreateParticipantConnection][1] API in the Amazon Connect Participant
@@ -14314,6 +14642,23 @@ module Aws::Connect
14314
14642
  # contact. Attribute keys can include only alphanumeric, dash, and
14315
14643
  # underscore characters.
14316
14644
  #
14645
+ # When the attributes for a contact exceed 32 KB, the contact is routed
14646
+ # down the Error branch of the flow. As a mitigation, consider the
14647
+ # following options:
14648
+ #
14649
+ # * Remove unnecessary attributes by setting their values to empty.
14650
+ #
14651
+ # * If the attributes are only used in one flow and don't need to be
14652
+ # referred to outside of that flow (for example, by a Lambda or
14653
+ # another flow), then use flow attributes. This way you aren't
14654
+ # needlessly persisting the 32 KB of information from one flow to
14655
+ # another. For more information, see [Flow block: Set contact
14656
+ # attributes][1] in the *Amazon Connect Administrator Guide*.
14657
+ #
14658
+ #
14659
+ #
14660
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/set-contact-attributes.html
14661
+ #
14317
14662
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
14318
14663
  #
14319
14664
  # @example Request syntax with placeholder values
@@ -16706,7 +17051,7 @@ module Aws::Connect
16706
17051
  params: params,
16707
17052
  config: config)
16708
17053
  context[:gem_name] = 'aws-sdk-connect'
16709
- context[:gem_version] = '1.155.0'
17054
+ context[:gem_version] = '1.157.0'
16710
17055
  Seahorse::Client::Request.new(handlers, context)
16711
17056
  end
16712
17057