aws-sdk-connect 1.37.0 → 1.38.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: e525b991cc49a110a852fa962640a4894b0cebb0cb9fc8304a5ea21804ad4871
4
- data.tar.gz: 01fd4e0da53367ec97384dea727856457eaffed23eced0fa364a00ad42830c18
3
+ metadata.gz: 89ac949afefecb2294f8a044c5ac179bb69531ca4b48bad3c318e95ba90d5936
4
+ data.tar.gz: f41d2e274130339328cb27118134fb1fced1c43141a60033e0b8524bd383baae
5
5
  SHA512:
6
- metadata.gz: 294c20183a8ef8b9ac32d5faf461e7ed5f6396e0a112ab64ff00f4b7d70d2af7b45d3e99e2c0e8ed3f34858aa21f77b33a39571cfc12e773bf99491ca99bb623
7
- data.tar.gz: 163f4a3936d0ba613eabc81a2c028649b04b18c6522e5d07fb6cb8479b40d44e6f5e372510a6d689a78bb2b9567579337074796238ca171285945764b68fda63
6
+ metadata.gz: 1f1c89f999c36844615c122834a9b769bfb8140cd903ad40f6b523df6b2027ec84978010510a9d6a408f7047890c73f6c2ec34ccaa35a1d07fdca950b148fd6d
7
+ data.tar.gz: d479f4fa0641ed397f352caccf1a818da72fb5c966b578016aa35e29fd31c49bc8c6622fc221da3ef4ada18cdd5db9e586cebed339091213a8eb63a825591a76
@@ -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.37.0'
51
+ GEM_VERSION = '1.38.0'
52
52
 
53
53
  end
@@ -327,6 +327,9 @@ module Aws::Connect
327
327
 
328
328
  # @!group API Operations
329
329
 
330
+ # This API is in preview release for Amazon Connect and is subject to
331
+ # change.
332
+ #
330
333
  # Associates an approved origin to an Amazon Connect instance.
331
334
  #
332
335
  # @option params [required, String] :instance_id
@@ -353,6 +356,9 @@ module Aws::Connect
353
356
  req.send_request(options)
354
357
  end
355
358
 
359
+ # This API is in preview release for Amazon Connect and is subject to
360
+ # change.
361
+ #
356
362
  # Associates a storage resource type for the first time. You can only
357
363
  # associate one type of storage configuration in a single call. This
358
364
  # means, for example, that you can't define an instance with multiple
@@ -422,6 +428,9 @@ module Aws::Connect
422
428
  req.send_request(options)
423
429
  end
424
430
 
431
+ # This API is in preview release for Amazon Connect and is subject to
432
+ # change.
433
+ #
425
434
  # Allows the specified Amazon Connect instance to access the specified
426
435
  # Lambda function.
427
436
  #
@@ -450,6 +459,9 @@ module Aws::Connect
450
459
  req.send_request(options)
451
460
  end
452
461
 
462
+ # This API is in preview release for Amazon Connect and is subject to
463
+ # change.
464
+ #
453
465
  # Allows the specified Amazon Connect instance to access the specified
454
466
  # Amazon Lex bot.
455
467
  #
@@ -519,6 +531,9 @@ module Aws::Connect
519
531
  req.send_request(options)
520
532
  end
521
533
 
534
+ # This API is in preview release for Amazon Connect and is subject to
535
+ # change.
536
+ #
522
537
  # Associates a security key to the instance.
523
538
  #
524
539
  # @option params [required, String] :instance_id
@@ -675,7 +690,7 @@ module Aws::Connect
675
690
  # This API is in preview release for Amazon Connect and is subject to
676
691
  # change.
677
692
  #
678
- # Create an AppIntegration association with anAmazon Connect instance.
693
+ # Create an AppIntegration association with an Amazon Connect instance.
679
694
  #
680
695
  # @option params [required, String] :instance_id
681
696
  # The identifier of the Amazon Connect instance.
@@ -725,6 +740,70 @@ module Aws::Connect
725
740
  req.send_request(options)
726
741
  end
727
742
 
743
+ # This API is in preview release for Amazon Connect and is subject to
744
+ # change.
745
+ #
746
+ # Creates a quick connect for the specified Amazon Connect instance.
747
+ #
748
+ # @option params [required, String] :instance_id
749
+ # The identifier of the Amazon Connect instance.
750
+ #
751
+ # @option params [required, String] :name
752
+ # The name of the quick connect.
753
+ #
754
+ # @option params [String] :description
755
+ # The description of the quick connect.
756
+ #
757
+ # @option params [required, Types::QuickConnectConfig] :quick_connect_config
758
+ # Configuration settings for the quick connect.
759
+ #
760
+ # @option params [Hash<String,String>] :tags
761
+ # One or more tags.
762
+ #
763
+ # @return [Types::CreateQuickConnectResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
764
+ #
765
+ # * {Types::CreateQuickConnectResponse#quick_connect_arn #quick_connect_arn} => String
766
+ # * {Types::CreateQuickConnectResponse#quick_connect_id #quick_connect_id} => String
767
+ #
768
+ # @example Request syntax with placeholder values
769
+ #
770
+ # resp = client.create_quick_connect({
771
+ # instance_id: "InstanceId", # required
772
+ # name: "QuickConnectName", # required
773
+ # description: "QuickConnectDescription",
774
+ # quick_connect_config: { # required
775
+ # quick_connect_type: "USER", # required, accepts USER, QUEUE, PHONE_NUMBER
776
+ # user_config: {
777
+ # user_id: "UserId", # required
778
+ # contact_flow_id: "ContactFlowId", # required
779
+ # },
780
+ # queue_config: {
781
+ # queue_id: "QueueId", # required
782
+ # contact_flow_id: "ContactFlowId", # required
783
+ # },
784
+ # phone_config: {
785
+ # phone_number: "PhoneNumber", # required
786
+ # },
787
+ # },
788
+ # tags: {
789
+ # "TagKey" => "TagValue",
790
+ # },
791
+ # })
792
+ #
793
+ # @example Response structure
794
+ #
795
+ # resp.quick_connect_arn #=> String
796
+ # resp.quick_connect_id #=> String
797
+ #
798
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateQuickConnect AWS API Documentation
799
+ #
800
+ # @overload create_quick_connect(params = {})
801
+ # @param [Hash] params ({})
802
+ def create_quick_connect(params = {}, options = {})
803
+ req = build_request(:create_quick_connect, params)
804
+ req.send_request(options)
805
+ end
806
+
728
807
  # Creates a new routing profile.
729
808
  #
730
809
  # @option params [required, String] :instance_id
@@ -1036,6 +1115,35 @@ module Aws::Connect
1036
1115
  req.send_request(options)
1037
1116
  end
1038
1117
 
1118
+ # This API is in preview release for Amazon Connect and is subject to
1119
+ # change.
1120
+ #
1121
+ # Deletes a quick connect.
1122
+ #
1123
+ # @option params [required, String] :instance_id
1124
+ # The identifier of the Amazon Connect instance.
1125
+ #
1126
+ # @option params [required, String] :quick_connect_id
1127
+ # The identifier for the quick connect.
1128
+ #
1129
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1130
+ #
1131
+ # @example Request syntax with placeholder values
1132
+ #
1133
+ # resp = client.delete_quick_connect({
1134
+ # instance_id: "InstanceId", # required
1135
+ # quick_connect_id: "QuickConnectId", # required
1136
+ # })
1137
+ #
1138
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DeleteQuickConnect AWS API Documentation
1139
+ #
1140
+ # @overload delete_quick_connect(params = {})
1141
+ # @param [Hash] params ({})
1142
+ def delete_quick_connect(params = {}, options = {})
1143
+ req = build_request(:delete_quick_connect, params)
1144
+ req.send_request(options)
1145
+ end
1146
+
1039
1147
  # This API is in preview release for Amazon Connect and is subject to
1040
1148
  # change.
1041
1149
  #
@@ -1176,6 +1284,9 @@ module Aws::Connect
1176
1284
  req.send_request(options)
1177
1285
  end
1178
1286
 
1287
+ # This API is in preview release for Amazon Connect and is subject to
1288
+ # change.
1289
+ #
1179
1290
  # Returns the current state of the specified instance identifier. It
1180
1291
  # tracks the instance while it is being created and returns an error
1181
1292
  # status if applicable.
@@ -1220,6 +1331,9 @@ module Aws::Connect
1220
1331
  req.send_request(options)
1221
1332
  end
1222
1333
 
1334
+ # This API is in preview release for Amazon Connect and is subject to
1335
+ # change.
1336
+ #
1223
1337
  # Describes the specified instance attribute.
1224
1338
  #
1225
1339
  # @option params [required, String] :instance_id
@@ -1253,6 +1367,9 @@ module Aws::Connect
1253
1367
  req.send_request(options)
1254
1368
  end
1255
1369
 
1370
+ # This API is in preview release for Amazon Connect and is subject to
1371
+ # change.
1372
+ #
1256
1373
  # Retrieves the current storage configurations for the specified
1257
1374
  # resource type, association ID, and instance ID.
1258
1375
  #
@@ -1302,6 +1419,52 @@ module Aws::Connect
1302
1419
  req.send_request(options)
1303
1420
  end
1304
1421
 
1422
+ # This API is in preview release for Amazon Connect and is subject to
1423
+ # change.
1424
+ #
1425
+ # Describes the quick connect.
1426
+ #
1427
+ # @option params [required, String] :instance_id
1428
+ # The identifier of the Amazon Connect instance.
1429
+ #
1430
+ # @option params [required, String] :quick_connect_id
1431
+ # The identifier for the quick connect.
1432
+ #
1433
+ # @return [Types::DescribeQuickConnectResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1434
+ #
1435
+ # * {Types::DescribeQuickConnectResponse#quick_connect #quick_connect} => Types::QuickConnect
1436
+ #
1437
+ # @example Request syntax with placeholder values
1438
+ #
1439
+ # resp = client.describe_quick_connect({
1440
+ # instance_id: "InstanceId", # required
1441
+ # quick_connect_id: "QuickConnectId", # required
1442
+ # })
1443
+ #
1444
+ # @example Response structure
1445
+ #
1446
+ # resp.quick_connect.quick_connect_arn #=> String
1447
+ # resp.quick_connect.quick_connect_id #=> String
1448
+ # resp.quick_connect.name #=> String
1449
+ # resp.quick_connect.description #=> String
1450
+ # resp.quick_connect.quick_connect_config.quick_connect_type #=> String, one of "USER", "QUEUE", "PHONE_NUMBER"
1451
+ # resp.quick_connect.quick_connect_config.user_config.user_id #=> String
1452
+ # resp.quick_connect.quick_connect_config.user_config.contact_flow_id #=> String
1453
+ # resp.quick_connect.quick_connect_config.queue_config.queue_id #=> String
1454
+ # resp.quick_connect.quick_connect_config.queue_config.contact_flow_id #=> String
1455
+ # resp.quick_connect.quick_connect_config.phone_config.phone_number #=> String
1456
+ # resp.quick_connect.tags #=> Hash
1457
+ # resp.quick_connect.tags["TagKey"] #=> String
1458
+ #
1459
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DescribeQuickConnect AWS API Documentation
1460
+ #
1461
+ # @overload describe_quick_connect(params = {})
1462
+ # @param [Hash] params ({})
1463
+ def describe_quick_connect(params = {}, options = {})
1464
+ req = build_request(:describe_quick_connect, params)
1465
+ req.send_request(options)
1466
+ end
1467
+
1305
1468
  # Describes the specified routing profile.
1306
1469
  #
1307
1470
  # @option params [required, String] :instance_id
@@ -1488,6 +1651,9 @@ module Aws::Connect
1488
1651
  req.send_request(options)
1489
1652
  end
1490
1653
 
1654
+ # This API is in preview release for Amazon Connect and is subject to
1655
+ # change.
1656
+ #
1491
1657
  # Revokes access to integrated applications from Amazon Connect.
1492
1658
  #
1493
1659
  # @option params [required, String] :instance_id
@@ -1514,6 +1680,9 @@ module Aws::Connect
1514
1680
  req.send_request(options)
1515
1681
  end
1516
1682
 
1683
+ # This API is in preview release for Amazon Connect and is subject to
1684
+ # change.
1685
+ #
1517
1686
  # Removes the storage type configurations for the specified resource
1518
1687
  # type and association ID.
1519
1688
  #
@@ -1546,6 +1715,9 @@ module Aws::Connect
1546
1715
  req.send_request(options)
1547
1716
  end
1548
1717
 
1718
+ # This API is in preview release for Amazon Connect and is subject to
1719
+ # change.
1720
+ #
1549
1721
  # Remove the Lambda function from the drop-down options available in the
1550
1722
  # relevant contact flow blocks.
1551
1723
  #
@@ -1574,6 +1746,9 @@ module Aws::Connect
1574
1746
  req.send_request(options)
1575
1747
  end
1576
1748
 
1749
+ # This API is in preview release for Amazon Connect and is subject to
1750
+ # change.
1751
+ #
1577
1752
  # Revokes authorization from the specified instance to access the
1578
1753
  # specified Amazon Lex bot.
1579
1754
  #
@@ -1640,6 +1815,9 @@ module Aws::Connect
1640
1815
  req.send_request(options)
1641
1816
  end
1642
1817
 
1818
+ # This API is in preview release for Amazon Connect and is subject to
1819
+ # change.
1820
+ #
1643
1821
  # Deletes the specified security key.
1644
1822
  #
1645
1823
  # @option params [required, String] :instance_id
@@ -2208,6 +2386,9 @@ module Aws::Connect
2208
2386
  req.send_request(options)
2209
2387
  end
2210
2388
 
2389
+ # This API is in preview release for Amazon Connect and is subject to
2390
+ # change.
2391
+ #
2211
2392
  # Returns a paginated list of all approved origins associated with the
2212
2393
  # instance.
2213
2394
  #
@@ -2584,6 +2765,9 @@ module Aws::Connect
2584
2765
  req.send_request(options)
2585
2766
  end
2586
2767
 
2768
+ # This API is in preview release for Amazon Connect and is subject to
2769
+ # change.
2770
+ #
2587
2771
  # Returns a paginated list of all the Lambda functions that show up in
2588
2772
  # the drop-down options in the relevant contact flow blocks.
2589
2773
  #
@@ -2628,6 +2812,9 @@ module Aws::Connect
2628
2812
  req.send_request(options)
2629
2813
  end
2630
2814
 
2815
+ # This API is in preview release for Amazon Connect and is subject to
2816
+ # change.
2817
+ #
2631
2818
  # Returns a paginated list of all the Amazon Lex bots currently
2632
2819
  # associated with the instance.
2633
2820
  #
@@ -2841,6 +3028,63 @@ module Aws::Connect
2841
3028
  req.send_request(options)
2842
3029
  end
2843
3030
 
3031
+ # This API is in preview release for Amazon Connect and is subject to
3032
+ # change.
3033
+ #
3034
+ # Provides information about the quick connects for the specified Amazon
3035
+ # Connect instance.
3036
+ #
3037
+ # @option params [required, String] :instance_id
3038
+ # The identifier of the Amazon Connect instance.
3039
+ #
3040
+ # @option params [String] :next_token
3041
+ # The token for the next set of results. Use the value returned in the
3042
+ # previous response in the next request to retrieve the next set of
3043
+ # results.
3044
+ #
3045
+ # @option params [Integer] :max_results
3046
+ # The maximimum number of results to return per page.
3047
+ #
3048
+ # @option params [Array<String>] :quick_connect_types
3049
+ # The type of quick connect. In the Amazon Connect console, when you
3050
+ # create a quick connect, you are prompted to assign one of the
3051
+ # following types: Agent (USER), External (PHONE\_NUMBER), or Queue
3052
+ # (QUEUE).
3053
+ #
3054
+ # @return [Types::ListQuickConnectsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3055
+ #
3056
+ # * {Types::ListQuickConnectsResponse#quick_connect_summary_list #quick_connect_summary_list} => Array&lt;Types::QuickConnectSummary&gt;
3057
+ # * {Types::ListQuickConnectsResponse#next_token #next_token} => String
3058
+ #
3059
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
3060
+ #
3061
+ # @example Request syntax with placeholder values
3062
+ #
3063
+ # resp = client.list_quick_connects({
3064
+ # instance_id: "InstanceId", # required
3065
+ # next_token: "NextToken",
3066
+ # max_results: 1,
3067
+ # quick_connect_types: ["USER"], # accepts USER, QUEUE, PHONE_NUMBER
3068
+ # })
3069
+ #
3070
+ # @example Response structure
3071
+ #
3072
+ # resp.quick_connect_summary_list #=> Array
3073
+ # resp.quick_connect_summary_list[0].id #=> String
3074
+ # resp.quick_connect_summary_list[0].arn #=> String
3075
+ # resp.quick_connect_summary_list[0].name #=> String
3076
+ # resp.quick_connect_summary_list[0].quick_connect_type #=> String, one of "USER", "QUEUE", "PHONE_NUMBER"
3077
+ # resp.next_token #=> String
3078
+ #
3079
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListQuickConnects AWS API Documentation
3080
+ #
3081
+ # @overload list_quick_connects(params = {})
3082
+ # @param [Hash] params ({})
3083
+ def list_quick_connects(params = {}, options = {})
3084
+ req = build_request(:list_quick_connects, params)
3085
+ req.send_request(options)
3086
+ end
3087
+
2844
3088
  # List the queues associated with a routing profile.
2845
3089
  #
2846
3090
  # @option params [required, String] :instance_id
@@ -2948,6 +3192,9 @@ module Aws::Connect
2948
3192
  req.send_request(options)
2949
3193
  end
2950
3194
 
3195
+ # This API is in preview release for Amazon Connect and is subject to
3196
+ # change.
3197
+ #
2951
3198
  # Returns a paginated list of all security keys associated with the
2952
3199
  # instance.
2953
3200
  #
@@ -3710,8 +3957,8 @@ module Aws::Connect
3710
3957
 
3711
3958
  # Adds the specified tags to the specified resource.
3712
3959
  #
3713
- # The supported resource types are users, routing profiles, and contact
3714
- # flows.
3960
+ # The supported resource types are users, routing profiles, quick
3961
+ # connects, and contact flows.
3715
3962
  #
3716
3963
  # For sample policies that use tags, see [Amazon Connect Identity-Based
3717
3964
  # Policy Examples][1] in the *Amazon Connect Administrator Guide*.
@@ -4014,6 +4261,91 @@ module Aws::Connect
4014
4261
  req.send_request(options)
4015
4262
  end
4016
4263
 
4264
+ # This API is in preview release for Amazon Connect and is subject to
4265
+ # change.
4266
+ #
4267
+ # Updates the configuration settings for the specified quick connect.
4268
+ #
4269
+ # @option params [required, String] :instance_id
4270
+ # The identifier of the Amazon Connect instance.
4271
+ #
4272
+ # @option params [required, String] :quick_connect_id
4273
+ # The identifier for the quick connect.
4274
+ #
4275
+ # @option params [required, Types::QuickConnectConfig] :quick_connect_config
4276
+ # Information about the configuration settings for the quick connect.
4277
+ #
4278
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
4279
+ #
4280
+ # @example Request syntax with placeholder values
4281
+ #
4282
+ # resp = client.update_quick_connect_config({
4283
+ # instance_id: "InstanceId", # required
4284
+ # quick_connect_id: "QuickConnectId", # required
4285
+ # quick_connect_config: { # required
4286
+ # quick_connect_type: "USER", # required, accepts USER, QUEUE, PHONE_NUMBER
4287
+ # user_config: {
4288
+ # user_id: "UserId", # required
4289
+ # contact_flow_id: "ContactFlowId", # required
4290
+ # },
4291
+ # queue_config: {
4292
+ # queue_id: "QueueId", # required
4293
+ # contact_flow_id: "ContactFlowId", # required
4294
+ # },
4295
+ # phone_config: {
4296
+ # phone_number: "PhoneNumber", # required
4297
+ # },
4298
+ # },
4299
+ # })
4300
+ #
4301
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateQuickConnectConfig AWS API Documentation
4302
+ #
4303
+ # @overload update_quick_connect_config(params = {})
4304
+ # @param [Hash] params ({})
4305
+ def update_quick_connect_config(params = {}, options = {})
4306
+ req = build_request(:update_quick_connect_config, params)
4307
+ req.send_request(options)
4308
+ end
4309
+
4310
+ # This API is in preview release for Amazon Connect and is subject to
4311
+ # change.
4312
+ #
4313
+ # Updates the name and description of a quick connect. The request
4314
+ # accepts the following data in JSON format. At least Name or
4315
+ # Description must be provided.
4316
+ #
4317
+ # @option params [required, String] :instance_id
4318
+ # The identifier of the Amazon Connect instance.
4319
+ #
4320
+ # @option params [required, String] :quick_connect_id
4321
+ # The identifier for the quick connect.
4322
+ #
4323
+ # @option params [String] :name
4324
+ # The name of the quick connect.
4325
+ #
4326
+ # @option params [String] :description
4327
+ # The description of the quick connect.
4328
+ #
4329
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
4330
+ #
4331
+ # @example Request syntax with placeholder values
4332
+ #
4333
+ # resp = client.update_quick_connect_name({
4334
+ # instance_id: "InstanceId", # required
4335
+ # quick_connect_id: "QuickConnectId", # required
4336
+ # name: "QuickConnectName",
4337
+ # description: "QuickConnectDescription",
4338
+ # })
4339
+ #
4340
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateQuickConnectName AWS API Documentation
4341
+ #
4342
+ # @overload update_quick_connect_name(params = {})
4343
+ # @param [Hash] params ({})
4344
+ def update_quick_connect_name(params = {}, options = {})
4345
+ req = build_request(:update_quick_connect_name, params)
4346
+ req.send_request(options)
4347
+ end
4348
+
4017
4349
  # Updates the channels that agents can handle in the Contact Control
4018
4350
  # Panel (CCP) for a routing profile.
4019
4351
  #
@@ -4417,7 +4749,7 @@ module Aws::Connect
4417
4749
  params: params,
4418
4750
  config: config)
4419
4751
  context[:gem_name] = 'aws-sdk-connect'
4420
- context[:gem_version] = '1.37.0'
4752
+ context[:gem_version] = '1.38.0'
4421
4753
  Seahorse::Client::Request.new(handlers, context)
4422
4754
  end
4423
4755