aws-sdk-connect 1.186.0 → 1.188.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -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.186.0'
57
+ GEM_VERSION = '1.188.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -143,7 +143,7 @@ module Aws
143
143
  instance_id: ::String,
144
144
  resource_id: ::String,
145
145
  flow_id: ::String,
146
- resource_type: ("SMS_PHONE_NUMBER" | "INBOUND_EMAIL" | "OUTBOUND_EMAIL")
146
+ resource_type: ("SMS_PHONE_NUMBER" | "INBOUND_EMAIL" | "OUTBOUND_EMAIL" | "ANALYTICS_CONNECTOR" | "WHATSAPP_MESSAGING_PHONE_NUMBER")
147
147
  ) -> _AssociateFlowResponseSuccess
148
148
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AssociateFlowResponseSuccess
149
149
 
@@ -317,7 +317,7 @@ module Aws
317
317
  def batch_get_flow_association: (
318
318
  instance_id: ::String,
319
319
  resource_ids: Array[::String],
320
- ?resource_type: ("VOICE_PHONE_NUMBER" | "INBOUND_EMAIL" | "OUTBOUND_EMAIL")
320
+ ?resource_type: ("WHATSAPP_MESSAGING_PHONE_NUMBER" | "VOICE_PHONE_NUMBER" | "INBOUND_EMAIL" | "OUTBOUND_EMAIL" | "ANALYTICS_CONNECTOR")
321
321
  ) -> _BatchGetFlowAssociationResponseSuccess
322
322
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _BatchGetFlowAssociationResponseSuccess
323
323
 
@@ -422,7 +422,9 @@ module Aws
422
422
  ?name: ::String,
423
423
  ?description: ::String,
424
424
  ?segment_attributes: Hash[::String, {
425
- value_string: ::String?
425
+ value_string: ::String?,
426
+ value_map: Hash[::String, untyped]?,
427
+ value_integer: ::Integer?
426
428
  }]
427
429
  ) -> _CreateContactResponseSuccess
428
430
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateContactResponseSuccess
@@ -625,7 +627,7 @@ module Aws
625
627
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#create_integration_association-instance_method
626
628
  def create_integration_association: (
627
629
  instance_id: ::String,
628
- integration_type: ("EVENT" | "VOICE_ID" | "PINPOINT_APP" | "WISDOM_ASSISTANT" | "WISDOM_KNOWLEDGE_BASE" | "WISDOM_QUICK_RESPONSES" | "Q_MESSAGE_TEMPLATES" | "CASES_DOMAIN" | "APPLICATION" | "FILE_SCANNER" | "SES_IDENTITY"),
630
+ integration_type: ("EVENT" | "VOICE_ID" | "PINPOINT_APP" | "WISDOM_ASSISTANT" | "WISDOM_KNOWLEDGE_BASE" | "WISDOM_QUICK_RESPONSES" | "Q_MESSAGE_TEMPLATES" | "CASES_DOMAIN" | "APPLICATION" | "FILE_SCANNER" | "SES_IDENTITY" | "ANALYTICS_CONNECTOR" | "CALL_TRANSFER_CONNECTOR"),
629
631
  integration_arn: ::String,
630
632
  ?source_application_url: ::String,
631
633
  ?source_application_name: ::String,
@@ -1613,7 +1615,7 @@ module Aws
1613
1615
  def disassociate_flow: (
1614
1616
  instance_id: ::String,
1615
1617
  resource_id: ::String,
1616
- resource_type: ("SMS_PHONE_NUMBER" | "INBOUND_EMAIL" | "OUTBOUND_EMAIL")
1618
+ resource_type: ("SMS_PHONE_NUMBER" | "INBOUND_EMAIL" | "OUTBOUND_EMAIL" | "ANALYTICS_CONNECTOR" | "WHATSAPP_MESSAGING_PHONE_NUMBER")
1617
1619
  ) -> _DisassociateFlowResponseSuccess
1618
1620
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DisassociateFlowResponseSuccess
1619
1621
 
@@ -1818,13 +1820,13 @@ module Aws
1818
1820
  include ::Seahorse::Client::_ResponseSuccess[Types::GetFlowAssociationResponse]
1819
1821
  def resource_id: () -> ::String
1820
1822
  def flow_id: () -> ::String
1821
- def resource_type: () -> ("SMS_PHONE_NUMBER" | "INBOUND_EMAIL" | "OUTBOUND_EMAIL")
1823
+ def resource_type: () -> ("SMS_PHONE_NUMBER" | "INBOUND_EMAIL" | "OUTBOUND_EMAIL" | "ANALYTICS_CONNECTOR" | "WHATSAPP_MESSAGING_PHONE_NUMBER")
1822
1824
  end
1823
1825
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#get_flow_association-instance_method
1824
1826
  def get_flow_association: (
1825
1827
  instance_id: ::String,
1826
1828
  resource_id: ::String,
1827
- resource_type: ("SMS_PHONE_NUMBER" | "INBOUND_EMAIL" | "OUTBOUND_EMAIL")
1829
+ resource_type: ("SMS_PHONE_NUMBER" | "INBOUND_EMAIL" | "OUTBOUND_EMAIL" | "ANALYTICS_CONNECTOR" | "WHATSAPP_MESSAGING_PHONE_NUMBER")
1828
1830
  ) -> _GetFlowAssociationResponseSuccess
1829
1831
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetFlowAssociationResponseSuccess
1830
1832
 
@@ -2172,7 +2174,7 @@ module Aws
2172
2174
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#list_flow_associations-instance_method
2173
2175
  def list_flow_associations: (
2174
2176
  instance_id: ::String,
2175
- ?resource_type: ("VOICE_PHONE_NUMBER" | "INBOUND_EMAIL" | "OUTBOUND_EMAIL"),
2177
+ ?resource_type: ("WHATSAPP_MESSAGING_PHONE_NUMBER" | "VOICE_PHONE_NUMBER" | "INBOUND_EMAIL" | "OUTBOUND_EMAIL" | "ANALYTICS_CONNECTOR"),
2176
2178
  ?next_token: ::String,
2177
2179
  ?max_results: ::Integer
2178
2180
  ) -> _ListFlowAssociationsResponseSuccess
@@ -2238,7 +2240,7 @@ module Aws
2238
2240
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#list_integration_associations-instance_method
2239
2241
  def list_integration_associations: (
2240
2242
  instance_id: ::String,
2241
- ?integration_type: ("EVENT" | "VOICE_ID" | "PINPOINT_APP" | "WISDOM_ASSISTANT" | "WISDOM_KNOWLEDGE_BASE" | "WISDOM_QUICK_RESPONSES" | "Q_MESSAGE_TEMPLATES" | "CASES_DOMAIN" | "APPLICATION" | "FILE_SCANNER" | "SES_IDENTITY"),
2243
+ ?integration_type: ("EVENT" | "VOICE_ID" | "PINPOINT_APP" | "WISDOM_ASSISTANT" | "WISDOM_KNOWLEDGE_BASE" | "WISDOM_QUICK_RESPONSES" | "Q_MESSAGE_TEMPLATES" | "CASES_DOMAIN" | "APPLICATION" | "FILE_SCANNER" | "SES_IDENTITY" | "ANALYTICS_CONNECTOR" | "CALL_TRANSFER_CONNECTOR"),
2242
2244
  ?next_token: ::String,
2243
2245
  ?max_results: ::Integer,
2244
2246
  ?integration_arn: ::String
@@ -2704,7 +2706,8 @@ module Aws
2704
2706
  def resume_contact_recording: (
2705
2707
  instance_id: ::String,
2706
2708
  contact_id: ::String,
2707
- initial_contact_id: ::String
2709
+ initial_contact_id: ::String,
2710
+ ?contact_recording_type: ("AGENT" | "IVR" | "SCREEN")
2708
2711
  ) -> _ResumeContactRecordingResponseSuccess
2709
2712
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ResumeContactRecordingResponseSuccess
2710
2713
 
@@ -3643,7 +3646,9 @@ module Aws
3643
3646
  },
3644
3647
  ?related_contact_id: ::String,
3645
3648
  ?segment_attributes: Hash[::String, {
3646
- value_string: ::String?
3649
+ value_string: ::String?,
3650
+ value_map: Hash[::String, untyped]?,
3651
+ value_integer: ::Integer?
3647
3652
  }]
3648
3653
  ) -> _StartChatContactResponseSuccess
3649
3654
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartChatContactResponseSuccess
@@ -3671,7 +3676,8 @@ module Aws
3671
3676
  contact_id: ::String,
3672
3677
  initial_contact_id: ::String,
3673
3678
  voice_recording_configuration: {
3674
- voice_recording_track: ("FROM_AGENT" | "TO_AGENT" | "ALL")?
3679
+ voice_recording_track: ("FROM_AGENT" | "TO_AGENT" | "ALL")?,
3680
+ ivr_recording_track: ("ALL")?
3675
3681
  }
3676
3682
  ) -> _StartContactRecordingResponseSuccess
3677
3683
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartContactRecordingResponseSuccess
@@ -3745,7 +3751,9 @@ module Aws
3745
3751
  ?related_contact_id: ::String,
3746
3752
  ?attributes: Hash[::String, ::String],
3747
3753
  ?segment_attributes: Hash[::String, {
3748
- value_string: ::String?
3754
+ value_string: ::String?,
3755
+ value_map: Hash[::String, untyped]?,
3756
+ value_integer: ::Integer?
3749
3757
  }],
3750
3758
  ?client_token: ::String
3751
3759
  ) -> _StartEmailContactResponseSuccess
@@ -3767,7 +3775,9 @@ module Aws
3767
3775
  },
3768
3776
  instance_id: ::String,
3769
3777
  segment_attributes: Hash[::String, {
3770
- value_string: ::String?
3778
+ value_string: ::String?,
3779
+ value_map: Hash[::String, untyped]?,
3780
+ value_integer: ::Integer?
3771
3781
  }],
3772
3782
  ?attributes: Hash[::String, ::String],
3773
3783
  contact_flow_id: ::String,
@@ -3897,7 +3907,9 @@ module Aws
3897
3907
  ?quick_connect_id: ::String,
3898
3908
  ?related_contact_id: ::String,
3899
3909
  ?segment_attributes: Hash[::String, {
3900
- value_string: ::String?
3910
+ value_string: ::String?,
3911
+ value_map: Hash[::String, untyped]?,
3912
+ value_integer: ::Integer?
3901
3913
  }]
3902
3914
  ) -> _StartTaskContactResponseSuccess
3903
3915
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartTaskContactResponseSuccess
@@ -3960,7 +3972,8 @@ module Aws
3960
3972
  def stop_contact_recording: (
3961
3973
  instance_id: ::String,
3962
3974
  contact_id: ::String,
3963
- initial_contact_id: ::String
3975
+ initial_contact_id: ::String,
3976
+ ?contact_recording_type: ("AGENT" | "IVR" | "SCREEN")
3964
3977
  ) -> _StopContactRecordingResponseSuccess
3965
3978
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StopContactRecordingResponseSuccess
3966
3979
 
@@ -4004,7 +4017,8 @@ module Aws
4004
4017
  def suspend_contact_recording: (
4005
4018
  instance_id: ::String,
4006
4019
  contact_id: ::String,
4007
- initial_contact_id: ::String
4020
+ initial_contact_id: ::String,
4021
+ ?contact_recording_type: ("AGENT" | "IVR" | "SCREEN")
4008
4022
  ) -> _SuspendContactRecordingResponseSuccess
4009
4023
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SuspendContactRecordingResponseSuccess
4010
4024
 
@@ -4101,8 +4115,24 @@ module Aws
4101
4115
  status_reason: ::String?
4102
4116
  }],
4103
4117
  ?segment_attributes: Hash[::String, {
4104
- value_string: ::String?
4105
- }]
4118
+ value_string: ::String?,
4119
+ value_map: Hash[::String, untyped]?,
4120
+ value_integer: ::Integer?
4121
+ }],
4122
+ ?queue_info: {
4123
+ id: ::String?
4124
+ },
4125
+ ?user_info: {
4126
+ user_id: ::String?
4127
+ },
4128
+ ?customer_endpoint: {
4129
+ type: ("TELEPHONE_NUMBER" | "VOIP" | "CONTACT_FLOW" | "CONNECT_PHONENUMBER_ARN" | "EMAIL_ADDRESS")?,
4130
+ address: ::String?
4131
+ },
4132
+ ?system_endpoint: {
4133
+ type: ("TELEPHONE_NUMBER" | "VOIP" | "CONTACT_FLOW" | "CONNECT_PHONENUMBER_ARN" | "EMAIL_ADDRESS")?,
4134
+ address: ::String?
4135
+ }
4106
4136
  ) -> _UpdateContactResponseSuccess
4107
4137
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateContactResponseSuccess
4108
4138
 
data/sig/types.rbs CHANGED
@@ -202,7 +202,7 @@ module Aws::Connect
202
202
  attr_accessor instance_id: ::String
203
203
  attr_accessor resource_id: ::String
204
204
  attr_accessor flow_id: ::String
205
- attr_accessor resource_type: ("SMS_PHONE_NUMBER" | "INBOUND_EMAIL" | "OUTBOUND_EMAIL")
205
+ attr_accessor resource_type: ("SMS_PHONE_NUMBER" | "INBOUND_EMAIL" | "OUTBOUND_EMAIL" | "ANALYTICS_CONNECTOR" | "WHATSAPP_MESSAGING_PHONE_NUMBER")
206
206
  SENSITIVE: []
207
207
  end
208
208
 
@@ -437,7 +437,7 @@ module Aws::Connect
437
437
  class BatchGetFlowAssociationRequest
438
438
  attr_accessor instance_id: ::String
439
439
  attr_accessor resource_ids: ::Array[::String]
440
- attr_accessor resource_type: ("VOICE_PHONE_NUMBER" | "INBOUND_EMAIL" | "OUTBOUND_EMAIL")
440
+ attr_accessor resource_type: ("WHATSAPP_MESSAGING_PHONE_NUMBER" | "VOICE_PHONE_NUMBER" | "INBOUND_EMAIL" | "OUTBOUND_EMAIL" | "ANALYTICS_CONNECTOR")
441
441
  SENSITIVE: []
442
442
  end
443
443
 
@@ -625,7 +625,6 @@ module Aws::Connect
625
625
  attr_accessor description: ::String
626
626
  attr_accessor content: ::String
627
627
  attr_accessor tags: ::Hash[::String, ::String]
628
- attr_accessor is_default: bool
629
628
  attr_accessor flow_content_sha_256: ::String
630
629
  attr_accessor version: ::Integer
631
630
  attr_accessor version_description: ::String
@@ -925,7 +924,7 @@ module Aws::Connect
925
924
 
926
925
  class CreateIntegrationAssociationRequest
927
926
  attr_accessor instance_id: ::String
928
- attr_accessor integration_type: ("EVENT" | "VOICE_ID" | "PINPOINT_APP" | "WISDOM_ASSISTANT" | "WISDOM_KNOWLEDGE_BASE" | "WISDOM_QUICK_RESPONSES" | "Q_MESSAGE_TEMPLATES" | "CASES_DOMAIN" | "APPLICATION" | "FILE_SCANNER" | "SES_IDENTITY")
927
+ attr_accessor integration_type: ("EVENT" | "VOICE_ID" | "PINPOINT_APP" | "WISDOM_ASSISTANT" | "WISDOM_KNOWLEDGE_BASE" | "WISDOM_QUICK_RESPONSES" | "Q_MESSAGE_TEMPLATES" | "CASES_DOMAIN" | "APPLICATION" | "FILE_SCANNER" | "SES_IDENTITY" | "ANALYTICS_CONNECTOR" | "CALL_TRANSFER_CONNECTOR")
929
928
  attr_accessor integration_arn: ::String
930
929
  attr_accessor source_application_url: ::String
931
930
  attr_accessor source_application_name: ::String
@@ -1817,7 +1816,7 @@ module Aws::Connect
1817
1816
  class DisassociateFlowRequest
1818
1817
  attr_accessor instance_id: ::String
1819
1818
  attr_accessor resource_id: ::String
1820
- attr_accessor resource_type: ("SMS_PHONE_NUMBER" | "INBOUND_EMAIL" | "OUTBOUND_EMAIL")
1819
+ attr_accessor resource_type: ("SMS_PHONE_NUMBER" | "INBOUND_EMAIL" | "OUTBOUND_EMAIL" | "ANALYTICS_CONNECTOR" | "WHATSAPP_MESSAGING_PHONE_NUMBER")
1821
1820
  SENSITIVE: []
1822
1821
  end
1823
1822
 
@@ -2307,7 +2306,7 @@ module Aws::Connect
2307
2306
  class FlowAssociationSummary
2308
2307
  attr_accessor resource_id: ::String
2309
2308
  attr_accessor flow_id: ::String
2310
- attr_accessor resource_type: ("VOICE_PHONE_NUMBER" | "INBOUND_EMAIL" | "OUTBOUND_EMAIL")
2309
+ attr_accessor resource_type: ("WHATSAPP_MESSAGING_PHONE_NUMBER" | "VOICE_PHONE_NUMBER" | "INBOUND_EMAIL" | "OUTBOUND_EMAIL" | "ANALYTICS_CONNECTOR")
2311
2310
  SENSITIVE: []
2312
2311
  end
2313
2312
 
@@ -2395,14 +2394,14 @@ module Aws::Connect
2395
2394
  class GetFlowAssociationRequest
2396
2395
  attr_accessor instance_id: ::String
2397
2396
  attr_accessor resource_id: ::String
2398
- attr_accessor resource_type: ("SMS_PHONE_NUMBER" | "INBOUND_EMAIL" | "OUTBOUND_EMAIL")
2397
+ attr_accessor resource_type: ("SMS_PHONE_NUMBER" | "INBOUND_EMAIL" | "OUTBOUND_EMAIL" | "ANALYTICS_CONNECTOR" | "WHATSAPP_MESSAGING_PHONE_NUMBER")
2399
2398
  SENSITIVE: []
2400
2399
  end
2401
2400
 
2402
2401
  class GetFlowAssociationResponse
2403
2402
  attr_accessor resource_id: ::String
2404
2403
  attr_accessor flow_id: ::String
2405
- attr_accessor resource_type: ("SMS_PHONE_NUMBER" | "INBOUND_EMAIL" | "OUTBOUND_EMAIL")
2404
+ attr_accessor resource_type: ("SMS_PHONE_NUMBER" | "INBOUND_EMAIL" | "OUTBOUND_EMAIL" | "ANALYTICS_CONNECTOR" | "WHATSAPP_MESSAGING_PHONE_NUMBER")
2406
2405
  SENSITIVE: []
2407
2406
  end
2408
2407
 
@@ -2743,7 +2742,7 @@ module Aws::Connect
2743
2742
  attr_accessor integration_association_id: ::String
2744
2743
  attr_accessor integration_association_arn: ::String
2745
2744
  attr_accessor instance_id: ::String
2746
- attr_accessor integration_type: ("EVENT" | "VOICE_ID" | "PINPOINT_APP" | "WISDOM_ASSISTANT" | "WISDOM_KNOWLEDGE_BASE" | "WISDOM_QUICK_RESPONSES" | "Q_MESSAGE_TEMPLATES" | "CASES_DOMAIN" | "APPLICATION" | "FILE_SCANNER" | "SES_IDENTITY")
2745
+ attr_accessor integration_type: ("EVENT" | "VOICE_ID" | "PINPOINT_APP" | "WISDOM_ASSISTANT" | "WISDOM_KNOWLEDGE_BASE" | "WISDOM_QUICK_RESPONSES" | "Q_MESSAGE_TEMPLATES" | "CASES_DOMAIN" | "APPLICATION" | "FILE_SCANNER" | "SES_IDENTITY" | "ANALYTICS_CONNECTOR" | "CALL_TRANSFER_CONNECTOR")
2747
2746
  attr_accessor integration_arn: ::String
2748
2747
  attr_accessor source_application_url: ::String
2749
2748
  attr_accessor source_application_name: ::String
@@ -3038,7 +3037,7 @@ module Aws::Connect
3038
3037
 
3039
3038
  class ListFlowAssociationsRequest
3040
3039
  attr_accessor instance_id: ::String
3041
- attr_accessor resource_type: ("VOICE_PHONE_NUMBER" | "INBOUND_EMAIL" | "OUTBOUND_EMAIL")
3040
+ attr_accessor resource_type: ("WHATSAPP_MESSAGING_PHONE_NUMBER" | "VOICE_PHONE_NUMBER" | "INBOUND_EMAIL" | "OUTBOUND_EMAIL" | "ANALYTICS_CONNECTOR")
3042
3041
  attr_accessor next_token: ::String
3043
3042
  attr_accessor max_results: ::Integer
3044
3043
  SENSITIVE: []
@@ -3104,7 +3103,7 @@ module Aws::Connect
3104
3103
 
3105
3104
  class ListIntegrationAssociationsRequest
3106
3105
  attr_accessor instance_id: ::String
3107
- attr_accessor integration_type: ("EVENT" | "VOICE_ID" | "PINPOINT_APP" | "WISDOM_ASSISTANT" | "WISDOM_KNOWLEDGE_BASE" | "WISDOM_QUICK_RESPONSES" | "Q_MESSAGE_TEMPLATES" | "CASES_DOMAIN" | "APPLICATION" | "FILE_SCANNER" | "SES_IDENTITY")
3106
+ attr_accessor integration_type: ("EVENT" | "VOICE_ID" | "PINPOINT_APP" | "WISDOM_ASSISTANT" | "WISDOM_KNOWLEDGE_BASE" | "WISDOM_QUICK_RESPONSES" | "Q_MESSAGE_TEMPLATES" | "CASES_DOMAIN" | "APPLICATION" | "FILE_SCANNER" | "SES_IDENTITY" | "ANALYTICS_CONNECTOR" | "CALL_TRANSFER_CONNECTOR")
3108
3107
  attr_accessor next_token: ::String
3109
3108
  attr_accessor max_results: ::Integer
3110
3109
  attr_accessor integration_arn: ::String
@@ -3876,6 +3875,11 @@ module Aws::Connect
3876
3875
  SENSITIVE: []
3877
3876
  end
3878
3877
 
3878
+ class QueueInfoInput
3879
+ attr_accessor id: ::String
3880
+ SENSITIVE: []
3881
+ end
3882
+
3879
3883
  class QueueQuickConnectConfig
3880
3884
  attr_accessor queue_id: ::String
3881
3885
  attr_accessor contact_flow_id: ::String
@@ -4200,6 +4204,7 @@ module Aws::Connect
4200
4204
  attr_accessor instance_id: ::String
4201
4205
  attr_accessor contact_id: ::String
4202
4206
  attr_accessor initial_contact_id: ::String
4207
+ attr_accessor contact_recording_type: ("AGENT" | "IVR" | "SCREEN")
4203
4208
  SENSITIVE: []
4204
4209
  end
4205
4210
 
@@ -4732,6 +4737,8 @@ module Aws::Connect
4732
4737
 
4733
4738
  class SegmentAttributeValue
4734
4739
  attr_accessor value_string: ::String
4740
+ attr_accessor value_map: ::Hash[::String, Types::SegmentAttributeValue]
4741
+ attr_accessor value_integer: ::Integer
4735
4742
  SENSITIVE: []
4736
4743
  end
4737
4744
 
@@ -5052,6 +5059,7 @@ module Aws::Connect
5052
5059
  attr_accessor instance_id: ::String
5053
5060
  attr_accessor contact_id: ::String
5054
5061
  attr_accessor initial_contact_id: ::String
5062
+ attr_accessor contact_recording_type: ("AGENT" | "IVR" | "SCREEN")
5055
5063
  SENSITIVE: []
5056
5064
  end
5057
5065
 
@@ -5120,6 +5128,7 @@ module Aws::Connect
5120
5128
  attr_accessor instance_id: ::String
5121
5129
  attr_accessor contact_id: ::String
5122
5130
  attr_accessor initial_contact_id: ::String
5131
+ attr_accessor contact_recording_type: ("AGENT" | "IVR" | "SCREEN")
5123
5132
  SENSITIVE: []
5124
5133
  end
5125
5134
 
@@ -5437,6 +5446,10 @@ module Aws::Connect
5437
5446
  attr_accessor description: ::String
5438
5447
  attr_accessor references: ::Hash[::String, Types::Reference]
5439
5448
  attr_accessor segment_attributes: ::Hash[::String, Types::SegmentAttributeValue]
5449
+ attr_accessor queue_info: Types::QueueInfoInput
5450
+ attr_accessor user_info: Types::UserInfo
5451
+ attr_accessor customer_endpoint: Types::Endpoint
5452
+ attr_accessor system_endpoint: Types::Endpoint
5440
5453
  SENSITIVE: [:name, :description]
5441
5454
  end
5442
5455
 
@@ -6070,6 +6083,7 @@ module Aws::Connect
6070
6083
 
6071
6084
  class VoiceRecordingConfiguration
6072
6085
  attr_accessor voice_recording_track: ("FROM_AGENT" | "TO_AGENT" | "ALL")
6086
+ attr_accessor ivr_recording_track: ("ALL")
6073
6087
  SENSITIVE: []
6074
6088
  end
6075
6089
 
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.186.0
4
+ version: 1.188.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: 2024-11-22 00:00:00.000000000 Z
11
+ date: 2024-12-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core