aws-sdk-connect 1.103.0 → 1.105.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: 345e3661b52319a2f58da0fe210513955c939c0b636838224cbacc19a78a8c6a
4
- data.tar.gz: '09197b278767f1428d5c95360572429a304df0208c4a595278efe98cc74048c2'
3
+ metadata.gz: 35f1320b25d3f37c8f0ec0ba5e54be83aa90c901b0854b28c13b8bfed7584c98
4
+ data.tar.gz: cc9c43bf9f6c218cec734cc131f5382aa64a01a9f7cab548722840cc041dff6a
5
5
  SHA512:
6
- metadata.gz: 9a9f52ef6686be9bf6d0df4e86ecf5993fb70ae45e77e1b9317d037309d624d954f5a4e45ecc02b3f13ce84d0717d7ba09e9d2876c226b3f5678ef8a686525f9
7
- data.tar.gz: c9314ec7cdaece306262841902959b1352e3f32873c96b008fc7090d4eac7f9c16b12c0cbd438577e6af917f16c7ce77d6d0c05ac115e348b21c398e40d4fbcc
6
+ metadata.gz: 9b9671de4808111a109ca8eee27794507ef35593406880f43ffc698dcf214e877c364ea935644b66226affb8880ed6938f9f0504844fa223e9fb3698838a8b1f
7
+ data.tar.gz: 1a59113c915d2c8080d0f02884cc74e7cfcd24cedd10440537ad031f3763fcbc8d0d5cbb9ea0e15a9805715e9168866876913f0ceb76b857d79fdc1d8a73aa49
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.105.0 (2023-05-04)
5
+ ------------------
6
+
7
+ * Feature - Remove unused InvalidParameterException from CreateParticipant API
8
+
9
+ 1.104.0 (2023-05-02)
10
+ ------------------
11
+
12
+ * Feature - Amazon Connect Service Rules API update: Added OnContactEvaluationSubmit event source to support user configuring evaluation form rules.
13
+
4
14
  1.103.0 (2023-04-25)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.103.0
1
+ 1.105.0
@@ -1144,8 +1144,7 @@ module Aws::Connect
1144
1144
 
1145
1145
  # Creates an evaluation form in the specified Amazon Connect instance.
1146
1146
  # The form can be used to define questions related to agent performance,
1147
- # and create sections to organize such questions. An evaluation form
1148
- # must have a unique title within an instance. Question and section
1147
+ # and create sections to organize such questions. Question and section
1149
1148
  # identifiers cannot be duplicated within the same evaluation form.
1150
1149
  #
1151
1150
  # @option params [required, String] :instance_id
@@ -1157,7 +1156,7 @@ module Aws::Connect
1157
1156
  # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
1158
1157
  #
1159
1158
  # @option params [required, String] :title
1160
- # A unique title of the evaluation form.
1159
+ # A title of the evaluation form.
1161
1160
  #
1162
1161
  # @option params [String] :description
1163
1162
  # The description of the evaluation form.
@@ -1867,7 +1866,7 @@ module Aws::Connect
1867
1866
  # instance_id: "InstanceId", # required
1868
1867
  # name: "RuleName", # required
1869
1868
  # trigger_event_source: { # required
1870
- # event_source_name: "OnPostCallAnalysisAvailable", # required, accepts OnPostCallAnalysisAvailable, OnRealTimeCallAnalysisAvailable, OnPostChatAnalysisAvailable, OnZendeskTicketCreate, OnZendeskTicketStatusUpdate, OnSalesforceCaseCreate
1869
+ # event_source_name: "OnPostCallAnalysisAvailable", # required, accepts OnPostCallAnalysisAvailable, OnRealTimeCallAnalysisAvailable, OnPostChatAnalysisAvailable, OnZendeskTicketCreate, OnZendeskTicketStatusUpdate, OnSalesforceCaseCreate, OnContactEvaluationSubmit
1871
1870
  # integration_association_id: "IntegrationAssociationId",
1872
1871
  # },
1873
1872
  # function: "RuleFunction", # required
@@ -3910,7 +3909,7 @@ module Aws::Connect
3910
3909
  # resp.rule.name #=> String
3911
3910
  # resp.rule.rule_id #=> String
3912
3911
  # resp.rule.rule_arn #=> String
3913
- # resp.rule.trigger_event_source.event_source_name #=> String, one of "OnPostCallAnalysisAvailable", "OnRealTimeCallAnalysisAvailable", "OnPostChatAnalysisAvailable", "OnZendeskTicketCreate", "OnZendeskTicketStatusUpdate", "OnSalesforceCaseCreate"
3912
+ # resp.rule.trigger_event_source.event_source_name #=> String, one of "OnPostCallAnalysisAvailable", "OnRealTimeCallAnalysisAvailable", "OnPostChatAnalysisAvailable", "OnZendeskTicketCreate", "OnZendeskTicketStatusUpdate", "OnSalesforceCaseCreate", "OnContactEvaluationSubmit"
3914
3913
  # resp.rule.trigger_event_source.integration_association_id #=> String
3915
3914
  # resp.rule.function #=> String
3916
3915
  # resp.rule.actions #=> Array
@@ -7437,7 +7436,7 @@ module Aws::Connect
7437
7436
  # resp = client.list_rules({
7438
7437
  # instance_id: "InstanceId", # required
7439
7438
  # publish_status: "DRAFT", # accepts DRAFT, PUBLISHED
7440
- # event_source_name: "OnPostCallAnalysisAvailable", # accepts OnPostCallAnalysisAvailable, OnRealTimeCallAnalysisAvailable, OnPostChatAnalysisAvailable, OnZendeskTicketCreate, OnZendeskTicketStatusUpdate, OnSalesforceCaseCreate
7439
+ # event_source_name: "OnPostCallAnalysisAvailable", # accepts OnPostCallAnalysisAvailable, OnRealTimeCallAnalysisAvailable, OnPostChatAnalysisAvailable, OnZendeskTicketCreate, OnZendeskTicketStatusUpdate, OnSalesforceCaseCreate, OnContactEvaluationSubmit
7441
7440
  # max_results: 1,
7442
7441
  # next_token: "NextToken",
7443
7442
  # })
@@ -7448,7 +7447,7 @@ module Aws::Connect
7448
7447
  # resp.rule_summary_list[0].name #=> String
7449
7448
  # resp.rule_summary_list[0].rule_id #=> String
7450
7449
  # resp.rule_summary_list[0].rule_arn #=> String
7451
- # resp.rule_summary_list[0].event_source_name #=> String, one of "OnPostCallAnalysisAvailable", "OnRealTimeCallAnalysisAvailable", "OnPostChatAnalysisAvailable", "OnZendeskTicketCreate", "OnZendeskTicketStatusUpdate", "OnSalesforceCaseCreate"
7450
+ # resp.rule_summary_list[0].event_source_name #=> String, one of "OnPostCallAnalysisAvailable", "OnRealTimeCallAnalysisAvailable", "OnPostChatAnalysisAvailable", "OnZendeskTicketCreate", "OnZendeskTicketStatusUpdate", "OnSalesforceCaseCreate", "OnContactEvaluationSubmit"
7452
7451
  # resp.rule_summary_list[0].publish_status #=> String, one of "DRAFT", "PUBLISHED"
7453
7452
  # resp.rule_summary_list[0].action_summaries #=> Array
7454
7453
  # resp.rule_summary_list[0].action_summaries[0].action_type #=> String, one of "CREATE_TASK", "ASSIGN_CONTACT_CATEGORY", "GENERATE_EVENTBRIDGE_EVENT", "SEND_NOTIFICATION"
@@ -10326,8 +10325,7 @@ module Aws::Connect
10326
10325
  end
10327
10326
 
10328
10327
  # Updates details about a specific evaluation form version in the
10329
- # specified Amazon Connect instance. An evaluation form must have a
10330
- # unique title within an instance. Question and section identifiers
10328
+ # specified Amazon Connect instance. Question and section identifiers
10331
10329
  # cannot be duplicated within the same evaluation form.
10332
10330
  #
10333
10331
  # This operation does not support partial updates. Instead it does a
@@ -10351,7 +10349,7 @@ module Aws::Connect
10351
10349
  # A flag indicating whether the operation must create a new version.
10352
10350
  #
10353
10351
  # @option params [required, String] :title
10354
- # A unique title of the evaluation form.
10352
+ # A title of the evaluation form.
10355
10353
  #
10356
10354
  # @option params [String] :description
10357
10355
  # The description of the evaluation form.
@@ -11885,7 +11883,7 @@ module Aws::Connect
11885
11883
  params: params,
11886
11884
  config: config)
11887
11885
  context[:gem_name] = 'aws-sdk-connect'
11888
- context[:gem_version] = '1.103.0'
11886
+ context[:gem_version] = '1.105.0'
11889
11887
  Seahorse::Client::Request.new(handlers, context)
11890
11888
  end
11891
11889
 
@@ -4107,7 +4107,6 @@ module Aws::Connect
4107
4107
  o.input = Shapes::ShapeRef.new(shape: CreateParticipantRequest)
4108
4108
  o.output = Shapes::ShapeRef.new(shape: CreateParticipantResponse)
4109
4109
  o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
4110
- o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
4111
4110
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
4112
4111
  o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
4113
4112
  o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
@@ -1441,7 +1441,7 @@ module Aws::Connect
1441
1441
  # @return [String]
1442
1442
  #
1443
1443
  # @!attribute [rw] title
1444
- # A unique title of the evaluation form.
1444
+ # A title of the evaluation form.
1445
1445
  # @return [String]
1446
1446
  #
1447
1447
  # @!attribute [rw] description
@@ -4428,7 +4428,7 @@ module Aws::Connect
4428
4428
  # @return [String]
4429
4429
  #
4430
4430
  # @!attribute [rw] title
4431
- # A unique title of the evaluation form.
4431
+ # A title of the evaluation form.
4432
4432
  # @return [String]
4433
4433
  #
4434
4434
  # @!attribute [rw] description
@@ -4509,7 +4509,7 @@ module Aws::Connect
4509
4509
  # @return [String]
4510
4510
  #
4511
4511
  # @!attribute [rw] title
4512
- # A unique title of the evaluation form.
4512
+ # A title of the evaluation form.
4513
4513
  # @return [String]
4514
4514
  #
4515
4515
  # @!attribute [rw] description
@@ -4901,7 +4901,7 @@ module Aws::Connect
4901
4901
  # @return [String]
4902
4902
  #
4903
4903
  # @!attribute [rw] title
4904
- # A unique title of the evaluation form.
4904
+ # A title of the evaluation form.
4905
4905
  # @return [String]
4906
4906
  #
4907
4907
  # @!attribute [rw] created_time
@@ -5095,7 +5095,7 @@ module Aws::Connect
5095
5095
  # @return [String]
5096
5096
  #
5097
5097
  # @!attribute [rw] evaluation_form_title
5098
- # A unique title of the evaluation form.
5098
+ # A title of the evaluation form.
5099
5099
  # @return [String]
5100
5100
  #
5101
5101
  # @!attribute [rw] evaluation_form_id
@@ -9358,10 +9358,10 @@ module Aws::Connect
9358
9358
  # `AGENT_INTERACTION_DURATION`, `CUSTOMER_HOLD_TIME` have a minimum
9359
9359
  # value of 0 and maximum value of 28800.
9360
9360
  #
9361
- # * Percantages have a minimum value of 0 and maximum value of 100.
9361
+ # * Percentages have a minimum value of 0 and maximum value of 100.
9362
9362
  #
9363
9363
  # * `NUMBER_OF_INTERRUPTIONS` has a minimum value of 0 and maximum value
9364
- # of 100.
9364
+ # of 1000.
9365
9365
  #
9366
9366
  # @!attribute [rw] label
9367
9367
  # The property label of the automation.
@@ -11567,7 +11567,7 @@ module Aws::Connect
11567
11567
  # @return [String]
11568
11568
  #
11569
11569
  # @!attribute [rw] option_ref_id
11570
- # The identifier of the answer option tha
11570
+ # The identifier of the answer option.
11571
11571
  # @return [String]
11572
11572
  #
11573
11573
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SingleSelectQuestionRuleCategoryAutomation AWS API Documentation
@@ -13258,7 +13258,7 @@ module Aws::Connect
13258
13258
  # @return [Boolean]
13259
13259
  #
13260
13260
  # @!attribute [rw] title
13261
- # A unique title of the evaluation form.
13261
+ # A title of the evaluation form.
13262
13262
  # @return [String]
13263
13263
  #
13264
13264
  # @!attribute [rw] description
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-connect/customizations'
52
52
  # @!group service
53
53
  module Aws::Connect
54
54
 
55
- GEM_VERSION = '1.103.0'
55
+ GEM_VERSION = '1.105.0'
56
56
 
57
57
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-connect
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.103.0
4
+ version: 1.105.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: 2023-04-25 00:00:00.000000000 Z
11
+ date: 2023-05-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core