aws-sdk-connect 1.223.0 → 1.225.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-connect/client.rb +275 -234
- data/lib/aws-sdk-connect/client_api.rb +4 -0
- data/lib/aws-sdk-connect/types.rb +254 -226
- data/lib/aws-sdk-connect.rb +1 -1
- data/sig/client.rbs +12 -3
- data/sig/types.rbs +3 -0
- metadata +1 -1
|
@@ -1231,6 +1231,7 @@ module Aws::Connect
|
|
|
1231
1231
|
ResumeContactRecordingResponse = Shapes::StructureShape.new(name: 'ResumeContactRecordingResponse')
|
|
1232
1232
|
ResumeContactRequest = Shapes::StructureShape.new(name: 'ResumeContactRequest')
|
|
1233
1233
|
ResumeContactResponse = Shapes::StructureShape.new(name: 'ResumeContactResponse')
|
|
1234
|
+
RingTimeoutInSeconds = Shapes::IntegerShape.new(name: 'RingTimeoutInSeconds')
|
|
1234
1235
|
RoutingCriteria = Shapes::StructureShape.new(name: 'RoutingCriteria')
|
|
1235
1236
|
RoutingCriteriaInput = Shapes::StructureShape.new(name: 'RoutingCriteriaInput')
|
|
1236
1237
|
RoutingCriteriaInputStep = Shapes::StructureShape.new(name: 'RoutingCriteriaInputStep')
|
|
@@ -2244,6 +2245,7 @@ module Aws::Connect
|
|
|
2244
2245
|
Contact.add_member(:last_update_timestamp, Shapes::ShapeRef.new(shape: timestamp, location_name: "LastUpdateTimestamp"))
|
|
2245
2246
|
Contact.add_member(:last_paused_timestamp, Shapes::ShapeRef.new(shape: timestamp, location_name: "LastPausedTimestamp"))
|
|
2246
2247
|
Contact.add_member(:last_resumed_timestamp, Shapes::ShapeRef.new(shape: timestamp, location_name: "LastResumedTimestamp"))
|
|
2248
|
+
Contact.add_member(:ring_start_timestamp, Shapes::ShapeRef.new(shape: timestamp, location_name: "RingStartTimestamp"))
|
|
2247
2249
|
Contact.add_member(:total_pause_count, Shapes::ShapeRef.new(shape: TotalPauseCount, location_name: "TotalPauseCount"))
|
|
2248
2250
|
Contact.add_member(:total_pause_duration_in_seconds, Shapes::ShapeRef.new(shape: TotalPauseDurationInSeconds, location_name: "TotalPauseDurationInSeconds"))
|
|
2249
2251
|
Contact.add_member(:scheduled_timestamp, Shapes::ShapeRef.new(shape: timestamp, location_name: "ScheduledTimestamp"))
|
|
@@ -6130,6 +6132,7 @@ module Aws::Connect
|
|
|
6130
6132
|
SendNotificationActionDefinition.add_member(:content, Shapes::ShapeRef.new(shape: Content, required: true, location_name: "Content"))
|
|
6131
6133
|
SendNotificationActionDefinition.add_member(:content_type, Shapes::ShapeRef.new(shape: NotificationContentType, required: true, location_name: "ContentType"))
|
|
6132
6134
|
SendNotificationActionDefinition.add_member(:recipient, Shapes::ShapeRef.new(shape: NotificationRecipientType, required: true, location_name: "Recipient"))
|
|
6135
|
+
SendNotificationActionDefinition.add_member(:exclusion, Shapes::ShapeRef.new(shape: NotificationRecipientType, location_name: "Exclusion"))
|
|
6133
6136
|
SendNotificationActionDefinition.struct_class = Types::SendNotificationActionDefinition
|
|
6134
6137
|
|
|
6135
6138
|
SendOutboundEmailRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location: "uri", location_name: "InstanceId"))
|
|
@@ -6311,6 +6314,7 @@ module Aws::Connect
|
|
|
6311
6314
|
StartOutboundVoiceContactRequest.add_member(:campaign_id, Shapes::ShapeRef.new(shape: CampaignId, location_name: "CampaignId"))
|
|
6312
6315
|
StartOutboundVoiceContactRequest.add_member(:traffic_type, Shapes::ShapeRef.new(shape: TrafficType, location_name: "TrafficType"))
|
|
6313
6316
|
StartOutboundVoiceContactRequest.add_member(:outbound_strategy, Shapes::ShapeRef.new(shape: OutboundStrategy, location_name: "OutboundStrategy"))
|
|
6317
|
+
StartOutboundVoiceContactRequest.add_member(:ring_timeout_in_seconds, Shapes::ShapeRef.new(shape: RingTimeoutInSeconds, location_name: "RingTimeoutInSeconds"))
|
|
6314
6318
|
StartOutboundVoiceContactRequest.struct_class = Types::StartOutboundVoiceContactRequest
|
|
6315
6319
|
|
|
6316
6320
|
StartOutboundVoiceContactResponse.add_member(:contact_id, Shapes::ShapeRef.new(shape: ContactId, location_name: "ContactId"))
|