aws-sdk-connect 1.42.0 → 1.43.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: 30b9a05f09955a7db6ceb2264084d8594df298d56dee69d1f76b086deeca6c16
4
- data.tar.gz: 63de97588e7e87f883e41c9bec5a38dfa59dda48af21f24fbccb423977c5c4f1
3
+ metadata.gz: 774b3bc00f60adb07b61f77c87df413219f2a4e574362aac34a564b35b31d796
4
+ data.tar.gz: ccf22d050d94253e291558a6a360b0b21fb7a2603dac503ac19d8f08aec54af4
5
5
  SHA512:
6
- metadata.gz: a8c306bcdf1cdee27a0793130e602fc67197d61540c47727064bd878c4ee6bbbeb45a624d08ae5b6febf3a8433da76857c56376bb969f10f373a54a9a6985487
7
- data.tar.gz: '024810297bf7d1b56414a50ec4d55eb72774f17a0d83b195f8f79047ea54371e99021b8351f54532086a3b742b43e673e4523c54aafbd11f6786d184bfc6bc86'
6
+ metadata.gz: 65281b39977fa23daab45adba9346085f9d204f7d592858880d490a68573b2f420da244fd26873a6ed590388858b2438730807997919e8107a662ff0afb5691d
7
+ data.tar.gz: 4c678036fee3e09e560b4d77f7148f6db686ad0b112c3accd4fd4aa4eff317d942472240049cb1fe711b3c371fedad46f74a5b8ab03a7c6caece8d3b4b1a14d3
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.43.0 (2021-04-28)
5
+ ------------------
6
+
7
+ * Feature - Updated max number of tags that can be attached from 200 to 50. MaxContacts is now an optional parameter for the UpdateQueueMaxContact API.
8
+
4
9
  1.42.0 (2021-03-10)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.42.0
1
+ 1.43.0
@@ -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.42.0'
51
+ GEM_VERSION = '1.43.0'
52
52
 
53
53
  end
@@ -4587,7 +4587,7 @@ module Aws::Connect
4587
4587
  # @option params [required, String] :queue_id
4588
4588
  # The identifier for the queue.
4589
4589
  #
4590
- # @option params [required, Integer] :max_contacts
4590
+ # @option params [Integer] :max_contacts
4591
4591
  # The maximum number of contacts that can be in the queue before it is
4592
4592
  # considered full.
4593
4593
  #
@@ -4598,7 +4598,7 @@ module Aws::Connect
4598
4598
  # resp = client.update_queue_max_contacts({
4599
4599
  # instance_id: "InstanceId", # required
4600
4600
  # queue_id: "QueueId", # required
4601
- # max_contacts: 1, # required
4601
+ # max_contacts: 1,
4602
4602
  # })
4603
4603
  #
4604
4604
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateQueueMaxContacts AWS API Documentation
@@ -5207,7 +5207,7 @@ module Aws::Connect
5207
5207
  params: params,
5208
5208
  config: config)
5209
5209
  context[:gem_name] = 'aws-sdk-connect'
5210
- context[:gem_version] = '1.42.0'
5210
+ context[:gem_version] = '1.43.0'
5211
5211
  Seahorse::Client::Request.new(handlers, context)
5212
5212
  end
5213
5213
 
@@ -1511,7 +1511,7 @@ module Aws::Connect
1511
1511
 
1512
1512
  UpdateQueueMaxContactsRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location: "uri", location_name: "InstanceId"))
1513
1513
  UpdateQueueMaxContactsRequest.add_member(:queue_id, Shapes::ShapeRef.new(shape: QueueId, required: true, location: "uri", location_name: "QueueId"))
1514
- UpdateQueueMaxContactsRequest.add_member(:max_contacts, Shapes::ShapeRef.new(shape: QueueMaxContacts, required: true, location_name: "MaxContacts", metadata: {"box"=>true}))
1514
+ UpdateQueueMaxContactsRequest.add_member(:max_contacts, Shapes::ShapeRef.new(shape: QueueMaxContacts, location_name: "MaxContacts", metadata: {"box"=>true}))
1515
1515
  UpdateQueueMaxContactsRequest.struct_class = Types::UpdateQueueMaxContactsRequest
1516
1516
 
1517
1517
  UpdateQueueNameRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location: "uri", location_name: "InstanceId"))
@@ -6282,7 +6282,7 @@ module Aws::Connect
6282
6282
  # {
6283
6283
  # instance_id: "InstanceId", # required
6284
6284
  # queue_id: "QueueId", # required
6285
- # max_contacts: 1, # required
6285
+ # max_contacts: 1,
6286
6286
  # }
6287
6287
  #
6288
6288
  # @!attribute [rw] instance_id
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.42.0
4
+ version: 1.43.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-03-10 00:00:00.000000000 Z
11
+ date: 2021-04-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -66,8 +66,8 @@ homepage: https://github.com/aws/aws-sdk-ruby
66
66
  licenses:
67
67
  - Apache-2.0
68
68
  metadata:
69
- source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/master/gems/aws-sdk-connect
70
- changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/master/gems/aws-sdk-connect/CHANGELOG.md
69
+ source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-connect
70
+ changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-connect/CHANGELOG.md
71
71
  post_install_message:
72
72
  rdoc_options: []
73
73
  require_paths:
@@ -83,8 +83,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
83
83
  - !ruby/object:Gem::Version
84
84
  version: '0'
85
85
  requirements: []
86
- rubyforge_project:
87
- rubygems_version: 2.7.6.2
86
+ rubygems_version: 3.1.6
88
87
  signing_key:
89
88
  specification_version: 4
90
89
  summary: AWS SDK for Ruby - Amazon Connect