aws-sdk-connect 1.261.0 → 1.263.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 76c8fedd0dbf5cc265b4b8b6eb5914be1ed4639dd0ff40cb50e6bd372c72048e
4
- data.tar.gz: 76679916abed9570098093834424d8c7927680ebc3e56f22ac7e8d6bf413130b
3
+ metadata.gz: 98973c8953106c3db7c134e85d803967b69f5c51c69cbf0537205d9fdcc9ec39
4
+ data.tar.gz: 8167576d46102beacfb8aea71a8f483b102a0ca0d10e542d22ce7449d33a1802
5
5
  SHA512:
6
- metadata.gz: 15b879edfce25db29b6bd5d058776eee8864f961c34defdec0dc112960e3b453167f61a4b43b22b63a346f5c19adc60d7ffada0f0a17387238f4e27e7dfd43a8
7
- data.tar.gz: 6baf8ae203f9cebb9a39508f4f9d1b632bdac899c0d611a935ab90e5fabd041e8a24213379eea9ff2d615f02268b08df8271e1b2be567f65024223b9603bd575
6
+ metadata.gz: 11fc0e27fca5e3c5c617ce2c7017c77393e6f7254e249983dab70eea078cbddaaecde37a716a9c6ee880013fcdb1fa0c188678c523d6e4136f2517ae6e603849
7
+ data.tar.gz: 71c92ae22a5ded7fdee9b8878f7c56702643f59af02dd9ad3c1c63b51a444956dbb5fa43a155951937d89555f23530da1bb4a41a2ad6d9587426866a59f6e572
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.263.0 (2026-07-07)
5
+ ------------------
6
+
7
+ * Feature - Adds support for CreateAuthCode and DeleteSession APIs.
8
+
9
+ 1.262.0 (2026-07-01)
10
+ ------------------
11
+
12
+ * Feature - Adds a new Amazon Connect Service API, SendOutboundWebNotification, that delivers web notifications to end-customer chat widget sessions. Callable only by the Amazon Connect Outbound Campaigns service principal.
13
+
4
14
  1.261.0 (2026-06-30)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.261.0
1
+ 1.263.0
@@ -2605,6 +2605,69 @@ module Aws::Connect
2605
2605
  req.send_request(options)
2606
2606
  end
2607
2607
 
2608
+ # Creates an authorization code for the specified Connect Customer
2609
+ # instance. The authorization code can be used to establish a session
2610
+ # with scoped permissions defined by the specified scope parameters.
2611
+ #
2612
+ # @option params [required, String] :instance_id
2613
+ # The identifier of the Connect Customer instance. You can [find the
2614
+ # instance ID][1] in the Amazon Resource Name (ARN) of the instance.
2615
+ #
2616
+ #
2617
+ #
2618
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
2619
+ #
2620
+ # @option params [required, Types::AuthScope] :scope
2621
+ # The scope for the authorization code. Defines the permissions and
2622
+ # access boundaries for the session.
2623
+ #
2624
+ # @option params [Integer] :max_session_duration_minutes
2625
+ # The maximum duration of the session, in minutes. Minimum value of 1440
2626
+ # (24 hours). Maximum value of 43200 (30 days). If no value is provided,
2627
+ # the session will expire after 400 days.
2628
+ #
2629
+ # @option params [required, Integer] :session_inactivity_duration_minutes
2630
+ # The duration of inactivity, in minutes, after which the session
2631
+ # expires. Minimum value of 1440 (24 hours). Maximum value of 20160 (14
2632
+ # days).
2633
+ #
2634
+ # @return [Types::CreateAuthCodeResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2635
+ #
2636
+ # * {Types::CreateAuthCodeResponse#auth_code #auth_code} => String
2637
+ # * {Types::CreateAuthCodeResponse#session_id #session_id} => String
2638
+ # * {Types::CreateAuthCodeResponse#entity_type #entity_type} => String
2639
+ # * {Types::CreateAuthCodeResponse#entity_id #entity_id} => String
2640
+ #
2641
+ # @example Request syntax with placeholder values
2642
+ #
2643
+ # resp = client.create_auth_code({
2644
+ # instance_id: "InstanceId", # required
2645
+ # scope: { # required
2646
+ # security_profile_ids: ["SecurityProfileId"],
2647
+ # entity_type: "CUSTOMER_PROFILE", # required, accepts CUSTOMER_PROFILE
2648
+ # entity_id: "EntityId",
2649
+ # domain_name: "CustomerProfilesDomainName",
2650
+ # },
2651
+ # max_session_duration_minutes: 1,
2652
+ # session_inactivity_duration_minutes: 1, # required
2653
+ # })
2654
+ #
2655
+ # @example Response structure
2656
+ #
2657
+ # resp.auth_code #=> String
2658
+ # resp.session_id #=> String
2659
+ # resp.entity_type #=> String, one of "CUSTOMER_PROFILE"
2660
+ # resp.entity_id #=> String
2661
+ #
2662
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateAuthCode AWS API Documentation
2663
+ #
2664
+ # @overload create_auth_code(params = {})
2665
+ # @param [Hash] params ({})
2666
+ def create_auth_code(params = {}, options = {})
2667
+ req = build_request(:create_auth_code, params)
2668
+ req.send_request(options)
2669
+ end
2670
+
2608
2671
  # Only the VOICE, EMAIL, and TASK channels are supported.
2609
2672
  #
2610
2673
  # * For VOICE: The supported initiation method is `TRANSFER`. The
@@ -7051,6 +7114,37 @@ module Aws::Connect
7051
7114
  req.send_request(options)
7052
7115
  end
7053
7116
 
7117
+ # Deletes a session for the specified Connect Customer instance.
7118
+ #
7119
+ # @option params [required, String] :instance_id
7120
+ # The identifier of the Connect Customer instance. You can [find the
7121
+ # instance ID][1] in the Amazon Resource Name (ARN) of the instance.
7122
+ #
7123
+ #
7124
+ #
7125
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
7126
+ #
7127
+ # @option params [required, String] :session_id
7128
+ # The identifier of the session to delete.
7129
+ #
7130
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
7131
+ #
7132
+ # @example Request syntax with placeholder values
7133
+ #
7134
+ # resp = client.delete_session({
7135
+ # instance_id: "InstanceId", # required
7136
+ # session_id: "SessionId", # required
7137
+ # })
7138
+ #
7139
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DeleteSession AWS API Documentation
7140
+ #
7141
+ # @overload delete_session(params = {})
7142
+ # @param [Hash] params ({})
7143
+ def delete_session(params = {}, options = {})
7144
+ req = build_request(:delete_session, params)
7145
+ req.send_request(options)
7146
+ end
7147
+
7054
7148
  # Deletes the task template.
7055
7149
  #
7056
7150
  # @option params [required, String] :instance_id
@@ -11766,10 +11860,10 @@ module Aws::Connect
11766
11860
  #
11767
11861
  # @return [Types::GetFederationTokenResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
11768
11862
  #
11863
+ # * {Types::GetFederationTokenResponse#user_id #user_id} => String
11864
+ # * {Types::GetFederationTokenResponse#user_arn #user_arn} => String
11769
11865
  # * {Types::GetFederationTokenResponse#credentials #credentials} => Types::Credentials
11770
11866
  # * {Types::GetFederationTokenResponse#sign_in_url #sign_in_url} => String
11771
- # * {Types::GetFederationTokenResponse#user_arn #user_arn} => String
11772
- # * {Types::GetFederationTokenResponse#user_id #user_id} => String
11773
11867
  #
11774
11868
  # @example Request syntax with placeholder values
11775
11869
  #
@@ -11779,13 +11873,13 @@ module Aws::Connect
11779
11873
  #
11780
11874
  # @example Response structure
11781
11875
  #
11876
+ # resp.user_id #=> String
11877
+ # resp.user_arn #=> String
11782
11878
  # resp.credentials.access_token #=> String
11783
11879
  # resp.credentials.access_token_expiration #=> Time
11784
11880
  # resp.credentials.refresh_token #=> String
11785
11881
  # resp.credentials.refresh_token_expiration #=> Time
11786
11882
  # resp.sign_in_url #=> String
11787
- # resp.user_arn #=> String
11788
- # resp.user_id #=> String
11789
11883
  #
11790
11884
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/GetFederationToken AWS API Documentation
11791
11885
  #
@@ -22976,6 +23070,111 @@ module Aws::Connect
22976
23070
  req.send_request(options)
22977
23071
  end
22978
23072
 
23073
+ # Sends an outbound web notification to a customer's web browser for
23074
+ # outbound campaigns. For more information about outbound campaigns, see
23075
+ # [Set up Connect Customer outbound campaigns][1].
23076
+ #
23077
+ # <note markdown="1"> Only the Connect Customer outbound campaigns service principal is
23078
+ # allowed to assume a role in your account and call this API.
23079
+ #
23080
+ # </note>
23081
+ #
23082
+ #
23083
+ #
23084
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/enable-outbound-campaigns.html
23085
+ #
23086
+ # @option params [required, String] :instance_id
23087
+ # The identifier of the Connect Customer instance. You can [find the
23088
+ # instance ID][1] in the Amazon Resource Name (ARN) of the instance.
23089
+ #
23090
+ #
23091
+ #
23092
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
23093
+ #
23094
+ # @option params [String] :client_token
23095
+ # A unique, case-sensitive identifier that you provide to ensure the
23096
+ # idempotency of the request. If not provided, the Amazon Web Services
23097
+ # SDK populates this field. For more information about idempotency, see
23098
+ # [Making retries safe with idempotent APIs][1].
23099
+ #
23100
+ # **A suitable default value is auto-generated.** You should normally
23101
+ # not need to pass this option.**
23102
+ #
23103
+ #
23104
+ #
23105
+ # [1]: https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/
23106
+ #
23107
+ # @option params [required, String] :browser_id
23108
+ # A unique identifier for the customer's web browser instance to which
23109
+ # the notification is being sent.
23110
+ #
23111
+ # @option params [required, String] :session_id
23112
+ # A unique identifier for the customer's web session to which the
23113
+ # notification is being sent.
23114
+ #
23115
+ # @option params [required, Time,DateTime,Date,Integer,String] :expires_at
23116
+ # The timestamp, in Unix epoch time format, at which the web
23117
+ # notification expires. After this time, the notification is no longer
23118
+ # delivered to the customer's browser.
23119
+ #
23120
+ # @option params [required, Types::WebNotificationSource] :source
23121
+ # The source of the web notification. A `SourceCampaign` object
23122
+ # identifies the campaign and outbound request that triggered this
23123
+ # notification.
23124
+ #
23125
+ # @option params [required, Types::WidgetDestination] :destination
23126
+ # The destination for the web notification, specifying the communication
23127
+ # widget that delivers the notification and the customer profile of the
23128
+ # recipient.
23129
+ #
23130
+ # @option params [required, Types::WebNotificationContent] :content
23131
+ # The content of the web notification, including the notification type,
23132
+ # the view to render, and any optional attributes used to populate it.
23133
+ #
23134
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
23135
+ #
23136
+ # @example Request syntax with placeholder values
23137
+ #
23138
+ # resp = client.send_outbound_web_notification({
23139
+ # instance_id: "InstanceId", # required
23140
+ # client_token: "ClientToken",
23141
+ # browser_id: "WebBrowserId", # required
23142
+ # session_id: "WebSessionId", # required
23143
+ # expires_at: Time.now, # required
23144
+ # source: { # required
23145
+ # source_campaign: { # required
23146
+ # campaign_id: "CampaignId",
23147
+ # outbound_request_id: "OutboundRequestId",
23148
+ # },
23149
+ # },
23150
+ # destination: { # required
23151
+ # widget_id: "WidgetId", # required
23152
+ # profile_id: "CustomerProfileId", # required
23153
+ # },
23154
+ # content: { # required
23155
+ # type: "WIDGET_VIEW", # required, accepts WIDGET_VIEW, WIDGET_ACTION
23156
+ # view_arn: "ViewArn",
23157
+ # attributes: {
23158
+ # recommender_config: {
23159
+ # domain_name: "PersonalizeDomainName", # required
23160
+ # recommender_name: "RecommenderName", # required
23161
+ # context: {
23162
+ # "RecommenderContextKey" => "RecommenderContextValue",
23163
+ # },
23164
+ # },
23165
+ # },
23166
+ # },
23167
+ # })
23168
+ #
23169
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SendOutboundWebNotification AWS API Documentation
23170
+ #
23171
+ # @overload send_outbound_web_notification(params = {})
23172
+ # @param [Hash] params ({})
23173
+ def send_outbound_web_notification(params = {}, options = {})
23174
+ req = build_request(:send_outbound_web_notification, params)
23175
+ req.send_request(options)
23176
+ end
23177
+
22979
23178
  # Provides a pre-signed Amazon S3 URL in response for uploading your
22980
23179
  # content.
22981
23180
  #
@@ -29741,7 +29940,7 @@ module Aws::Connect
29741
29940
  tracer: tracer
29742
29941
  )
29743
29942
  context[:gem_name] = 'aws-sdk-connect'
29744
- context[:gem_version] = '1.261.0'
29943
+ context[:gem_version] = '1.263.0'
29745
29944
  Seahorse::Client::Request.new(handlers, context)
29746
29945
  end
29747
29946
 
@@ -167,6 +167,9 @@ module Aws::Connect
167
167
  AudioFeatures = Shapes::StructureShape.new(name: 'AudioFeatures')
168
168
  AudioQualityMetricsInfo = Shapes::StructureShape.new(name: 'AudioQualityMetricsInfo')
169
169
  AudioQualityScore = Shapes::FloatShape.new(name: 'AudioQualityScore')
170
+ AuthCode = Shapes::StringShape.new(name: 'AuthCode')
171
+ AuthCodeEntityType = Shapes::StringShape.new(name: 'AuthCodeEntityType')
172
+ AuthScope = Shapes::StructureShape.new(name: 'AuthScope')
170
173
  AuthenticationError = Shapes::StringShape.new(name: 'AuthenticationError')
171
174
  AuthenticationErrorDescription = Shapes::StringShape.new(name: 'AuthenticationErrorDescription')
172
175
  AuthenticationProfile = Shapes::StructureShape.new(name: 'AuthenticationProfile')
@@ -358,6 +361,7 @@ module Aws::Connect
358
361
  ContactTagValue = Shapes::StringShape.new(name: 'ContactTagValue')
359
362
  Contacts = Shapes::ListShape.new(name: 'Contacts')
360
363
  Content = Shapes::StringShape.new(name: 'Content')
364
+ ContentAttributes = Shapes::StructureShape.new(name: 'ContentAttributes')
361
365
  ContentType = Shapes::StringShape.new(name: 'ContentType')
362
366
  ControlPlaneAttributeFilter = Shapes::StructureShape.new(name: 'ControlPlaneAttributeFilter')
363
367
  ControlPlaneTagFilter = Shapes::StructureShape.new(name: 'ControlPlaneTagFilter')
@@ -367,6 +371,8 @@ module Aws::Connect
367
371
  CreateAgentStatusResponse = Shapes::StructureShape.new(name: 'CreateAgentStatusResponse')
368
372
  CreateAttachedFileRequest = Shapes::StructureShape.new(name: 'CreateAttachedFileRequest')
369
373
  CreateAttachedFileResponse = Shapes::StructureShape.new(name: 'CreateAttachedFileResponse')
374
+ CreateAuthCodeRequest = Shapes::StructureShape.new(name: 'CreateAuthCodeRequest')
375
+ CreateAuthCodeResponse = Shapes::StructureShape.new(name: 'CreateAuthCodeResponse')
370
376
  CreateCaseActionDefinition = Shapes::StructureShape.new(name: 'CreateCaseActionDefinition')
371
377
  CreateContactFlowModuleAliasRequest = Shapes::StructureShape.new(name: 'CreateContactFlowModuleAliasRequest')
372
378
  CreateContactFlowModuleAliasResponse = Shapes::StructureShape.new(name: 'CreateContactFlowModuleAliasResponse')
@@ -457,6 +463,8 @@ module Aws::Connect
457
463
  CustomerId = Shapes::StringShape.new(name: 'CustomerId')
458
464
  CustomerIdNonEmpty = Shapes::StringShape.new(name: 'CustomerIdNonEmpty')
459
465
  CustomerProfileAttributesSerialized = Shapes::StringShape.new(name: 'CustomerProfileAttributesSerialized')
466
+ CustomerProfileId = Shapes::StringShape.new(name: 'CustomerProfileId')
467
+ CustomerProfilesDomainName = Shapes::StringShape.new(name: 'CustomerProfilesDomainName')
460
468
  CustomerQualityMetrics = Shapes::StructureShape.new(name: 'CustomerQualityMetrics')
461
469
  CustomerVoiceActivity = Shapes::StructureShape.new(name: 'CustomerVoiceActivity')
462
470
  DataSetId = Shapes::StringShape.new(name: 'DataSetId')
@@ -539,6 +547,8 @@ module Aws::Connect
539
547
  DeleteRoutingProfileRequest = Shapes::StructureShape.new(name: 'DeleteRoutingProfileRequest')
540
548
  DeleteRuleRequest = Shapes::StructureShape.new(name: 'DeleteRuleRequest')
541
549
  DeleteSecurityProfileRequest = Shapes::StructureShape.new(name: 'DeleteSecurityProfileRequest')
550
+ DeleteSessionRequest = Shapes::StructureShape.new(name: 'DeleteSessionRequest')
551
+ DeleteSessionResponse = Shapes::StructureShape.new(name: 'DeleteSessionResponse')
542
552
  DeleteTaskTemplateRequest = Shapes::StructureShape.new(name: 'DeleteTaskTemplateRequest')
543
553
  DeleteTaskTemplateResponse = Shapes::StructureShape.new(name: 'DeleteTaskTemplateResponse')
544
554
  DeleteTestCaseRequest = Shapes::StructureShape.new(name: 'DeleteTestCaseRequest')
@@ -725,6 +735,7 @@ module Aws::Connect
725
735
  Entities = Shapes::ListShape.new(name: 'Entities')
726
736
  Entity = Shapes::StringShape.new(name: 'Entity')
727
737
  EntityArn = Shapes::StringShape.new(name: 'EntityArn')
738
+ EntityId = Shapes::StringShape.new(name: 'EntityId')
728
739
  EntityType = Shapes::StringShape.new(name: 'EntityType')
729
740
  EpochMilliseconds = Shapes::IntegerShape.new(name: 'EpochMilliseconds')
730
741
  ErrorCode = Shapes::StringShape.new(name: 'ErrorCode')
@@ -1251,6 +1262,7 @@ module Aws::Connect
1251
1262
  MaxResult500 = Shapes::IntegerShape.new(name: 'MaxResult500')
1252
1263
  MaxResult7 = Shapes::IntegerShape.new(name: 'MaxResult7')
1253
1264
  MaxResults = Shapes::IntegerShape.new(name: 'MaxResults')
1265
+ MaxSessionDurationMinutes = Shapes::IntegerShape.new(name: 'MaxSessionDurationMinutes')
1254
1266
  MaximumResultReturnedException = Shapes::StructureShape.new(name: 'MaximumResultReturnedException')
1255
1267
  MaximumSizeLimitInBytes = Shapes::IntegerShape.new(name: 'MaximumSizeLimitInBytes')
1256
1268
  MediaConcurrencies = Shapes::ListShape.new(name: 'MediaConcurrencies')
@@ -1320,6 +1332,7 @@ module Aws::Connect
1320
1332
  NotificationSource = Shapes::StringShape.new(name: 'NotificationSource')
1321
1333
  NotificationStatus = Shapes::StringShape.new(name: 'NotificationStatus')
1322
1334
  NotificationSummaryList = Shapes::ListShape.new(name: 'NotificationSummaryList')
1335
+ NotificationType = Shapes::StringShape.new(name: 'NotificationType')
1323
1336
  NullableBoolean = Shapes::BooleanShape.new(name: 'NullableBoolean')
1324
1337
  NullableDouble = Shapes::FloatShape.new(name: 'NullableDouble')
1325
1338
  NullableProficiencyLevel = Shapes::FloatShape.new(name: 'NullableProficiencyLevel')
@@ -1395,6 +1408,7 @@ module Aws::Connect
1395
1408
  PersistentConnection = Shapes::BooleanShape.new(name: 'PersistentConnection')
1396
1409
  PersistentConnectionConfig = Shapes::StructureShape.new(name: 'PersistentConnectionConfig')
1397
1410
  PersistentConnectionConfigs = Shapes::ListShape.new(name: 'PersistentConnectionConfigs')
1411
+ PersonalizeDomainName = Shapes::StringShape.new(name: 'PersonalizeDomainName')
1398
1412
  PhoneNumber = Shapes::StringShape.new(name: 'PhoneNumber')
1399
1413
  PhoneNumberConfig = Shapes::StructureShape.new(name: 'PhoneNumberConfig')
1400
1414
  PhoneNumberConfigs = Shapes::ListShape.new(name: 'PhoneNumberConfigs')
@@ -1560,6 +1574,11 @@ module Aws::Connect
1560
1574
  RealtimeContactAnalysisSegment = Shapes::UnionShape.new(name: 'RealtimeContactAnalysisSegment')
1561
1575
  RealtimeContactAnalysisSegments = Shapes::ListShape.new(name: 'RealtimeContactAnalysisSegments')
1562
1576
  RecipientList = Shapes::ListShape.new(name: 'RecipientList')
1577
+ RecommenderConfig = Shapes::StructureShape.new(name: 'RecommenderConfig')
1578
+ RecommenderContext = Shapes::MapShape.new(name: 'RecommenderContext')
1579
+ RecommenderContextKey = Shapes::StringShape.new(name: 'RecommenderContextKey')
1580
+ RecommenderContextValue = Shapes::StringShape.new(name: 'RecommenderContextValue')
1581
+ RecommenderName = Shapes::StringShape.new(name: 'RecommenderName')
1563
1582
  RecordIds = Shapes::ListShape.new(name: 'RecordIds')
1564
1583
  RecordPrimaryValue = Shapes::StructureShape.new(name: 'RecordPrimaryValue')
1565
1584
  RecordingDeletionReason = Shapes::StringShape.new(name: 'RecordingDeletionReason')
@@ -1770,10 +1789,14 @@ module Aws::Connect
1770
1789
  SendNotificationActionDefinition = Shapes::StructureShape.new(name: 'SendNotificationActionDefinition')
1771
1790
  SendOutboundEmailRequest = Shapes::StructureShape.new(name: 'SendOutboundEmailRequest')
1772
1791
  SendOutboundEmailResponse = Shapes::StructureShape.new(name: 'SendOutboundEmailResponse')
1792
+ SendOutboundWebNotificationRequest = Shapes::StructureShape.new(name: 'SendOutboundWebNotificationRequest')
1793
+ SendOutboundWebNotificationResponse = Shapes::StructureShape.new(name: 'SendOutboundWebNotificationResponse')
1773
1794
  SensitivePhoneNumber = Shapes::StringShape.new(name: 'SensitivePhoneNumber')
1774
1795
  SentimentConfiguration = Shapes::StructureShape.new(name: 'SentimentConfiguration')
1775
1796
  ServiceQuotaExceededException = Shapes::StructureShape.new(name: 'ServiceQuotaExceededException')
1776
1797
  ServiceQuotaExceededExceptionReason = Shapes::UnionShape.new(name: 'ServiceQuotaExceededExceptionReason')
1798
+ SessionId = Shapes::StringShape.new(name: 'SessionId')
1799
+ SessionInactivityDurationMinutes = Shapes::IntegerShape.new(name: 'SessionInactivityDurationMinutes')
1777
1800
  SignInConfig = Shapes::StructureShape.new(name: 'SignInConfig')
1778
1801
  SignInDistribution = Shapes::StructureShape.new(name: 'SignInDistribution')
1779
1802
  SignInDistributionList = Shapes::ListShape.new(name: 'SignInDistributionList')
@@ -2126,6 +2149,7 @@ module Aws::Connect
2126
2149
  View = Shapes::StructureShape.new(name: 'View')
2127
2150
  ViewAction = Shapes::StringShape.new(name: 'ViewAction')
2128
2151
  ViewActions = Shapes::ListShape.new(name: 'ViewActions')
2152
+ ViewArn = Shapes::StringShape.new(name: 'ViewArn')
2129
2153
  ViewContent = Shapes::StructureShape.new(name: 'ViewContent')
2130
2154
  ViewContentSha256 = Shapes::StringShape.new(name: 'ViewContentSha256')
2131
2155
  ViewDescription = Shapes::StringShape.new(name: 'ViewDescription')
@@ -2166,8 +2190,14 @@ module Aws::Connect
2166
2190
  VoiceEnhancementMode = Shapes::StringShape.new(name: 'VoiceEnhancementMode')
2167
2191
  VoiceRecordingConfiguration = Shapes::StructureShape.new(name: 'VoiceRecordingConfiguration')
2168
2192
  VoiceRecordingTrack = Shapes::StringShape.new(name: 'VoiceRecordingTrack')
2193
+ WebBrowserId = Shapes::StringShape.new(name: 'WebBrowserId')
2194
+ WebNotificationContent = Shapes::StructureShape.new(name: 'WebNotificationContent')
2195
+ WebNotificationSource = Shapes::StructureShape.new(name: 'WebNotificationSource')
2196
+ WebSessionId = Shapes::StringShape.new(name: 'WebSessionId')
2169
2197
  WeekdayOccurrenceInteger = Shapes::IntegerShape.new(name: 'WeekdayOccurrenceInteger')
2170
2198
  WeekdayOccurrenceList = Shapes::ListShape.new(name: 'WeekdayOccurrenceList')
2199
+ WidgetDestination = Shapes::StructureShape.new(name: 'WidgetDestination')
2200
+ WidgetId = Shapes::StringShape.new(name: 'WidgetId')
2171
2201
  WisdomInfo = Shapes::StructureShape.new(name: 'WisdomInfo')
2172
2202
  Workspace = Shapes::StructureShape.new(name: 'Workspace')
2173
2203
  WorkspaceAssociatedResourceId = Shapes::StringShape.new(name: 'WorkspaceAssociatedResourceId')
@@ -2653,6 +2683,12 @@ module Aws::Connect
2653
2683
  AudioQualityMetricsInfo.add_member(:potential_quality_issues, Shapes::ShapeRef.new(shape: PotentialAudioQualityIssues, location_name: "PotentialQualityIssues"))
2654
2684
  AudioQualityMetricsInfo.struct_class = Types::AudioQualityMetricsInfo
2655
2685
 
2686
+ AuthScope.add_member(:security_profile_ids, Shapes::ShapeRef.new(shape: SecurityProfileIds, location_name: "SecurityProfileIds"))
2687
+ AuthScope.add_member(:entity_type, Shapes::ShapeRef.new(shape: AuthCodeEntityType, required: true, location_name: "EntityType"))
2688
+ AuthScope.add_member(:entity_id, Shapes::ShapeRef.new(shape: EntityId, location_name: "EntityId"))
2689
+ AuthScope.add_member(:domain_name, Shapes::ShapeRef.new(shape: CustomerProfilesDomainName, location_name: "DomainName"))
2690
+ AuthScope.struct_class = Types::AuthScope
2691
+
2656
2692
  AuthenticationProfile.add_member(:id, Shapes::ShapeRef.new(shape: AuthenticationProfileId, location_name: "Id"))
2657
2693
  AuthenticationProfile.add_member(:arn, Shapes::ShapeRef.new(shape: ARN, location_name: "Arn"))
2658
2694
  AuthenticationProfile.add_member(:name, Shapes::ShapeRef.new(shape: AuthenticationProfileName, location_name: "Name"))
@@ -3270,6 +3306,9 @@ module Aws::Connect
3270
3306
 
3271
3307
  Contacts.member = Shapes::ShapeRef.new(shape: ContactSearchSummary)
3272
3308
 
3309
+ ContentAttributes.add_member(:recommender_config, Shapes::ShapeRef.new(shape: RecommenderConfig, location_name: "RecommenderConfig"))
3310
+ ContentAttributes.struct_class = Types::ContentAttributes
3311
+
3273
3312
  ControlPlaneAttributeFilter.add_member(:or_conditions, Shapes::ShapeRef.new(shape: CommonAttributeOrConditionList, location_name: "OrConditions"))
3274
3313
  ControlPlaneAttributeFilter.add_member(:and_condition, Shapes::ShapeRef.new(shape: CommonAttributeAndCondition, location_name: "AndCondition"))
3275
3314
  ControlPlaneAttributeFilter.add_member(:tag_condition, Shapes::ShapeRef.new(shape: TagCondition, location_name: "TagCondition"))
@@ -3312,6 +3351,18 @@ module Aws::Connect
3312
3351
  CreateAttachedFileResponse.add_member(:file_status, Shapes::ShapeRef.new(shape: FileStatusType, location_name: "FileStatus"))
3313
3352
  CreateAttachedFileResponse.struct_class = Types::CreateAttachedFileResponse
3314
3353
 
3354
+ CreateAuthCodeRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location: "uri", location_name: "InstanceId"))
3355
+ CreateAuthCodeRequest.add_member(:scope, Shapes::ShapeRef.new(shape: AuthScope, required: true, location_name: "Scope"))
3356
+ CreateAuthCodeRequest.add_member(:max_session_duration_minutes, Shapes::ShapeRef.new(shape: MaxSessionDurationMinutes, location_name: "MaxSessionDurationMinutes", metadata: {"box" => true}))
3357
+ CreateAuthCodeRequest.add_member(:session_inactivity_duration_minutes, Shapes::ShapeRef.new(shape: SessionInactivityDurationMinutes, required: true, location_name: "SessionInactivityDurationMinutes"))
3358
+ CreateAuthCodeRequest.struct_class = Types::CreateAuthCodeRequest
3359
+
3360
+ CreateAuthCodeResponse.add_member(:auth_code, Shapes::ShapeRef.new(shape: AuthCode, location_name: "AuthCode"))
3361
+ CreateAuthCodeResponse.add_member(:session_id, Shapes::ShapeRef.new(shape: SessionId, location_name: "SessionId"))
3362
+ CreateAuthCodeResponse.add_member(:entity_type, Shapes::ShapeRef.new(shape: AuthCodeEntityType, location_name: "EntityType"))
3363
+ CreateAuthCodeResponse.add_member(:entity_id, Shapes::ShapeRef.new(shape: EntityId, location_name: "EntityId"))
3364
+ CreateAuthCodeResponse.struct_class = Types::CreateAuthCodeResponse
3365
+
3315
3366
  CreateCaseActionDefinition.add_member(:fields, Shapes::ShapeRef.new(shape: FieldValues, required: true, location_name: "Fields"))
3316
3367
  CreateCaseActionDefinition.add_member(:template_id, Shapes::ShapeRef.new(shape: TemplateId, required: true, location_name: "TemplateId"))
3317
3368
  CreateCaseActionDefinition.struct_class = Types::CreateCaseActionDefinition
@@ -3795,9 +3846,9 @@ module Aws::Connect
3795
3846
  CreatedByInfo.struct_class = Types::CreatedByInfo
3796
3847
 
3797
3848
  Credentials.add_member(:access_token, Shapes::ShapeRef.new(shape: SecurityToken, location_name: "AccessToken"))
3798
- Credentials.add_member(:access_token_expiration, Shapes::ShapeRef.new(shape: timestamp, location_name: "AccessTokenExpiration"))
3849
+ Credentials.add_member(:access_token_expiration, Shapes::ShapeRef.new(shape: Timestamp, location_name: "AccessTokenExpiration"))
3799
3850
  Credentials.add_member(:refresh_token, Shapes::ShapeRef.new(shape: SecurityToken, location_name: "RefreshToken"))
3800
- Credentials.add_member(:refresh_token_expiration, Shapes::ShapeRef.new(shape: timestamp, location_name: "RefreshTokenExpiration"))
3851
+ Credentials.add_member(:refresh_token_expiration, Shapes::ShapeRef.new(shape: Timestamp, location_name: "RefreshTokenExpiration"))
3801
3852
  Credentials.struct_class = Types::Credentials
3802
3853
 
3803
3854
  CrossChannelBehavior.add_member(:behavior_type, Shapes::ShapeRef.new(shape: BehaviorType, required: true, location_name: "BehaviorType"))
@@ -4120,6 +4171,12 @@ module Aws::Connect
4120
4171
  DeleteSecurityProfileRequest.add_member(:security_profile_id, Shapes::ShapeRef.new(shape: SecurityProfileId, required: true, location: "uri", location_name: "SecurityProfileId"))
4121
4172
  DeleteSecurityProfileRequest.struct_class = Types::DeleteSecurityProfileRequest
4122
4173
 
4174
+ DeleteSessionRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location: "uri", location_name: "InstanceId"))
4175
+ DeleteSessionRequest.add_member(:session_id, Shapes::ShapeRef.new(shape: SessionId, required: true, location: "uri", location_name: "SessionId"))
4176
+ DeleteSessionRequest.struct_class = Types::DeleteSessionRequest
4177
+
4178
+ DeleteSessionResponse.struct_class = Types::DeleteSessionResponse
4179
+
4123
4180
  DeleteTaskTemplateRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location: "uri", location_name: "InstanceId"))
4124
4181
  DeleteTaskTemplateRequest.add_member(:task_template_id, Shapes::ShapeRef.new(shape: TaskTemplateId, required: true, location: "uri", location_name: "TaskTemplateId"))
4125
4182
  DeleteTaskTemplateRequest.struct_class = Types::DeleteTaskTemplateRequest
@@ -5431,10 +5488,10 @@ module Aws::Connect
5431
5488
  GetFederationTokenRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location: "uri", location_name: "InstanceId"))
5432
5489
  GetFederationTokenRequest.struct_class = Types::GetFederationTokenRequest
5433
5490
 
5491
+ GetFederationTokenResponse.add_member(:user_id, Shapes::ShapeRef.new(shape: AgentResourceId, location_name: "UserId"))
5492
+ GetFederationTokenResponse.add_member(:user_arn, Shapes::ShapeRef.new(shape: ARN, location_name: "UserArn"))
5434
5493
  GetFederationTokenResponse.add_member(:credentials, Shapes::ShapeRef.new(shape: Credentials, location_name: "Credentials"))
5435
5494
  GetFederationTokenResponse.add_member(:sign_in_url, Shapes::ShapeRef.new(shape: Url, location_name: "SignInUrl"))
5436
- GetFederationTokenResponse.add_member(:user_arn, Shapes::ShapeRef.new(shape: ARN, location_name: "UserArn"))
5437
- GetFederationTokenResponse.add_member(:user_id, Shapes::ShapeRef.new(shape: AgentResourceId, location_name: "UserId"))
5438
5495
  GetFederationTokenResponse.struct_class = Types::GetFederationTokenResponse
5439
5496
 
5440
5497
  GetFlowAssociationRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location: "uri", location_name: "InstanceId"))
@@ -7330,6 +7387,14 @@ module Aws::Connect
7330
7387
 
7331
7388
  RecipientList.member = Shapes::ShapeRef.new(shape: ARN)
7332
7389
 
7390
+ RecommenderConfig.add_member(:domain_name, Shapes::ShapeRef.new(shape: PersonalizeDomainName, required: true, location_name: "DomainName"))
7391
+ RecommenderConfig.add_member(:recommender_name, Shapes::ShapeRef.new(shape: RecommenderName, required: true, location_name: "RecommenderName"))
7392
+ RecommenderConfig.add_member(:context, Shapes::ShapeRef.new(shape: RecommenderContext, location_name: "Context"))
7393
+ RecommenderConfig.struct_class = Types::RecommenderConfig
7394
+
7395
+ RecommenderContext.key = Shapes::ShapeRef.new(shape: RecommenderContextKey)
7396
+ RecommenderContext.value = Shapes::ShapeRef.new(shape: RecommenderContextValue)
7397
+
7333
7398
  RecordIds.member = Shapes::ShapeRef.new(shape: DataTableId)
7334
7399
 
7335
7400
  RecordPrimaryValue.add_member(:record_id, Shapes::ShapeRef.new(shape: DataTableId, location_name: "RecordId"))
@@ -8114,6 +8179,18 @@ module Aws::Connect
8114
8179
 
8115
8180
  SendOutboundEmailResponse.struct_class = Types::SendOutboundEmailResponse
8116
8181
 
8182
+ SendOutboundWebNotificationRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location: "uri", location_name: "InstanceId"))
8183
+ SendOutboundWebNotificationRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "ClientToken", metadata: {"idempotencyToken" => true}))
8184
+ SendOutboundWebNotificationRequest.add_member(:browser_id, Shapes::ShapeRef.new(shape: WebBrowserId, required: true, location_name: "BrowserId"))
8185
+ SendOutboundWebNotificationRequest.add_member(:session_id, Shapes::ShapeRef.new(shape: WebSessionId, required: true, location_name: "SessionId"))
8186
+ SendOutboundWebNotificationRequest.add_member(:expires_at, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "ExpiresAt"))
8187
+ SendOutboundWebNotificationRequest.add_member(:source, Shapes::ShapeRef.new(shape: WebNotificationSource, required: true, location_name: "Source"))
8188
+ SendOutboundWebNotificationRequest.add_member(:destination, Shapes::ShapeRef.new(shape: WidgetDestination, required: true, location_name: "Destination"))
8189
+ SendOutboundWebNotificationRequest.add_member(:content, Shapes::ShapeRef.new(shape: WebNotificationContent, required: true, location_name: "Content"))
8190
+ SendOutboundWebNotificationRequest.struct_class = Types::SendOutboundWebNotificationRequest
8191
+
8192
+ SendOutboundWebNotificationResponse.struct_class = Types::SendOutboundWebNotificationResponse
8193
+
8117
8194
  SentimentConfiguration.add_member(:behavior, Shapes::ShapeRef.new(shape: Behavior, required: true, location_name: "Behavior"))
8118
8195
  SentimentConfiguration.struct_class = Types::SentimentConfiguration
8119
8196
 
@@ -9546,8 +9623,20 @@ module Aws::Connect
9546
9623
  VoiceRecordingConfiguration.add_member(:ivr_recording_track, Shapes::ShapeRef.new(shape: IvrRecordingTrack, location_name: "IvrRecordingTrack"))
9547
9624
  VoiceRecordingConfiguration.struct_class = Types::VoiceRecordingConfiguration
9548
9625
 
9626
+ WebNotificationContent.add_member(:type, Shapes::ShapeRef.new(shape: NotificationType, required: true, location_name: "Type"))
9627
+ WebNotificationContent.add_member(:view_arn, Shapes::ShapeRef.new(shape: ViewArn, location_name: "ViewArn"))
9628
+ WebNotificationContent.add_member(:attributes, Shapes::ShapeRef.new(shape: ContentAttributes, location_name: "Attributes"))
9629
+ WebNotificationContent.struct_class = Types::WebNotificationContent
9630
+
9631
+ WebNotificationSource.add_member(:source_campaign, Shapes::ShapeRef.new(shape: SourceCampaign, required: true, location_name: "SourceCampaign"))
9632
+ WebNotificationSource.struct_class = Types::WebNotificationSource
9633
+
9549
9634
  WeekdayOccurrenceList.member = Shapes::ShapeRef.new(shape: WeekdayOccurrenceInteger)
9550
9635
 
9636
+ WidgetDestination.add_member(:widget_id, Shapes::ShapeRef.new(shape: WidgetId, required: true, location_name: "WidgetId"))
9637
+ WidgetDestination.add_member(:profile_id, Shapes::ShapeRef.new(shape: CustomerProfileId, required: true, location_name: "ProfileId"))
9638
+ WidgetDestination.struct_class = Types::WidgetDestination
9639
+
9551
9640
  WisdomInfo.add_member(:session_arn, Shapes::ShapeRef.new(shape: ARN, location_name: "SessionArn"))
9552
9641
  WisdomInfo.add_member(:ai_agents, Shapes::ShapeRef.new(shape: AiAgents, location_name: "AiAgents"))
9553
9642
  WisdomInfo.struct_class = Types::WisdomInfo
@@ -10152,6 +10241,20 @@ module Aws::Connect
10152
10241
  o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
10153
10242
  end)
10154
10243
 
10244
+ api.add_operation(:create_auth_code, Seahorse::Model::Operation.new.tap do |o|
10245
+ o.name = "CreateAuthCode"
10246
+ o.http_method = "POST"
10247
+ o.http_request_uri = "/auth/code/{InstanceId}"
10248
+ o.input = Shapes::ShapeRef.new(shape: CreateAuthCodeRequest)
10249
+ o.output = Shapes::ShapeRef.new(shape: CreateAuthCodeResponse)
10250
+ o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
10251
+ o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
10252
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
10253
+ o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
10254
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
10255
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
10256
+ end)
10257
+
10155
10258
  api.add_operation(:create_contact, Seahorse::Model::Operation.new.tap do |o|
10156
10259
  o.name = "CreateContact"
10157
10260
  o.http_method = "PUT"
@@ -11047,6 +11150,20 @@ module Aws::Connect
11047
11150
  o.errors << Shapes::ShapeRef.new(shape: ResourceInUseException)
11048
11151
  end)
11049
11152
 
11153
+ api.add_operation(:delete_session, Seahorse::Model::Operation.new.tap do |o|
11154
+ o.name = "DeleteSession"
11155
+ o.http_method = "DELETE"
11156
+ o.http_request_uri = "/auth/sessions/{InstanceId}/{SessionId}"
11157
+ o.input = Shapes::ShapeRef.new(shape: DeleteSessionRequest)
11158
+ o.output = Shapes::ShapeRef.new(shape: DeleteSessionResponse)
11159
+ o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
11160
+ o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
11161
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
11162
+ o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
11163
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
11164
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
11165
+ end)
11166
+
11050
11167
  api.add_operation(:delete_task_template, Seahorse::Model::Operation.new.tap do |o|
11051
11168
  o.name = "DeleteTaskTemplate"
11052
11169
  o.http_method = "DELETE"
@@ -12049,6 +12166,7 @@ module Aws::Connect
12049
12166
  o.errors << Shapes::ShapeRef.new(shape: UserNotFoundException)
12050
12167
  o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
12051
12168
  o.errors << Shapes::ShapeRef.new(shape: DuplicateResourceException)
12169
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
12052
12170
  end)
12053
12171
 
12054
12172
  api.add_operation(:get_flow_association, Seahorse::Model::Operation.new.tap do |o|
@@ -14048,6 +14166,19 @@ module Aws::Connect
14048
14166
  o.errors << Shapes::ShapeRef.new(shape: IdempotencyException)
14049
14167
  end)
14050
14168
 
14169
+ api.add_operation(:send_outbound_web_notification, Seahorse::Model::Operation.new.tap do |o|
14170
+ o.name = "SendOutboundWebNotification"
14171
+ o.http_method = "POST"
14172
+ o.http_request_uri = "/instance/{InstanceId}/outbound-web-notification"
14173
+ o.input = Shapes::ShapeRef.new(shape: SendOutboundWebNotificationRequest)
14174
+ o.output = Shapes::ShapeRef.new(shape: SendOutboundWebNotificationResponse)
14175
+ o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
14176
+ o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
14177
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
14178
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
14179
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
14180
+ end)
14181
+
14051
14182
  api.add_operation(:start_attached_file_upload, Seahorse::Model::Operation.new.tap do |o|
14052
14183
  o.name = "StartAttachedFileUpload"
14053
14184
  o.http_method = "PUT"
@@ -2103,6 +2103,37 @@ module Aws::Connect
2103
2103
  include Aws::Structure
2104
2104
  end
2105
2105
 
2106
+ # Contains the scope configuration for an authorization code. Defines
2107
+ # the permissions and access boundaries for the session.
2108
+ #
2109
+ # @!attribute [rw] security_profile_ids
2110
+ # The list of security profile identifiers to scope the session to.
2111
+ # Maximum of 10 security profiles.
2112
+ # @return [Array<String>]
2113
+ #
2114
+ # @!attribute [rw] entity_type
2115
+ # The type of entity to scope the session to.
2116
+ # @return [String]
2117
+ #
2118
+ # @!attribute [rw] entity_id
2119
+ # The identifier of the entity to scope the session to.
2120
+ # @return [String]
2121
+ #
2122
+ # @!attribute [rw] domain_name
2123
+ # The name of the Customer Profiles domain to scope the session to.
2124
+ # @return [String]
2125
+ #
2126
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/AuthScope AWS API Documentation
2127
+ #
2128
+ class AuthScope < Struct.new(
2129
+ :security_profile_ids,
2130
+ :entity_type,
2131
+ :entity_id,
2132
+ :domain_name)
2133
+ SENSITIVE = []
2134
+ include Aws::Structure
2135
+ end
2136
+
2106
2137
  # This API is in preview release for Connect Customer and is subject to
2107
2138
  # change. To request access to this API, contact Amazon Web Services
2108
2139
  # Support.
@@ -5086,6 +5117,23 @@ module Aws::Connect
5086
5117
  include Aws::Structure
5087
5118
  end
5088
5119
 
5120
+ # Optional attributes used to populate the content of an outbound web
5121
+ # notification, such as recommender configuration for personalized
5122
+ # content.
5123
+ #
5124
+ # @!attribute [rw] recommender_config
5125
+ # Configuration for the recommender used to generate personalized
5126
+ # recommendations for the notification content.
5127
+ # @return [Types::RecommenderConfig]
5128
+ #
5129
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ContentAttributes AWS API Documentation
5130
+ #
5131
+ class ContentAttributes < Struct.new(
5132
+ :recommender_config)
5133
+ SENSITIVE = []
5134
+ include Aws::Structure
5135
+ end
5136
+
5089
5137
  # An object that can be used to specify Tag conditions inside the
5090
5138
  # `SearchFilter`. This accepts an `OR` or `AND` (List of List) input
5091
5139
  # where:
@@ -5358,6 +5406,70 @@ module Aws::Connect
5358
5406
  include Aws::Structure
5359
5407
  end
5360
5408
 
5409
+ # @!attribute [rw] instance_id
5410
+ # The identifier of the Connect Customer instance. You can [find the
5411
+ # instance ID][1] in the Amazon Resource Name (ARN) of the instance.
5412
+ #
5413
+ #
5414
+ #
5415
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
5416
+ # @return [String]
5417
+ #
5418
+ # @!attribute [rw] scope
5419
+ # The scope for the authorization code. Defines the permissions and
5420
+ # access boundaries for the session.
5421
+ # @return [Types::AuthScope]
5422
+ #
5423
+ # @!attribute [rw] max_session_duration_minutes
5424
+ # The maximum duration of the session, in minutes. Minimum value of
5425
+ # 1440 (24 hours). Maximum value of 43200 (30 days). If no value is
5426
+ # provided, the session will expire after 400 days.
5427
+ # @return [Integer]
5428
+ #
5429
+ # @!attribute [rw] session_inactivity_duration_minutes
5430
+ # The duration of inactivity, in minutes, after which the session
5431
+ # expires. Minimum value of 1440 (24 hours). Maximum value of 20160
5432
+ # (14 days).
5433
+ # @return [Integer]
5434
+ #
5435
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateAuthCodeRequest AWS API Documentation
5436
+ #
5437
+ class CreateAuthCodeRequest < Struct.new(
5438
+ :instance_id,
5439
+ :scope,
5440
+ :max_session_duration_minutes,
5441
+ :session_inactivity_duration_minutes)
5442
+ SENSITIVE = []
5443
+ include Aws::Structure
5444
+ end
5445
+
5446
+ # @!attribute [rw] auth_code
5447
+ # The authorization code to use for establishing a session.
5448
+ # @return [String]
5449
+ #
5450
+ # @!attribute [rw] session_id
5451
+ # The identifier of the session created with the authorization code.
5452
+ # @return [String]
5453
+ #
5454
+ # @!attribute [rw] entity_type
5455
+ # The type of entity associated with the authorization code.
5456
+ # @return [String]
5457
+ #
5458
+ # @!attribute [rw] entity_id
5459
+ # The identifier of the entity associated with the authorization code.
5460
+ # @return [String]
5461
+ #
5462
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateAuthCodeResponse AWS API Documentation
5463
+ #
5464
+ class CreateAuthCodeResponse < Struct.new(
5465
+ :auth_code,
5466
+ :session_id,
5467
+ :entity_type,
5468
+ :entity_id)
5469
+ SENSITIVE = [:auth_code]
5470
+ include Aws::Structure
5471
+ end
5472
+
5361
5473
  # The `CreateCase` action definition.
5362
5474
  #
5363
5475
  # @!attribute [rw] fields
@@ -9736,6 +9848,32 @@ module Aws::Connect
9736
9848
  include Aws::Structure
9737
9849
  end
9738
9850
 
9851
+ # @!attribute [rw] instance_id
9852
+ # The identifier of the Connect Customer instance. You can [find the
9853
+ # instance ID][1] in the Amazon Resource Name (ARN) of the instance.
9854
+ #
9855
+ #
9856
+ #
9857
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
9858
+ # @return [String]
9859
+ #
9860
+ # @!attribute [rw] session_id
9861
+ # The identifier of the session to delete.
9862
+ # @return [String]
9863
+ #
9864
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DeleteSessionRequest AWS API Documentation
9865
+ #
9866
+ class DeleteSessionRequest < Struct.new(
9867
+ :instance_id,
9868
+ :session_id)
9869
+ SENSITIVE = []
9870
+ include Aws::Structure
9871
+ end
9872
+
9873
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DeleteSessionResponse AWS API Documentation
9874
+ #
9875
+ class DeleteSessionResponse < Aws::EmptyStructure; end
9876
+
9739
9877
  # @!attribute [rw] instance_id
9740
9878
  # The identifier of the Connect Customer instance. You can [find the
9741
9879
  # instance ID][1] in the Amazon Resource Name (ARN) of the instance.
@@ -15985,30 +16123,30 @@ module Aws::Connect
15985
16123
  include Aws::Structure
15986
16124
  end
15987
16125
 
15988
- # @!attribute [rw] credentials
15989
- # The credentials to use for federation.
15990
- # @return [Types::Credentials]
15991
- #
15992
- # @!attribute [rw] sign_in_url
15993
- # The URL to sign into the user's instance.
16126
+ # @!attribute [rw] user_id
16127
+ # The identifier for the user. This can be the ID or the ARN of the
16128
+ # user.
15994
16129
  # @return [String]
15995
16130
  #
15996
16131
  # @!attribute [rw] user_arn
15997
16132
  # The Amazon Resource Name (ARN) of the user.
15998
16133
  # @return [String]
15999
16134
  #
16000
- # @!attribute [rw] user_id
16001
- # The identifier for the user. This can be the ID or the ARN of the
16002
- # user.
16135
+ # @!attribute [rw] credentials
16136
+ # The credentials to use for federation.
16137
+ # @return [Types::Credentials]
16138
+ #
16139
+ # @!attribute [rw] sign_in_url
16140
+ # The URL to sign into the user's instance.
16003
16141
  # @return [String]
16004
16142
  #
16005
16143
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/GetFederationTokenResponse AWS API Documentation
16006
16144
  #
16007
16145
  class GetFederationTokenResponse < Struct.new(
16008
- :credentials,
16009
- :sign_in_url,
16146
+ :user_id,
16010
16147
  :user_arn,
16011
- :user_id)
16148
+ :credentials,
16149
+ :sign_in_url)
16012
16150
  SENSITIVE = [:credentials]
16013
16151
  include Aws::Structure
16014
16152
  end
@@ -27789,6 +27927,33 @@ module Aws::Connect
27789
27927
  class Unknown < RealtimeContactAnalysisSegment; end
27790
27928
  end
27791
27929
 
27930
+ # Configuration for the recommender used to generate personalized
27931
+ # recommendations included in an outbound web notification.
27932
+ #
27933
+ # @!attribute [rw] domain_name
27934
+ # The name of the Amazon Personalize domain that hosts the
27935
+ # recommender.
27936
+ # @return [String]
27937
+ #
27938
+ # @!attribute [rw] recommender_name
27939
+ # The name of the recommender used to generate the recommendations.
27940
+ # @return [String]
27941
+ #
27942
+ # @!attribute [rw] context
27943
+ # A map of contextual key-value pairs supplied to the recommender to
27944
+ # influence the recommendations returned.
27945
+ # @return [Hash<String,String>]
27946
+ #
27947
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/RecommenderConfig AWS API Documentation
27948
+ #
27949
+ class RecommenderConfig < Struct.new(
27950
+ :domain_name,
27951
+ :recommender_name,
27952
+ :context)
27953
+ SENSITIVE = []
27954
+ include Aws::Structure
27955
+ end
27956
+
27792
27957
  # A record primary value.
27793
27958
  #
27794
27959
  # @!attribute [rw] record_id
@@ -31698,6 +31863,82 @@ module Aws::Connect
31698
31863
  #
31699
31864
  class SendOutboundEmailResponse < Aws::EmptyStructure; end
31700
31865
 
31866
+ # @!attribute [rw] instance_id
31867
+ # The identifier of the Connect Customer instance. You can [find the
31868
+ # instance ID][1] in the Amazon Resource Name (ARN) of the instance.
31869
+ #
31870
+ #
31871
+ #
31872
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
31873
+ # @return [String]
31874
+ #
31875
+ # @!attribute [rw] client_token
31876
+ # A unique, case-sensitive identifier that you provide to ensure the
31877
+ # idempotency of the request. If not provided, the Amazon Web Services
31878
+ # SDK populates this field. For more information about idempotency,
31879
+ # see [Making retries safe with idempotent APIs][1].
31880
+ #
31881
+ # **A suitable default value is auto-generated.** You should normally
31882
+ # not need to pass this option.
31883
+ #
31884
+ #
31885
+ #
31886
+ # [1]: https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/
31887
+ # @return [String]
31888
+ #
31889
+ # @!attribute [rw] browser_id
31890
+ # A unique identifier for the customer's web browser instance to
31891
+ # which the notification is being sent.
31892
+ # @return [String]
31893
+ #
31894
+ # @!attribute [rw] session_id
31895
+ # A unique identifier for the customer's web session to which the
31896
+ # notification is being sent.
31897
+ # @return [String]
31898
+ #
31899
+ # @!attribute [rw] expires_at
31900
+ # The timestamp, in Unix epoch time format, at which the web
31901
+ # notification expires. After this time, the notification is no longer
31902
+ # delivered to the customer's browser.
31903
+ # @return [Time]
31904
+ #
31905
+ # @!attribute [rw] source
31906
+ # The source of the web notification. A `SourceCampaign` object
31907
+ # identifies the campaign and outbound request that triggered this
31908
+ # notification.
31909
+ # @return [Types::WebNotificationSource]
31910
+ #
31911
+ # @!attribute [rw] destination
31912
+ # The destination for the web notification, specifying the
31913
+ # communication widget that delivers the notification and the customer
31914
+ # profile of the recipient.
31915
+ # @return [Types::WidgetDestination]
31916
+ #
31917
+ # @!attribute [rw] content
31918
+ # The content of the web notification, including the notification
31919
+ # type, the view to render, and any optional attributes used to
31920
+ # populate it.
31921
+ # @return [Types::WebNotificationContent]
31922
+ #
31923
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SendOutboundWebNotificationRequest AWS API Documentation
31924
+ #
31925
+ class SendOutboundWebNotificationRequest < Struct.new(
31926
+ :instance_id,
31927
+ :client_token,
31928
+ :browser_id,
31929
+ :session_id,
31930
+ :expires_at,
31931
+ :source,
31932
+ :destination,
31933
+ :content)
31934
+ SENSITIVE = []
31935
+ include Aws::Structure
31936
+ end
31937
+
31938
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SendOutboundWebNotificationResponse AWS API Documentation
31939
+ #
31940
+ class SendOutboundWebNotificationResponse < Aws::EmptyStructure; end
31941
+
31701
31942
  # The sentiment configuration for conversational analytics.
31702
31943
  #
31703
31944
  # @!attribute [rw] behavior
@@ -39228,6 +39469,73 @@ module Aws::Connect
39228
39469
  include Aws::Structure
39229
39470
  end
39230
39471
 
39472
+ # The content of an outbound web notification, including the
39473
+ # notification type, the view to render, and any optional attributes
39474
+ # used to populate the view.
39475
+ #
39476
+ # @!attribute [rw] type
39477
+ # The type of web notification to send.
39478
+ # @return [String]
39479
+ #
39480
+ # @!attribute [rw] view_arn
39481
+ # The Amazon Resource Name (ARN) of the view to render for the
39482
+ # notification.
39483
+ # @return [String]
39484
+ #
39485
+ # @!attribute [rw] attributes
39486
+ # Optional attributes used to populate the notification content, such
39487
+ # as recommender configuration for personalized content.
39488
+ # @return [Types::ContentAttributes]
39489
+ #
39490
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/WebNotificationContent AWS API Documentation
39491
+ #
39492
+ class WebNotificationContent < Struct.new(
39493
+ :type,
39494
+ :view_arn,
39495
+ :attributes)
39496
+ SENSITIVE = []
39497
+ include Aws::Structure
39498
+ end
39499
+
39500
+ # The source of an outbound web notification. Identifies the campaign
39501
+ # and outbound request that triggered the notification.
39502
+ #
39503
+ # @!attribute [rw] source_campaign
39504
+ # Information about the campaign that triggered the web notification,
39505
+ # including the campaign identifier and outbound request identifier.
39506
+ # @return [Types::SourceCampaign]
39507
+ #
39508
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/WebNotificationSource AWS API Documentation
39509
+ #
39510
+ class WebNotificationSource < Struct.new(
39511
+ :source_campaign)
39512
+ SENSITIVE = []
39513
+ include Aws::Structure
39514
+ end
39515
+
39516
+ # The destination for an outbound web notification, specifying the
39517
+ # communication widget that delivers the notification and the customer
39518
+ # profile of the recipient.
39519
+ #
39520
+ # @!attribute [rw] widget_id
39521
+ # The identifier of the communication widget that delivers the
39522
+ # notification to the customer's browser.
39523
+ # @return [String]
39524
+ #
39525
+ # @!attribute [rw] profile_id
39526
+ # The identifier of the customer profile associated with the browser
39527
+ # session that should receive the notification.
39528
+ # @return [String]
39529
+ #
39530
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/WidgetDestination AWS API Documentation
39531
+ #
39532
+ class WidgetDestination < Struct.new(
39533
+ :widget_id,
39534
+ :profile_id)
39535
+ SENSITIVE = []
39536
+ include Aws::Structure
39537
+ end
39538
+
39231
39539
  # Information about Connect Customer Wisdom.
39232
39540
  #
39233
39541
  # @!attribute [rw] session_arn
@@ -54,7 +54,7 @@ module Aws::Connect
54
54
  autoload :EndpointProvider, 'aws-sdk-connect/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-connect/endpoints'
56
56
 
57
- GEM_VERSION = '1.261.0'
57
+ GEM_VERSION = '1.263.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -556,6 +556,27 @@ module Aws
556
556
  ) -> _CreateAttachedFileResponseSuccess
557
557
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateAttachedFileResponseSuccess
558
558
 
559
+ interface _CreateAuthCodeResponseSuccess
560
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateAuthCodeResponse]
561
+ def auth_code: () -> ::String
562
+ def session_id: () -> ::String
563
+ def entity_type: () -> ("CUSTOMER_PROFILE")
564
+ def entity_id: () -> ::String
565
+ end
566
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#create_auth_code-instance_method
567
+ def create_auth_code: (
568
+ instance_id: ::String,
569
+ scope: {
570
+ security_profile_ids: Array[::String]?,
571
+ entity_type: ("CUSTOMER_PROFILE"),
572
+ entity_id: ::String?,
573
+ domain_name: ::String?
574
+ },
575
+ ?max_session_duration_minutes: ::Integer,
576
+ session_inactivity_duration_minutes: ::Integer
577
+ ) -> _CreateAuthCodeResponseSuccess
578
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateAuthCodeResponseSuccess
579
+
559
580
  interface _CreateContactResponseSuccess
560
581
  include ::Seahorse::Client::_ResponseSuccess[Types::CreateContactResponse]
561
582
  def contact_id: () -> ::String
@@ -1518,6 +1539,16 @@ module Aws
1518
1539
  ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1519
1540
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1520
1541
 
1542
+ interface _DeleteSessionResponseSuccess
1543
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteSessionResponse]
1544
+ end
1545
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#delete_session-instance_method
1546
+ def delete_session: (
1547
+ instance_id: ::String,
1548
+ session_id: ::String
1549
+ ) -> _DeleteSessionResponseSuccess
1550
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteSessionResponseSuccess
1551
+
1521
1552
  interface _DeleteTaskTemplateResponseSuccess
1522
1553
  include ::Seahorse::Client::_ResponseSuccess[Types::DeleteTaskTemplateResponse]
1523
1554
  end
@@ -2387,10 +2418,10 @@ module Aws
2387
2418
 
2388
2419
  interface _GetFederationTokenResponseSuccess
2389
2420
  include ::Seahorse::Client::_ResponseSuccess[Types::GetFederationTokenResponse]
2421
+ def user_id: () -> ::String
2422
+ def user_arn: () -> ::String
2390
2423
  def credentials: () -> Types::Credentials
2391
2424
  def sign_in_url: () -> ::String
2392
- def user_arn: () -> ::String
2393
- def user_id: () -> ::String
2394
2425
  end
2395
2426
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#get_federation_token-instance_method
2396
2427
  def get_federation_token: (
@@ -4306,6 +4337,40 @@ module Aws
4306
4337
  ) -> _SendOutboundEmailResponseSuccess
4307
4338
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SendOutboundEmailResponseSuccess
4308
4339
 
4340
+ interface _SendOutboundWebNotificationResponseSuccess
4341
+ include ::Seahorse::Client::_ResponseSuccess[Types::SendOutboundWebNotificationResponse]
4342
+ end
4343
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#send_outbound_web_notification-instance_method
4344
+ def send_outbound_web_notification: (
4345
+ instance_id: ::String,
4346
+ ?client_token: ::String,
4347
+ browser_id: ::String,
4348
+ session_id: ::String,
4349
+ expires_at: ::Time,
4350
+ source: {
4351
+ source_campaign: {
4352
+ campaign_id: ::String?,
4353
+ outbound_request_id: ::String?
4354
+ }
4355
+ },
4356
+ destination: {
4357
+ widget_id: ::String,
4358
+ profile_id: ::String
4359
+ },
4360
+ content: {
4361
+ type: ("WIDGET_VIEW" | "WIDGET_ACTION"),
4362
+ view_arn: ::String?,
4363
+ attributes: {
4364
+ recommender_config: {
4365
+ domain_name: ::String,
4366
+ recommender_name: ::String,
4367
+ context: Hash[::String, ::String]?
4368
+ }?
4369
+ }?
4370
+ }
4371
+ ) -> _SendOutboundWebNotificationResponseSuccess
4372
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SendOutboundWebNotificationResponseSuccess
4373
+
4309
4374
  interface _StartAttachedFileUploadResponseSuccess
4310
4375
  include ::Seahorse::Client::_ResponseSuccess[Types::StartAttachedFileUploadResponse]
4311
4376
  def file_arn: () -> ::String
data/sig/types.rbs CHANGED
@@ -528,6 +528,14 @@ module Aws::Connect
528
528
  SENSITIVE: []
529
529
  end
530
530
 
531
+ class AuthScope
532
+ attr_accessor security_profile_ids: ::Array[::String]
533
+ attr_accessor entity_type: ("CUSTOMER_PROFILE")
534
+ attr_accessor entity_id: ::String
535
+ attr_accessor domain_name: ::String
536
+ SENSITIVE: []
537
+ end
538
+
531
539
  class AuthenticationProfile
532
540
  attr_accessor id: ::String
533
541
  attr_accessor arn: ::String
@@ -1238,6 +1246,11 @@ module Aws::Connect
1238
1246
  SENSITIVE: []
1239
1247
  end
1240
1248
 
1249
+ class ContentAttributes
1250
+ attr_accessor recommender_config: Types::RecommenderConfig
1251
+ SENSITIVE: []
1252
+ end
1253
+
1241
1254
  class ControlPlaneAttributeFilter
1242
1255
  attr_accessor or_conditions: ::Array[Types::CommonAttributeAndCondition]
1243
1256
  attr_accessor and_condition: Types::CommonAttributeAndCondition
@@ -1294,6 +1307,22 @@ module Aws::Connect
1294
1307
  SENSITIVE: []
1295
1308
  end
1296
1309
 
1310
+ class CreateAuthCodeRequest
1311
+ attr_accessor instance_id: ::String
1312
+ attr_accessor scope: Types::AuthScope
1313
+ attr_accessor max_session_duration_minutes: ::Integer
1314
+ attr_accessor session_inactivity_duration_minutes: ::Integer
1315
+ SENSITIVE: []
1316
+ end
1317
+
1318
+ class CreateAuthCodeResponse
1319
+ attr_accessor auth_code: ::String
1320
+ attr_accessor session_id: ::String
1321
+ attr_accessor entity_type: ("CUSTOMER_PROFILE")
1322
+ attr_accessor entity_id: ::String
1323
+ SENSITIVE: [:auth_code]
1324
+ end
1325
+
1297
1326
  class CreateCaseActionDefinition
1298
1327
  attr_accessor fields: ::Array[Types::FieldValue]
1299
1328
  attr_accessor template_id: ::String
@@ -2339,6 +2368,15 @@ module Aws::Connect
2339
2368
  SENSITIVE: []
2340
2369
  end
2341
2370
 
2371
+ class DeleteSessionRequest
2372
+ attr_accessor instance_id: ::String
2373
+ attr_accessor session_id: ::String
2374
+ SENSITIVE: []
2375
+ end
2376
+
2377
+ class DeleteSessionResponse < Aws::EmptyStructure
2378
+ end
2379
+
2342
2380
  class DeleteTaskTemplateRequest
2343
2381
  attr_accessor instance_id: ::String
2344
2382
  attr_accessor task_template_id: ::String
@@ -4043,10 +4081,10 @@ module Aws::Connect
4043
4081
  end
4044
4082
 
4045
4083
  class GetFederationTokenResponse
4084
+ attr_accessor user_id: ::String
4085
+ attr_accessor user_arn: ::String
4046
4086
  attr_accessor credentials: Types::Credentials
4047
4087
  attr_accessor sign_in_url: ::String
4048
- attr_accessor user_arn: ::String
4049
- attr_accessor user_id: ::String
4050
4088
  SENSITIVE: [:credentials]
4051
4089
  end
4052
4090
 
@@ -6442,6 +6480,13 @@ module Aws::Connect
6442
6480
  end
6443
6481
  end
6444
6482
 
6483
+ class RecommenderConfig
6484
+ attr_accessor domain_name: ::String
6485
+ attr_accessor recommender_name: ::String
6486
+ attr_accessor context: ::Hash[::String, ::String]
6487
+ SENSITIVE: []
6488
+ end
6489
+
6445
6490
  class RecordPrimaryValue
6446
6491
  attr_accessor record_id: ::String
6447
6492
  attr_accessor primary_values: ::Array[Types::PrimaryValueResponse]
@@ -7395,6 +7440,21 @@ module Aws::Connect
7395
7440
  class SendOutboundEmailResponse < Aws::EmptyStructure
7396
7441
  end
7397
7442
 
7443
+ class SendOutboundWebNotificationRequest
7444
+ attr_accessor instance_id: ::String
7445
+ attr_accessor client_token: ::String
7446
+ attr_accessor browser_id: ::String
7447
+ attr_accessor session_id: ::String
7448
+ attr_accessor expires_at: ::Time
7449
+ attr_accessor source: Types::WebNotificationSource
7450
+ attr_accessor destination: Types::WidgetDestination
7451
+ attr_accessor content: Types::WebNotificationContent
7452
+ SENSITIVE: []
7453
+ end
7454
+
7455
+ class SendOutboundWebNotificationResponse < Aws::EmptyStructure
7456
+ end
7457
+
7398
7458
  class SentimentConfiguration
7399
7459
  attr_accessor behavior: ("Enable" | "Disable")
7400
7460
  SENSITIVE: []
@@ -9162,6 +9222,24 @@ module Aws::Connect
9162
9222
  SENSITIVE: []
9163
9223
  end
9164
9224
 
9225
+ class WebNotificationContent
9226
+ attr_accessor type: ("WIDGET_VIEW" | "WIDGET_ACTION")
9227
+ attr_accessor view_arn: ::String
9228
+ attr_accessor attributes: Types::ContentAttributes
9229
+ SENSITIVE: []
9230
+ end
9231
+
9232
+ class WebNotificationSource
9233
+ attr_accessor source_campaign: Types::SourceCampaign
9234
+ SENSITIVE: []
9235
+ end
9236
+
9237
+ class WidgetDestination
9238
+ attr_accessor widget_id: ::String
9239
+ attr_accessor profile_id: ::String
9240
+ SENSITIVE: []
9241
+ end
9242
+
9165
9243
  class WisdomInfo
9166
9244
  attr_accessor session_arn: ::String
9167
9245
  attr_accessor ai_agents: ::Array[Types::AiAgentInfo]
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-connect
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.261.0
4
+ version: 1.263.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services