aws-sdk-connect 1.136.0 → 1.138.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 +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-connect/client.rb +31 -4
- data/lib/aws-sdk-connect/client_api.rb +12 -0
- data/lib/aws-sdk-connect/types.rb +42 -2
- data/lib/aws-sdk-connect.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 77bd7f682797d53f82daa426e55505df669c165bf43195a7dff9aacb5982ee52
|
4
|
+
data.tar.gz: 496a728204a1ecf0c03bed4107044a81e2f4e01764791dddd5103b065dcedec1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a92b5ce913cedc4311c9e3760cc1f5f40cfe048faf9aed9f37ea647ae5a15c8e9f3e407d2a4e3d2d0c011fca963c0c9e1f0a517e71cf5db2931ee0c8c049be62
|
7
|
+
data.tar.gz: 41038910ff26e6d0ddeaa3082420b2881c959ff0e8cae77d70a879d101346a69c77c0f6edd185f029df55b5fbe99872d8188ba1ff63b5cb0a970852356fc8e03
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.138.0 (2023-11-14)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Introducing SegmentAttributes parameter for StartChatContact API
|
8
|
+
|
9
|
+
1.137.0 (2023-11-09)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - This release adds the ability to integrate customer lambda functions with Connect attachments for scanning and updates the ListIntegrationAssociations API to support filtering on IntegrationArn.
|
13
|
+
|
4
14
|
1.136.0 (2023-11-08)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.138.0
|
@@ -1700,7 +1700,7 @@ module Aws::Connect
|
|
1700
1700
|
#
|
1701
1701
|
# resp = client.create_integration_association({
|
1702
1702
|
# instance_id: "InstanceId", # required
|
1703
|
-
# integration_type: "EVENT", # required, accepts EVENT, VOICE_ID, PINPOINT_APP, WISDOM_ASSISTANT, WISDOM_KNOWLEDGE_BASE, CASES_DOMAIN, APPLICATION
|
1703
|
+
# integration_type: "EVENT", # required, accepts EVENT, VOICE_ID, PINPOINT_APP, WISDOM_ASSISTANT, WISDOM_KNOWLEDGE_BASE, CASES_DOMAIN, APPLICATION, FILE_SCANNER
|
1704
1704
|
# integration_arn: "ARN", # required
|
1705
1705
|
# source_application_url: "URI",
|
1706
1706
|
# source_application_name: "SourceApplicationName",
|
@@ -8044,6 +8044,9 @@ module Aws::Connect
|
|
8044
8044
|
# @option params [Integer] :max_results
|
8045
8045
|
# The maximum number of results to return per page.
|
8046
8046
|
#
|
8047
|
+
# @option params [String] :integration_arn
|
8048
|
+
# The Amazon Resource Name (ARN) of the integration.
|
8049
|
+
#
|
8047
8050
|
# @return [Types::ListIntegrationAssociationsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
8048
8051
|
#
|
8049
8052
|
# * {Types::ListIntegrationAssociationsResponse#integration_association_summary_list #integration_association_summary_list} => Array<Types::IntegrationAssociationSummary>
|
@@ -8055,9 +8058,10 @@ module Aws::Connect
|
|
8055
8058
|
#
|
8056
8059
|
# resp = client.list_integration_associations({
|
8057
8060
|
# instance_id: "InstanceId", # required
|
8058
|
-
# integration_type: "EVENT", # accepts EVENT, VOICE_ID, PINPOINT_APP, WISDOM_ASSISTANT, WISDOM_KNOWLEDGE_BASE, CASES_DOMAIN, APPLICATION
|
8061
|
+
# integration_type: "EVENT", # accepts EVENT, VOICE_ID, PINPOINT_APP, WISDOM_ASSISTANT, WISDOM_KNOWLEDGE_BASE, CASES_DOMAIN, APPLICATION, FILE_SCANNER
|
8059
8062
|
# next_token: "NextToken",
|
8060
8063
|
# max_results: 1,
|
8064
|
+
# integration_arn: "ARN",
|
8061
8065
|
# })
|
8062
8066
|
#
|
8063
8067
|
# @example Response structure
|
@@ -8066,7 +8070,7 @@ module Aws::Connect
|
|
8066
8070
|
# resp.integration_association_summary_list[0].integration_association_id #=> String
|
8067
8071
|
# resp.integration_association_summary_list[0].integration_association_arn #=> String
|
8068
8072
|
# resp.integration_association_summary_list[0].instance_id #=> String
|
8069
|
-
# resp.integration_association_summary_list[0].integration_type #=> String, one of "EVENT", "VOICE_ID", "PINPOINT_APP", "WISDOM_ASSISTANT", "WISDOM_KNOWLEDGE_BASE", "CASES_DOMAIN", "APPLICATION"
|
8073
|
+
# resp.integration_association_summary_list[0].integration_type #=> String, one of "EVENT", "VOICE_ID", "PINPOINT_APP", "WISDOM_ASSISTANT", "WISDOM_KNOWLEDGE_BASE", "CASES_DOMAIN", "APPLICATION", "FILE_SCANNER"
|
8070
8074
|
# resp.integration_association_summary_list[0].integration_arn #=> String
|
8071
8075
|
# resp.integration_association_summary_list[0].source_application_url #=> String
|
8072
8076
|
# resp.integration_association_summary_list[0].source_application_name #=> String
|
@@ -10967,6 +10971,24 @@ module Aws::Connect
|
|
10967
10971
|
#
|
10968
10972
|
# </note>
|
10969
10973
|
#
|
10974
|
+
# @option params [Hash<String,Types::SegmentAttributeValue>] :segment_attributes
|
10975
|
+
# A set of system defined key-value pairs stored on individual contact
|
10976
|
+
# segments using an attribute map. The attributes are standard Amazon
|
10977
|
+
# Connect attributes. They can be accessed in flows.
|
10978
|
+
#
|
10979
|
+
# Attribute keys can include only alphanumeric, -, and \_.
|
10980
|
+
#
|
10981
|
+
# This field can be used to show channel subtype, such as
|
10982
|
+
# `connect:Guide`.
|
10983
|
+
#
|
10984
|
+
# <note markdown="1"> The types `application/vnd.amazonaws.connect.message.interactive` and
|
10985
|
+
# `application/vnd.amazonaws.connect.message.interactive.response` must
|
10986
|
+
# be present in the SupportedMessagingContentTypes field of this API in
|
10987
|
+
# order to set `SegmentAttributes` as \\\{` "connect:Subtype":
|
10988
|
+
# \{"valueString" : "connect:Guide" \}\}`.
|
10989
|
+
#
|
10990
|
+
# </note>
|
10991
|
+
#
|
10970
10992
|
# @return [Types::StartChatContactResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
10971
10993
|
#
|
10972
10994
|
# * {Types::StartChatContactResponse#contact_id #contact_id} => String
|
@@ -10997,6 +11019,11 @@ module Aws::Connect
|
|
10997
11019
|
# source_contact_id: "ContactId",
|
10998
11020
|
# },
|
10999
11021
|
# related_contact_id: "ContactId",
|
11022
|
+
# segment_attributes: {
|
11023
|
+
# "SegmentAttributeName" => {
|
11024
|
+
# value_string: "SegmentAttributeValueString",
|
11025
|
+
# },
|
11026
|
+
# },
|
11000
11027
|
# })
|
11001
11028
|
#
|
11002
11029
|
# @example Response structure
|
@@ -14302,7 +14329,7 @@ module Aws::Connect
|
|
14302
14329
|
params: params,
|
14303
14330
|
config: config)
|
14304
14331
|
context[:gem_name] = 'aws-sdk-connect'
|
14305
|
-
context[:gem_version] = '1.
|
14332
|
+
context[:gem_version] = '1.138.0'
|
14306
14333
|
Seahorse::Client::Request.new(handlers, context)
|
14307
14334
|
end
|
14308
14335
|
|
@@ -797,6 +797,10 @@ module Aws::Connect
|
|
797
797
|
SecurityProfilesSearchFilter = Shapes::StructureShape.new(name: 'SecurityProfilesSearchFilter')
|
798
798
|
SecurityProfilesSearchSummaryList = Shapes::ListShape.new(name: 'SecurityProfilesSearchSummaryList')
|
799
799
|
SecurityToken = Shapes::StringShape.new(name: 'SecurityToken')
|
800
|
+
SegmentAttributeName = Shapes::StringShape.new(name: 'SegmentAttributeName')
|
801
|
+
SegmentAttributeValue = Shapes::StructureShape.new(name: 'SegmentAttributeValue')
|
802
|
+
SegmentAttributeValueString = Shapes::StringShape.new(name: 'SegmentAttributeValueString')
|
803
|
+
SegmentAttributes = Shapes::MapShape.new(name: 'SegmentAttributes')
|
800
804
|
SendNotificationActionDefinition = Shapes::StructureShape.new(name: 'SendNotificationActionDefinition')
|
801
805
|
ServiceQuotaExceededException = Shapes::StructureShape.new(name: 'ServiceQuotaExceededException')
|
802
806
|
SignInConfig = Shapes::StructureShape.new(name: 'SignInConfig')
|
@@ -2758,6 +2762,7 @@ module Aws::Connect
|
|
2758
2762
|
ListIntegrationAssociationsRequest.add_member(:integration_type, Shapes::ShapeRef.new(shape: IntegrationType, location: "querystring", location_name: "integrationType"))
|
2759
2763
|
ListIntegrationAssociationsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location: "querystring", location_name: "nextToken"))
|
2760
2764
|
ListIntegrationAssociationsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResult100, location: "querystring", location_name: "maxResults", metadata: {"box"=>true}))
|
2765
|
+
ListIntegrationAssociationsRequest.add_member(:integration_arn, Shapes::ShapeRef.new(shape: ARN, location: "querystring", location_name: "integrationArn"))
|
2761
2766
|
ListIntegrationAssociationsRequest.struct_class = Types::ListIntegrationAssociationsRequest
|
2762
2767
|
|
2763
2768
|
ListIntegrationAssociationsResponse.add_member(:integration_association_summary_list, Shapes::ShapeRef.new(shape: IntegrationAssociationSummaryList, location_name: "IntegrationAssociationSummaryList"))
|
@@ -3643,6 +3648,12 @@ module Aws::Connect
|
|
3643
3648
|
|
3644
3649
|
SecurityProfilesSearchSummaryList.member = Shapes::ShapeRef.new(shape: SecurityProfileSearchSummary)
|
3645
3650
|
|
3651
|
+
SegmentAttributeValue.add_member(:value_string, Shapes::ShapeRef.new(shape: SegmentAttributeValueString, location_name: "ValueString"))
|
3652
|
+
SegmentAttributeValue.struct_class = Types::SegmentAttributeValue
|
3653
|
+
|
3654
|
+
SegmentAttributes.key = Shapes::ShapeRef.new(shape: SegmentAttributeName)
|
3655
|
+
SegmentAttributes.value = Shapes::ShapeRef.new(shape: SegmentAttributeValue)
|
3656
|
+
|
3646
3657
|
SendNotificationActionDefinition.add_member(:delivery_method, Shapes::ShapeRef.new(shape: NotificationDeliveryType, required: true, location_name: "DeliveryMethod"))
|
3647
3658
|
SendNotificationActionDefinition.add_member(:subject, Shapes::ShapeRef.new(shape: Subject, location_name: "Subject"))
|
3648
3659
|
SendNotificationActionDefinition.add_member(:content, Shapes::ShapeRef.new(shape: Content, required: true, location_name: "Content"))
|
@@ -3679,6 +3690,7 @@ module Aws::Connect
|
|
3679
3690
|
StartChatContactRequest.add_member(:supported_messaging_content_types, Shapes::ShapeRef.new(shape: SupportedMessagingContentTypes, location_name: "SupportedMessagingContentTypes"))
|
3680
3691
|
StartChatContactRequest.add_member(:persistent_chat, Shapes::ShapeRef.new(shape: PersistentChat, location_name: "PersistentChat"))
|
3681
3692
|
StartChatContactRequest.add_member(:related_contact_id, Shapes::ShapeRef.new(shape: ContactId, location_name: "RelatedContactId"))
|
3693
|
+
StartChatContactRequest.add_member(:segment_attributes, Shapes::ShapeRef.new(shape: SegmentAttributes, location_name: "SegmentAttributes"))
|
3682
3694
|
StartChatContactRequest.struct_class = Types::StartChatContactRequest
|
3683
3695
|
|
3684
3696
|
StartChatContactResponse.add_member(:contact_id, Shapes::ShapeRef.new(shape: ContactId, location_name: "ContactId"))
|
@@ -9394,13 +9394,18 @@ module Aws::Connect
|
|
9394
9394
|
# The maximum number of results to return per page.
|
9395
9395
|
# @return [Integer]
|
9396
9396
|
#
|
9397
|
+
# @!attribute [rw] integration_arn
|
9398
|
+
# The Amazon Resource Name (ARN) of the integration.
|
9399
|
+
# @return [String]
|
9400
|
+
#
|
9397
9401
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListIntegrationAssociationsRequest AWS API Documentation
|
9398
9402
|
#
|
9399
9403
|
class ListIntegrationAssociationsRequest < Struct.new(
|
9400
9404
|
:instance_id,
|
9401
9405
|
:integration_type,
|
9402
9406
|
:next_token,
|
9403
|
-
:max_results
|
9407
|
+
:max_results,
|
9408
|
+
:integration_arn)
|
9404
9409
|
SENSITIVE = []
|
9405
9410
|
include Aws::Structure
|
9406
9411
|
end
|
@@ -13778,6 +13783,21 @@ module Aws::Connect
|
|
13778
13783
|
include Aws::Structure
|
13779
13784
|
end
|
13780
13785
|
|
13786
|
+
# A value for a segment attribute. This is structured as a map where the
|
13787
|
+
# key is `valueString` and the value is a string.
|
13788
|
+
#
|
13789
|
+
# @!attribute [rw] value_string
|
13790
|
+
# The value of a segment attribute.
|
13791
|
+
# @return [String]
|
13792
|
+
#
|
13793
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SegmentAttributeValue AWS API Documentation
|
13794
|
+
#
|
13795
|
+
class SegmentAttributeValue < Struct.new(
|
13796
|
+
:value_string)
|
13797
|
+
SENSITIVE = []
|
13798
|
+
include Aws::Structure
|
13799
|
+
end
|
13800
|
+
|
13781
13801
|
# Information about the send notification action.
|
13782
13802
|
#
|
13783
13803
|
# @!attribute [rw] delivery_method
|
@@ -14004,6 +14024,25 @@ module Aws::Connect
|
|
14004
14024
|
# </note>
|
14005
14025
|
# @return [String]
|
14006
14026
|
#
|
14027
|
+
# @!attribute [rw] segment_attributes
|
14028
|
+
# A set of system defined key-value pairs stored on individual contact
|
14029
|
+
# segments using an attribute map. The attributes are standard Amazon
|
14030
|
+
# Connect attributes. They can be accessed in flows.
|
14031
|
+
#
|
14032
|
+
# Attribute keys can include only alphanumeric, -, and \_.
|
14033
|
+
#
|
14034
|
+
# This field can be used to show channel subtype, such as
|
14035
|
+
# `connect:Guide`.
|
14036
|
+
#
|
14037
|
+
# <note markdown="1"> The types `application/vnd.amazonaws.connect.message.interactive`
|
14038
|
+
# and `application/vnd.amazonaws.connect.message.interactive.response`
|
14039
|
+
# must be present in the SupportedMessagingContentTypes field of this
|
14040
|
+
# API in order to set `SegmentAttributes` as \\\{` "connect:Subtype":
|
14041
|
+
# \{"valueString" : "connect:Guide" \}\}`.
|
14042
|
+
#
|
14043
|
+
# </note>
|
14044
|
+
# @return [Hash<String,Types::SegmentAttributeValue>]
|
14045
|
+
#
|
14007
14046
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/StartChatContactRequest AWS API Documentation
|
14008
14047
|
#
|
14009
14048
|
class StartChatContactRequest < Struct.new(
|
@@ -14016,7 +14055,8 @@ module Aws::Connect
|
|
14016
14055
|
:chat_duration_in_minutes,
|
14017
14056
|
:supported_messaging_content_types,
|
14018
14057
|
:persistent_chat,
|
14019
|
-
:related_contact_id
|
14058
|
+
:related_contact_id,
|
14059
|
+
:segment_attributes)
|
14020
14060
|
SENSITIVE = []
|
14021
14061
|
include Aws::Structure
|
14022
14062
|
end
|
data/lib/aws-sdk-connect.rb
CHANGED
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.
|
4
|
+
version: 1.138.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-11-
|
11
|
+
date: 2023-11-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|