aws-sdk-connect 1.76.0 → 1.78.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: 44b3dfb08baaeedf977b97035649bf0b7ff67bfb58165c81335917f86e35ee76
4
- data.tar.gz: c8ff00ac5734742298ac774b1efdc8a85a6abec54c1e8162bcb8f080d6dfea73
3
+ metadata.gz: f43e54437cf7ede667d1111cafdc5d3e7e6893d30d7180be002bf02f0ff2eb44
4
+ data.tar.gz: 336d406d38b9dd189147dfe5eba387fefdd2df4c0efaf973f9497d8d5f2d5fe7
5
5
  SHA512:
6
- metadata.gz: 63a1515aedf596446e1db2f73396a38c46336d4657274bdd31cae6036d6b778a9e6c2c99cd8257e0b7c9574bd7e6c63555cb6285b1d6740413151260017fd957
7
- data.tar.gz: bd81080b9e65d7a4495702d6963a0010f7493003c0d6720a28d8a86d60017bcd4285d07f497d013a55cf3d430d149d91103c30603e414936bfef5ee31bec959d
6
+ metadata.gz: 7e675e8020f385fb5f14942f06cfc72199a05d0d2adddde49143444f32a785d3dc83a232830a07da5f5b2b2fdb807a32fa53dffda1df05db4ef4e369ef45972a
7
+ data.tar.gz: 9ba2367cdccd99c817849ce896287a2cd1debb160235807cfc9ceea2aa59448b9b4bb360d1c436920987967b0678fa894351a7f2ae54001b5a34e4c49313e976
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.78.0 (2022-10-13)
5
+ ------------------
6
+
7
+ * Feature - This release adds support for a secondary email and a mobile number for Amazon Connect instance users.
8
+
9
+ 1.77.0 (2022-10-04)
10
+ ------------------
11
+
12
+ * Feature - Updated the CreateIntegrationAssociation API to support the CASES_DOMAIN IntegrationType.
13
+
4
14
  1.76.0 (2022-09-02)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.76.0
1
+ 1.78.0
@@ -1159,7 +1159,7 @@ module Aws::Connect
1159
1159
  #
1160
1160
  # resp = client.create_integration_association({
1161
1161
  # instance_id: "InstanceId", # required
1162
- # integration_type: "EVENT", # required, accepts EVENT, VOICE_ID, PINPOINT_APP, WISDOM_ASSISTANT, WISDOM_KNOWLEDGE_BASE
1162
+ # integration_type: "EVENT", # required, accepts EVENT, VOICE_ID, PINPOINT_APP, WISDOM_ASSISTANT, WISDOM_KNOWLEDGE_BASE, CASES_DOMAIN
1163
1163
  # integration_arn: "ARN", # required
1164
1164
  # source_application_url: "URI",
1165
1165
  # source_application_name: "SourceApplicationName",
@@ -1685,6 +1685,8 @@ module Aws::Connect
1685
1685
  # first_name: "AgentFirstName",
1686
1686
  # last_name: "AgentLastName",
1687
1687
  # email: "Email",
1688
+ # secondary_email: "Email",
1689
+ # mobile: "PhoneNumber",
1688
1690
  # },
1689
1691
  # phone_config: { # required
1690
1692
  # phone_type: "SOFT_PHONE", # required, accepts SOFT_PHONE, DESK_PHONE
@@ -2829,6 +2831,8 @@ module Aws::Connect
2829
2831
  # resp.user.identity_info.first_name #=> String
2830
2832
  # resp.user.identity_info.last_name #=> String
2831
2833
  # resp.user.identity_info.email #=> String
2834
+ # resp.user.identity_info.secondary_email #=> String
2835
+ # resp.user.identity_info.mobile #=> String
2832
2836
  # resp.user.phone_config.phone_type #=> String, one of "SOFT_PHONE", "DESK_PHONE"
2833
2837
  # resp.user.phone_config.auto_accept #=> Boolean
2834
2838
  # resp.user.phone_config.after_contact_work_time_limit #=> Integer
@@ -4668,7 +4672,7 @@ module Aws::Connect
4668
4672
  #
4669
4673
  # resp = client.list_integration_associations({
4670
4674
  # instance_id: "InstanceId", # required
4671
- # integration_type: "EVENT", # accepts EVENT, VOICE_ID, PINPOINT_APP, WISDOM_ASSISTANT, WISDOM_KNOWLEDGE_BASE
4675
+ # integration_type: "EVENT", # accepts EVENT, VOICE_ID, PINPOINT_APP, WISDOM_ASSISTANT, WISDOM_KNOWLEDGE_BASE, CASES_DOMAIN
4672
4676
  # next_token: "NextToken",
4673
4677
  # max_results: 1,
4674
4678
  # })
@@ -4679,7 +4683,7 @@ module Aws::Connect
4679
4683
  # resp.integration_association_summary_list[0].integration_association_id #=> String
4680
4684
  # resp.integration_association_summary_list[0].integration_association_arn #=> String
4681
4685
  # resp.integration_association_summary_list[0].instance_id #=> String
4682
- # resp.integration_association_summary_list[0].integration_type #=> String, one of "EVENT", "VOICE_ID", "PINPOINT_APP", "WISDOM_ASSISTANT", "WISDOM_KNOWLEDGE_BASE"
4686
+ # resp.integration_association_summary_list[0].integration_type #=> String, one of "EVENT", "VOICE_ID", "PINPOINT_APP", "WISDOM_ASSISTANT", "WISDOM_KNOWLEDGE_BASE", "CASES_DOMAIN"
4683
4687
  # resp.integration_association_summary_list[0].integration_arn #=> String
4684
4688
  # resp.integration_association_summary_list[0].source_application_url #=> String
4685
4689
  # resp.integration_association_summary_list[0].source_application_name #=> String
@@ -8438,6 +8442,8 @@ module Aws::Connect
8438
8442
  # first_name: "AgentFirstName",
8439
8443
  # last_name: "AgentLastName",
8440
8444
  # email: "Email",
8445
+ # secondary_email: "Email",
8446
+ # mobile: "PhoneNumber",
8441
8447
  # },
8442
8448
  # user_id: "UserId", # required
8443
8449
  # instance_id: "InstanceId", # required
@@ -8563,7 +8569,7 @@ module Aws::Connect
8563
8569
  params: params,
8564
8570
  config: config)
8565
8571
  context[:gem_name] = 'aws-sdk-connect'
8566
- context[:gem_version] = '1.76.0'
8572
+ context[:gem_version] = '1.78.0'
8567
8573
  Seahorse::Client::Request.new(handlers, context)
8568
8574
  end
8569
8575
 
@@ -2769,6 +2769,8 @@ module Aws::Connect
2769
2769
  UserIdentityInfo.add_member(:first_name, Shapes::ShapeRef.new(shape: AgentFirstName, location_name: "FirstName"))
2770
2770
  UserIdentityInfo.add_member(:last_name, Shapes::ShapeRef.new(shape: AgentLastName, location_name: "LastName"))
2771
2771
  UserIdentityInfo.add_member(:email, Shapes::ShapeRef.new(shape: Email, location_name: "Email"))
2772
+ UserIdentityInfo.add_member(:secondary_email, Shapes::ShapeRef.new(shape: Email, location_name: "SecondaryEmail"))
2773
+ UserIdentityInfo.add_member(:mobile, Shapes::ShapeRef.new(shape: PhoneNumber, location_name: "Mobile"))
2772
2774
  UserIdentityInfo.struct_class = Types::UserIdentityInfo
2773
2775
 
2774
2776
  UserIdentityInfoLite.add_member(:first_name, Shapes::ShapeRef.new(shape: AgentFirstName, location_name: "FirstName"))
@@ -1605,7 +1605,7 @@ module Aws::Connect
1605
1605
  #
1606
1606
  # {
1607
1607
  # instance_id: "InstanceId", # required
1608
- # integration_type: "EVENT", # required, accepts EVENT, VOICE_ID, PINPOINT_APP, WISDOM_ASSISTANT, WISDOM_KNOWLEDGE_BASE
1608
+ # integration_type: "EVENT", # required, accepts EVENT, VOICE_ID, PINPOINT_APP, WISDOM_ASSISTANT, WISDOM_KNOWLEDGE_BASE, CASES_DOMAIN
1609
1609
  # integration_arn: "ARN", # required
1610
1610
  # source_application_url: "URI",
1611
1611
  # source_application_name: "SourceApplicationName",
@@ -2282,6 +2282,8 @@ module Aws::Connect
2282
2282
  # first_name: "AgentFirstName",
2283
2283
  # last_name: "AgentLastName",
2284
2284
  # email: "Email",
2285
+ # secondary_email: "Email",
2286
+ # mobile: "PhoneNumber",
2285
2287
  # },
2286
2288
  # phone_config: { # required
2287
2289
  # phone_type: "SOFT_PHONE", # required, accepts SOFT_PHONE, DESK_PHONE
@@ -6470,7 +6472,7 @@ module Aws::Connect
6470
6472
  #
6471
6473
  # {
6472
6474
  # instance_id: "InstanceId", # required
6473
- # integration_type: "EVENT", # accepts EVENT, VOICE_ID, PINPOINT_APP, WISDOM_ASSISTANT, WISDOM_KNOWLEDGE_BASE
6475
+ # integration_type: "EVENT", # accepts EVENT, VOICE_ID, PINPOINT_APP, WISDOM_ASSISTANT, WISDOM_KNOWLEDGE_BASE, CASES_DOMAIN
6474
6476
  # next_token: "NextToken",
6475
6477
  # max_results: 1,
6476
6478
  # }
@@ -12230,6 +12232,8 @@ module Aws::Connect
12230
12232
  # first_name: "AgentFirstName",
12231
12233
  # last_name: "AgentLastName",
12232
12234
  # email: "Email",
12235
+ # secondary_email: "Email",
12236
+ # mobile: "PhoneNumber",
12233
12237
  # },
12234
12238
  # user_id: "UserId", # required
12235
12239
  # instance_id: "InstanceId", # required
@@ -12567,6 +12571,8 @@ module Aws::Connect
12567
12571
  # first_name: "AgentFirstName",
12568
12572
  # last_name: "AgentLastName",
12569
12573
  # email: "Email",
12574
+ # secondary_email: "Email",
12575
+ # mobile: "PhoneNumber",
12570
12576
  # }
12571
12577
  #
12572
12578
  # @!attribute [rw] first_name
@@ -12584,12 +12590,25 @@ module Aws::Connect
12584
12590
  # include this parameter, an error is returned.
12585
12591
  # @return [String]
12586
12592
  #
12593
+ # @!attribute [rw] secondary_email
12594
+ # The user's secondary email address. If you provide a secondary
12595
+ # email, the user receives email notifications -- other than password
12596
+ # reset notifications -- to this email address instead of to their
12597
+ # primary email address.
12598
+ # @return [String]
12599
+ #
12600
+ # @!attribute [rw] mobile
12601
+ # The user's mobile number.
12602
+ # @return [String]
12603
+ #
12587
12604
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UserIdentityInfo AWS API Documentation
12588
12605
  #
12589
12606
  class UserIdentityInfo < Struct.new(
12590
12607
  :first_name,
12591
12608
  :last_name,
12592
- :email)
12609
+ :email,
12610
+ :secondary_email,
12611
+ :mobile)
12593
12612
  SENSITIVE = []
12594
12613
  include Aws::Structure
12595
12614
  end
@@ -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.76.0'
51
+ GEM_VERSION = '1.78.0'
52
52
 
53
53
  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.76.0
4
+ version: 1.78.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: 2022-09-02 00:00:00.000000000 Z
11
+ date: 2022-10-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core