aws-sdk-connectwisdomservice 1.18.0 → 1.19.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: a8c0abda75f477aab0c3f95c5ca79739a2a9a3d541a08271023dbab708a7de8a
4
- data.tar.gz: 03e25827d69e5bd05ac4b0d7a64e7d338846849f2bb760ae4464fd64c5be0cc0
3
+ metadata.gz: 14641ba1c19fced2178d27b389b67b394370ed4584ad454945b62fef908eef07
4
+ data.tar.gz: e67e0ee8f1c5beb14da939033baf3ebe108cb04d9c92eaf9dacbd166b4347e7b
5
5
  SHA512:
6
- metadata.gz: 187f0f502bbf71a0176ec273e2af831cb444aea886c07222635772157f15e87fd555f7ab7f5fee90d56446975b8b9d53c7e672e0f34d953980b6a487b8e437c9
7
- data.tar.gz: 8475d322f4ad193813fefde0d17cae7e6df3c4d8675481dad139f9469aac2df31936214364ec66fab2d1ade6fc0b3b5c30daa4c4af20fcd3dcaf3d3fb04b8298
6
+ metadata.gz: 0a2827bd46b555c7c1218f1d65dcda18fa25081ac7fdb6e4f9141d2e8ab3390c9b6367b5e5fcd4e8db9b69e6243dbaba2832bb5f32941b0f3e0ffe1a8f7a1a95
7
+ data.tar.gz: a66bf3493c984cce29ff62d9541fd82d3b890b1cf0a865f2d3e3a3cb8ae88ccf125d31032e0ccc427ff5224ae7e8c5d56218f05335e0a9c9998ca6b4717cf88c
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.19.0 (2023-07-25)
5
+ ------------------
6
+
7
+ * Feature - This release added two new data types: AssistantIntegrationConfiguration, and SessionIntegrationConfiguration to support Wisdom integration with Amazon Connect Chat
8
+
4
9
  1.18.0 (2023-07-11)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.18.0
1
+ 1.19.0
@@ -442,6 +442,7 @@ module Aws::ConnectWisdomService
442
442
  # resp.assistant.assistant_arn #=> String
443
443
  # resp.assistant.assistant_id #=> String
444
444
  # resp.assistant.description #=> String
445
+ # resp.assistant.integration_configuration.topic_integration_arn #=> String
445
446
  # resp.assistant.name #=> String
446
447
  # resp.assistant.server_side_encryption_configuration.kms_key_id #=> String
447
448
  # resp.assistant.status #=> String, one of "CREATE_IN_PROGRESS", "CREATE_FAILED", "ACTIVE", "DELETE_IN_PROGRESS", "DELETE_FAILED", "DELETED"
@@ -802,6 +803,7 @@ module Aws::ConnectWisdomService
802
803
  # @example Response structure
803
804
  #
804
805
  # resp.session.description #=> String
806
+ # resp.session.integration_configuration.topic_integration_arn #=> String
805
807
  # resp.session.name #=> String
806
808
  # resp.session.session_arn #=> String
807
809
  # resp.session.session_id #=> String
@@ -956,6 +958,7 @@ module Aws::ConnectWisdomService
956
958
  # resp.assistant.assistant_arn #=> String
957
959
  # resp.assistant.assistant_id #=> String
958
960
  # resp.assistant.description #=> String
961
+ # resp.assistant.integration_configuration.topic_integration_arn #=> String
959
962
  # resp.assistant.name #=> String
960
963
  # resp.assistant.server_side_encryption_configuration.kms_key_id #=> String
961
964
  # resp.assistant.status #=> String, one of "CREATE_IN_PROGRESS", "CREATE_FAILED", "ACTIVE", "DELETE_IN_PROGRESS", "DELETE_FAILED", "DELETED"
@@ -1256,6 +1259,7 @@ module Aws::ConnectWisdomService
1256
1259
  # @example Response structure
1257
1260
  #
1258
1261
  # resp.session.description #=> String
1262
+ # resp.session.integration_configuration.topic_integration_arn #=> String
1259
1263
  # resp.session.name #=> String
1260
1264
  # resp.session.session_arn #=> String
1261
1265
  # resp.session.session_id #=> String
@@ -1353,6 +1357,7 @@ module Aws::ConnectWisdomService
1353
1357
  # resp.assistant_summaries[0].assistant_arn #=> String
1354
1358
  # resp.assistant_summaries[0].assistant_id #=> String
1355
1359
  # resp.assistant_summaries[0].description #=> String
1360
+ # resp.assistant_summaries[0].integration_configuration.topic_integration_arn #=> String
1356
1361
  # resp.assistant_summaries[0].name #=> String
1357
1362
  # resp.assistant_summaries[0].server_side_encryption_configuration.kms_key_id #=> String
1358
1363
  # resp.assistant_summaries[0].status #=> String, one of "CREATE_IN_PROGRESS", "CREATE_FAILED", "ACTIVE", "DELETE_IN_PROGRESS", "DELETE_FAILED", "DELETED"
@@ -2030,7 +2035,7 @@ module Aws::ConnectWisdomService
2030
2035
  params: params,
2031
2036
  config: config)
2032
2037
  context[:gem_name] = 'aws-sdk-connectwisdomservice'
2033
- context[:gem_version] = '1.18.0'
2038
+ context[:gem_version] = '1.19.0'
2034
2039
  Seahorse::Client::Request.new(handlers, context)
2035
2040
  end
2036
2041
 
@@ -22,6 +22,7 @@ module Aws::ConnectWisdomService
22
22
  AssistantAssociationSummary = Shapes::StructureShape.new(name: 'AssistantAssociationSummary')
23
23
  AssistantAssociationSummaryList = Shapes::ListShape.new(name: 'AssistantAssociationSummaryList')
24
24
  AssistantData = Shapes::StructureShape.new(name: 'AssistantData')
25
+ AssistantIntegrationConfiguration = Shapes::StructureShape.new(name: 'AssistantIntegrationConfiguration')
25
26
  AssistantList = Shapes::ListShape.new(name: 'AssistantList')
26
27
  AssistantStatus = Shapes::StringShape.new(name: 'AssistantStatus')
27
28
  AssistantSummary = Shapes::StructureShape.new(name: 'AssistantSummary')
@@ -139,6 +140,7 @@ module Aws::ConnectWisdomService
139
140
  ServerSideEncryptionConfiguration = Shapes::StructureShape.new(name: 'ServerSideEncryptionConfiguration')
140
141
  ServiceQuotaExceededException = Shapes::StructureShape.new(name: 'ServiceQuotaExceededException')
141
142
  SessionData = Shapes::StructureShape.new(name: 'SessionData')
143
+ SessionIntegrationConfiguration = Shapes::StructureShape.new(name: 'SessionIntegrationConfiguration')
142
144
  SessionSummaries = Shapes::ListShape.new(name: 'SessionSummaries')
143
145
  SessionSummary = Shapes::StructureShape.new(name: 'SessionSummary')
144
146
  SourceConfiguration = Shapes::UnionShape.new(name: 'SourceConfiguration')
@@ -209,6 +211,7 @@ module Aws::ConnectWisdomService
209
211
  AssistantData.add_member(:assistant_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "assistantArn"))
210
212
  AssistantData.add_member(:assistant_id, Shapes::ShapeRef.new(shape: Uuid, required: true, location_name: "assistantId"))
211
213
  AssistantData.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
214
+ AssistantData.add_member(:integration_configuration, Shapes::ShapeRef.new(shape: AssistantIntegrationConfiguration, location_name: "integrationConfiguration"))
212
215
  AssistantData.add_member(:name, Shapes::ShapeRef.new(shape: Name, required: true, location_name: "name"))
213
216
  AssistantData.add_member(:server_side_encryption_configuration, Shapes::ShapeRef.new(shape: ServerSideEncryptionConfiguration, location_name: "serverSideEncryptionConfiguration"))
214
217
  AssistantData.add_member(:status, Shapes::ShapeRef.new(shape: AssistantStatus, required: true, location_name: "status"))
@@ -216,11 +219,15 @@ module Aws::ConnectWisdomService
216
219
  AssistantData.add_member(:type, Shapes::ShapeRef.new(shape: AssistantType, required: true, location_name: "type"))
217
220
  AssistantData.struct_class = Types::AssistantData
218
221
 
222
+ AssistantIntegrationConfiguration.add_member(:topic_integration_arn, Shapes::ShapeRef.new(shape: GenericArn, location_name: "topicIntegrationArn"))
223
+ AssistantIntegrationConfiguration.struct_class = Types::AssistantIntegrationConfiguration
224
+
219
225
  AssistantList.member = Shapes::ShapeRef.new(shape: AssistantSummary)
220
226
 
221
227
  AssistantSummary.add_member(:assistant_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "assistantArn"))
222
228
  AssistantSummary.add_member(:assistant_id, Shapes::ShapeRef.new(shape: Uuid, required: true, location_name: "assistantId"))
223
229
  AssistantSummary.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
230
+ AssistantSummary.add_member(:integration_configuration, Shapes::ShapeRef.new(shape: AssistantIntegrationConfiguration, location_name: "integrationConfiguration"))
224
231
  AssistantSummary.add_member(:name, Shapes::ShapeRef.new(shape: Name, required: true, location_name: "name"))
225
232
  AssistantSummary.add_member(:server_side_encryption_configuration, Shapes::ShapeRef.new(shape: ServerSideEncryptionConfiguration, location_name: "serverSideEncryptionConfiguration"))
226
233
  AssistantSummary.add_member(:status, Shapes::ShapeRef.new(shape: AssistantStatus, required: true, location_name: "status"))
@@ -604,12 +611,16 @@ module Aws::ConnectWisdomService
604
611
  ServiceQuotaExceededException.struct_class = Types::ServiceQuotaExceededException
605
612
 
606
613
  SessionData.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
614
+ SessionData.add_member(:integration_configuration, Shapes::ShapeRef.new(shape: SessionIntegrationConfiguration, location_name: "integrationConfiguration"))
607
615
  SessionData.add_member(:name, Shapes::ShapeRef.new(shape: Name, required: true, location_name: "name"))
608
616
  SessionData.add_member(:session_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "sessionArn"))
609
617
  SessionData.add_member(:session_id, Shapes::ShapeRef.new(shape: Uuid, required: true, location_name: "sessionId"))
610
618
  SessionData.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
611
619
  SessionData.struct_class = Types::SessionData
612
620
 
621
+ SessionIntegrationConfiguration.add_member(:topic_integration_arn, Shapes::ShapeRef.new(shape: GenericArn, location_name: "topicIntegrationArn"))
622
+ SessionIntegrationConfiguration.struct_class = Types::SessionIntegrationConfiguration
623
+
613
624
  SessionSummaries.member = Shapes::ShapeRef.new(shape: SessionSummary)
614
625
 
615
626
  SessionSummary.add_member(:assistant_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "assistantArn"))
@@ -240,6 +240,10 @@ module Aws::ConnectWisdomService
240
240
  # The description.
241
241
  # @return [String]
242
242
  #
243
+ # @!attribute [rw] integration_configuration
244
+ # The configuration information for the Wisdom assistant integration.
245
+ # @return [Types::AssistantIntegrationConfiguration]
246
+ #
243
247
  # @!attribute [rw] name
244
248
  # The name.
245
249
  # @return [String]
@@ -267,6 +271,7 @@ module Aws::ConnectWisdomService
267
271
  :assistant_arn,
268
272
  :assistant_id,
269
273
  :description,
274
+ :integration_configuration,
270
275
  :name,
271
276
  :server_side_encryption_configuration,
272
277
  :status,
@@ -276,6 +281,21 @@ module Aws::ConnectWisdomService
276
281
  include Aws::Structure
277
282
  end
278
283
 
284
+ # The configuration information for the Wisdom assistant integration.
285
+ #
286
+ # @!attribute [rw] topic_integration_arn
287
+ # The Amazon Resource Name (ARN) of the integrated Amazon SNS topic
288
+ # used for streaming chat messages.
289
+ # @return [String]
290
+ #
291
+ # @see http://docs.aws.amazon.com/goto/WebAPI/wisdom-2020-10-19/AssistantIntegrationConfiguration AWS API Documentation
292
+ #
293
+ class AssistantIntegrationConfiguration < Struct.new(
294
+ :topic_integration_arn)
295
+ SENSITIVE = []
296
+ include Aws::Structure
297
+ end
298
+
279
299
  # Summary information about the assistant.
280
300
  #
281
301
  # @!attribute [rw] assistant_arn
@@ -290,6 +310,10 @@ module Aws::ConnectWisdomService
290
310
  # The description of the assistant.
291
311
  # @return [String]
292
312
  #
313
+ # @!attribute [rw] integration_configuration
314
+ # The configuration information for the Wisdom assistant integration.
315
+ # @return [Types::AssistantIntegrationConfiguration]
316
+ #
293
317
  # @!attribute [rw] name
294
318
  # The name of the assistant.
295
319
  # @return [String]
@@ -317,6 +341,7 @@ module Aws::ConnectWisdomService
317
341
  :assistant_arn,
318
342
  :assistant_id,
319
343
  :description,
344
+ :integration_configuration,
320
345
  :name,
321
346
  :server_side_encryption_configuration,
322
347
  :status,
@@ -2054,6 +2079,10 @@ module Aws::ConnectWisdomService
2054
2079
  # The description of the session.
2055
2080
  # @return [String]
2056
2081
  #
2082
+ # @!attribute [rw] integration_configuration
2083
+ # The configuration information for the session integration.
2084
+ # @return [Types::SessionIntegrationConfiguration]
2085
+ #
2057
2086
  # @!attribute [rw] name
2058
2087
  # The name of the session.
2059
2088
  # @return [String]
@@ -2075,6 +2104,7 @@ module Aws::ConnectWisdomService
2075
2104
  #
2076
2105
  class SessionData < Struct.new(
2077
2106
  :description,
2107
+ :integration_configuration,
2078
2108
  :name,
2079
2109
  :session_arn,
2080
2110
  :session_id,
@@ -2083,6 +2113,21 @@ module Aws::ConnectWisdomService
2083
2113
  include Aws::Structure
2084
2114
  end
2085
2115
 
2116
+ # The configuration information for the session integration.
2117
+ #
2118
+ # @!attribute [rw] topic_integration_arn
2119
+ # The Amazon Resource Name (ARN) of the integrated Amazon SNS topic
2120
+ # used for streaming chat messages.
2121
+ # @return [String]
2122
+ #
2123
+ # @see http://docs.aws.amazon.com/goto/WebAPI/wisdom-2020-10-19/SessionIntegrationConfiguration AWS API Documentation
2124
+ #
2125
+ class SessionIntegrationConfiguration < Struct.new(
2126
+ :topic_integration_arn)
2127
+ SENSITIVE = []
2128
+ include Aws::Structure
2129
+ end
2130
+
2086
2131
  # Summary information about the session.
2087
2132
  #
2088
2133
  # @!attribute [rw] assistant_arn
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-connectwisdomservice/customizations'
52
52
  # @!group service
53
53
  module Aws::ConnectWisdomService
54
54
 
55
- GEM_VERSION = '1.18.0'
55
+ GEM_VERSION = '1.19.0'
56
56
 
57
57
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-connectwisdomservice
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.18.0
4
+ version: 1.19.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-07-11 00:00:00.000000000 Z
11
+ date: 2023-07-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core