aws-sdk-connect 1.104.0 → 1.105.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: 7a1230755f132d62a8bfb121de002740354a1408c8175b339d929cc657bc8657
4
- data.tar.gz: 510ba1f2ac649e2ed916152b916d24f628918a4a5e68706837c5cd437172d7ca
3
+ metadata.gz: 35f1320b25d3f37c8f0ec0ba5e54be83aa90c901b0854b28c13b8bfed7584c98
4
+ data.tar.gz: cc9c43bf9f6c218cec734cc131f5382aa64a01a9f7cab548722840cc041dff6a
5
5
  SHA512:
6
- metadata.gz: 118491b63de52609da0e54bd6bd983a96334b3a781bae4f7421f26f359ac5a624bfc84082da4d333a1313df5a26f67697934c165ff514d6ab22c728badabd567
7
- data.tar.gz: e639708d783e78cb6313f9f5f8837c17ac99d3424504d9cc84a2699dbba09c2c69f8db0fbee9ff64e51ab37a70c4d52cdaaad5ed78c00a21254628967f0807a2
6
+ metadata.gz: 9b9671de4808111a109ca8eee27794507ef35593406880f43ffc698dcf214e877c364ea935644b66226affb8880ed6938f9f0504844fa223e9fb3698838a8b1f
7
+ data.tar.gz: 1a59113c915d2c8080d0f02884cc74e7cfcd24cedd10440537ad031f3763fcbc8d0d5cbb9ea0e15a9805715e9168866876913f0ceb76b857d79fdc1d8a73aa49
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
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
+
4
9
  1.104.0 (2023-05-02)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.104.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.
@@ -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.104.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.104.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.104.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-05-02 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