aws-sdk-qbusiness 1.30.0 → 1.32.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: 3704678a5b5764634bc91ca51dd31aa33c91f6ceab62e96ebf949f21cf047514
4
- data.tar.gz: d52aadc81b30bc85c32dd3d7693ec967c4cc2fa33689b4dfb10369909d6d0184
3
+ metadata.gz: d7ca69fcfdabe923948cab508f09271a5c51e9ca97b78a4ddb88d95162114b97
4
+ data.tar.gz: e74e4ad1c71d572c6c87ffea0faa26a76b2e4a6f1a3f38c45a3e914399b03565
5
5
  SHA512:
6
- metadata.gz: 6394ae1f9b1662fa51c2e6fa01fbf40d769bff7a0dea540b524834946565ac221e2e96a3502f4187d44f51beafa918c542f821a931340f1cec5fd8a1f3907540
7
- data.tar.gz: d6c58980a67f864a34d951dd1a872cfa74ddb093eaeeeb2eec0b20e7ccc856ec58493e75cfc5f45cc3158eddd3fdee3d2b4c69935cf138e8b16c951ac65e4eea
6
+ metadata.gz: b54b9ea47be30765b1ca0614918df26e538b0f982b6d8ea73a15265a5ad0210da163418eb4927eae93ab0ddeec44df191ce9d4f3aacd1d91ad13b9026461579b
7
+ data.tar.gz: 75ddcc1e0cb6a431cc31ddad224ed4edf7338de4ac72a9031c2fb26bc12392baeb1005bc3182f41a94a87ef3acf1a314e876af8b99abcc424580213c924eadba
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.32.0 (2025-03-03)
5
+ ------------------
6
+
7
+ * Feature - Adds support for the ingestion of audio and video files by Q Business, which can be configured with the mediaExtractionConfiguration parameter.
8
+
9
+ 1.31.0 (2025-02-27)
10
+ ------------------
11
+
12
+ * Feature - This release supports deleting attachments from conversations.
13
+
4
14
  1.30.0 (2025-02-18)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.30.0
1
+ 1.32.0
@@ -550,6 +550,18 @@ module Aws::QBusiness
550
550
  # event.source_attributions[0].text_message_segments[0].snippet_excerpt.text #=> String
551
551
  # event.source_attributions[0].text_message_segments[0].media_id #=> String
552
552
  # event.source_attributions[0].text_message_segments[0].media_mime_type #=> String
553
+ # event.source_attributions[0].text_message_segments[0].source_details.image_source_details.media_id #=> String
554
+ # event.source_attributions[0].text_message_segments[0].source_details.image_source_details.media_mime_type #=> String
555
+ # event.source_attributions[0].text_message_segments[0].source_details.audio_source_details.media_id #=> String
556
+ # event.source_attributions[0].text_message_segments[0].source_details.audio_source_details.media_mime_type #=> String
557
+ # event.source_attributions[0].text_message_segments[0].source_details.audio_source_details.start_time_milliseconds #=> Integer
558
+ # event.source_attributions[0].text_message_segments[0].source_details.audio_source_details.end_time_milliseconds #=> Integer
559
+ # event.source_attributions[0].text_message_segments[0].source_details.audio_source_details.audio_extraction_type #=> String, one of "TRANSCRIPT", "SUMMARY"
560
+ # event.source_attributions[0].text_message_segments[0].source_details.video_source_details.media_id #=> String
561
+ # event.source_attributions[0].text_message_segments[0].source_details.video_source_details.media_mime_type #=> String
562
+ # event.source_attributions[0].text_message_segments[0].source_details.video_source_details.start_time_milliseconds #=> Integer
563
+ # event.source_attributions[0].text_message_segments[0].source_details.video_source_details.end_time_milliseconds #=> Integer
564
+ # event.source_attributions[0].text_message_segments[0].source_details.video_source_details.video_extraction_type #=> String, one of "TRANSCRIPT", "SUMMARY"
553
565
  # event.final_text_message #=> String
554
566
  #
555
567
  # For :action_review_event event available at #on_action_review_event_event callback and response eventstream enumerator:
@@ -630,7 +642,7 @@ module Aws::QBusiness
630
642
  tracer: tracer
631
643
  )
632
644
  context[:gem_name] = 'aws-sdk-qbusiness'
633
- context[:gem_version] = '1.30.0'
645
+ context[:gem_version] = '1.32.0'
634
646
  Seahorse::Client::Request.new(handlers, context)
635
647
  end
636
648
 
@@ -729,6 +729,12 @@ module Aws::QBusiness
729
729
  # image_extraction_configuration: {
730
730
  # image_extraction_status: "ENABLED", # required, accepts ENABLED, DISABLED
731
731
  # },
732
+ # audio_extraction_configuration: {
733
+ # audio_extraction_status: "ENABLED", # required, accepts ENABLED, DISABLED
734
+ # },
735
+ # video_extraction_configuration: {
736
+ # video_extraction_status: "ENABLED", # required, accepts ENABLED, DISABLED
737
+ # },
732
738
  # },
733
739
  # },
734
740
  # ],
@@ -1037,6 +1043,18 @@ module Aws::QBusiness
1037
1043
  # resp.source_attributions[0].text_message_segments[0].snippet_excerpt.text #=> String
1038
1044
  # resp.source_attributions[0].text_message_segments[0].media_id #=> String
1039
1045
  # resp.source_attributions[0].text_message_segments[0].media_mime_type #=> String
1046
+ # resp.source_attributions[0].text_message_segments[0].source_details.image_source_details.media_id #=> String
1047
+ # resp.source_attributions[0].text_message_segments[0].source_details.image_source_details.media_mime_type #=> String
1048
+ # resp.source_attributions[0].text_message_segments[0].source_details.audio_source_details.media_id #=> String
1049
+ # resp.source_attributions[0].text_message_segments[0].source_details.audio_source_details.media_mime_type #=> String
1050
+ # resp.source_attributions[0].text_message_segments[0].source_details.audio_source_details.start_time_milliseconds #=> Integer
1051
+ # resp.source_attributions[0].text_message_segments[0].source_details.audio_source_details.end_time_milliseconds #=> Integer
1052
+ # resp.source_attributions[0].text_message_segments[0].source_details.audio_source_details.audio_extraction_type #=> String, one of "TRANSCRIPT", "SUMMARY"
1053
+ # resp.source_attributions[0].text_message_segments[0].source_details.video_source_details.media_id #=> String
1054
+ # resp.source_attributions[0].text_message_segments[0].source_details.video_source_details.media_mime_type #=> String
1055
+ # resp.source_attributions[0].text_message_segments[0].source_details.video_source_details.start_time_milliseconds #=> Integer
1056
+ # resp.source_attributions[0].text_message_segments[0].source_details.video_source_details.end_time_milliseconds #=> Integer
1057
+ # resp.source_attributions[0].text_message_segments[0].source_details.video_source_details.video_extraction_type #=> String, one of "TRANSCRIPT", "SUMMARY"
1040
1058
  # resp.failed_attachments #=> Array
1041
1059
  # resp.failed_attachments[0].name #=> String
1042
1060
  # resp.failed_attachments[0].status #=> String, one of "FAILED", "SUCCESS"
@@ -1558,6 +1576,12 @@ module Aws::QBusiness
1558
1576
  # image_extraction_configuration: {
1559
1577
  # image_extraction_status: "ENABLED", # required, accepts ENABLED, DISABLED
1560
1578
  # },
1579
+ # audio_extraction_configuration: {
1580
+ # audio_extraction_status: "ENABLED", # required, accepts ENABLED, DISABLED
1581
+ # },
1582
+ # video_extraction_configuration: {
1583
+ # video_extraction_status: "ENABLED", # required, accepts ENABLED, DISABLED
1584
+ # },
1561
1585
  # },
1562
1586
  # })
1563
1587
  #
@@ -2127,6 +2151,42 @@ module Aws::QBusiness
2127
2151
  req.send_request(options)
2128
2152
  end
2129
2153
 
2154
+ # Deletes an attachment associated with a specific Amazon Q Business
2155
+ # conversation.
2156
+ #
2157
+ # @option params [required, String] :application_id
2158
+ # The unique identifier for the Amazon Q Business application
2159
+ # environment.
2160
+ #
2161
+ # @option params [required, String] :conversation_id
2162
+ # The unique identifier of the conversation.
2163
+ #
2164
+ # @option params [required, String] :attachment_id
2165
+ # The unique identifier for the attachment.
2166
+ #
2167
+ # @option params [String] :user_id
2168
+ # The unique identifier of the user involved in the conversation.
2169
+ #
2170
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
2171
+ #
2172
+ # @example Request syntax with placeholder values
2173
+ #
2174
+ # resp = client.delete_attachment({
2175
+ # application_id: "ApplicationId", # required
2176
+ # conversation_id: "ConversationId", # required
2177
+ # attachment_id: "AttachmentId", # required
2178
+ # user_id: "UserId",
2179
+ # })
2180
+ #
2181
+ # @see http://docs.aws.amazon.com/goto/WebAPI/qbusiness-2023-11-27/DeleteAttachment AWS API Documentation
2182
+ #
2183
+ # @overload delete_attachment(params = {})
2184
+ # @param [Hash] params ({})
2185
+ def delete_attachment(params = {}, options = {})
2186
+ req = build_request(:delete_attachment, params)
2187
+ req.send_request(options)
2188
+ end
2189
+
2130
2190
  # Deletes chat controls configured for an existing Amazon Q Business
2131
2191
  # application.
2132
2192
  #
@@ -2801,6 +2861,8 @@ module Aws::QBusiness
2801
2861
  # resp.document_enrichment_configuration.post_extraction_hook_configuration.s3_bucket_name #=> String
2802
2862
  # resp.document_enrichment_configuration.post_extraction_hook_configuration.role_arn #=> String
2803
2863
  # resp.media_extraction_configuration.image_extraction_configuration.image_extraction_status #=> String, one of "ENABLED", "DISABLED"
2864
+ # resp.media_extraction_configuration.audio_extraction_configuration.audio_extraction_status #=> String, one of "ENABLED", "DISABLED"
2865
+ # resp.media_extraction_configuration.video_extraction_configuration.video_extraction_status #=> String, one of "ENABLED", "DISABLED"
2804
2866
  #
2805
2867
  # @see http://docs.aws.amazon.com/goto/WebAPI/qbusiness-2023-11-27/GetDataSource AWS API Documentation
2806
2868
  #
@@ -3840,6 +3902,18 @@ module Aws::QBusiness
3840
3902
  # resp.messages[0].source_attribution[0].text_message_segments[0].snippet_excerpt.text #=> String
3841
3903
  # resp.messages[0].source_attribution[0].text_message_segments[0].media_id #=> String
3842
3904
  # resp.messages[0].source_attribution[0].text_message_segments[0].media_mime_type #=> String
3905
+ # resp.messages[0].source_attribution[0].text_message_segments[0].source_details.image_source_details.media_id #=> String
3906
+ # resp.messages[0].source_attribution[0].text_message_segments[0].source_details.image_source_details.media_mime_type #=> String
3907
+ # resp.messages[0].source_attribution[0].text_message_segments[0].source_details.audio_source_details.media_id #=> String
3908
+ # resp.messages[0].source_attribution[0].text_message_segments[0].source_details.audio_source_details.media_mime_type #=> String
3909
+ # resp.messages[0].source_attribution[0].text_message_segments[0].source_details.audio_source_details.start_time_milliseconds #=> Integer
3910
+ # resp.messages[0].source_attribution[0].text_message_segments[0].source_details.audio_source_details.end_time_milliseconds #=> Integer
3911
+ # resp.messages[0].source_attribution[0].text_message_segments[0].source_details.audio_source_details.audio_extraction_type #=> String, one of "TRANSCRIPT", "SUMMARY"
3912
+ # resp.messages[0].source_attribution[0].text_message_segments[0].source_details.video_source_details.media_id #=> String
3913
+ # resp.messages[0].source_attribution[0].text_message_segments[0].source_details.video_source_details.media_mime_type #=> String
3914
+ # resp.messages[0].source_attribution[0].text_message_segments[0].source_details.video_source_details.start_time_milliseconds #=> Integer
3915
+ # resp.messages[0].source_attribution[0].text_message_segments[0].source_details.video_source_details.end_time_milliseconds #=> Integer
3916
+ # resp.messages[0].source_attribution[0].text_message_segments[0].source_details.video_source_details.video_extraction_type #=> String, one of "TRANSCRIPT", "SUMMARY"
3843
3917
  # resp.messages[0].action_review.plugin_id #=> String
3844
3918
  # resp.messages[0].action_review.plugin_type #=> String, one of "SERVICE_NOW", "SALESFORCE", "JIRA", "ZENDESK", "CUSTOM", "QUICKSIGHT", "SERVICENOW_NOW_PLATFORM", "JIRA_CLOUD", "SALESFORCE_CRM", "ZENDESK_SUITE", "ATLASSIAN_CONFLUENCE", "GOOGLE_CALENDAR", "MICROSOFT_TEAMS", "MICROSOFT_EXCHANGE", "PAGERDUTY_ADVANCE", "SMARTSHEET", "ASANA"
3845
3919
  # resp.messages[0].action_review.payload #=> Hash
@@ -5149,6 +5223,12 @@ module Aws::QBusiness
5149
5223
  # image_extraction_configuration: {
5150
5224
  # image_extraction_status: "ENABLED", # required, accepts ENABLED, DISABLED
5151
5225
  # },
5226
+ # audio_extraction_configuration: {
5227
+ # audio_extraction_status: "ENABLED", # required, accepts ENABLED, DISABLED
5228
+ # },
5229
+ # video_extraction_configuration: {
5230
+ # video_extraction_status: "ENABLED", # required, accepts ENABLED, DISABLED
5231
+ # },
5152
5232
  # },
5153
5233
  # })
5154
5234
  #
@@ -5610,7 +5690,7 @@ module Aws::QBusiness
5610
5690
  tracer: tracer
5611
5691
  )
5612
5692
  context[:gem_name] = 'aws-sdk-qbusiness'
5613
- context[:gem_version] = '1.30.0'
5693
+ context[:gem_version] = '1.32.0'
5614
5694
  Seahorse::Client::Request.new(handlers, context)
5615
5695
  end
5616
5696
 
@@ -68,6 +68,10 @@ module Aws::QBusiness
68
68
  AttributeFilters = Shapes::ListShape.new(name: 'AttributeFilters')
69
69
  AttributeType = Shapes::StringShape.new(name: 'AttributeType')
70
70
  AttributeValueOperator = Shapes::StringShape.new(name: 'AttributeValueOperator')
71
+ AudioExtractionConfiguration = Shapes::StructureShape.new(name: 'AudioExtractionConfiguration')
72
+ AudioExtractionStatus = Shapes::StringShape.new(name: 'AudioExtractionStatus')
73
+ AudioExtractionType = Shapes::StringShape.new(name: 'AudioExtractionType')
74
+ AudioSourceDetails = Shapes::StructureShape.new(name: 'AudioSourceDetails')
71
75
  AuthChallengeRequest = Shapes::StructureShape.new(name: 'AuthChallengeRequest')
72
76
  AuthChallengeRequestEvent = Shapes::StructureShape.new(name: 'AuthChallengeRequestEvent')
73
77
  AuthChallengeResponse = Shapes::StructureShape.new(name: 'AuthChallengeResponse')
@@ -164,6 +168,8 @@ module Aws::QBusiness
164
168
  DateAttributeBoostingConfiguration = Shapes::StructureShape.new(name: 'DateAttributeBoostingConfiguration')
165
169
  DeleteApplicationRequest = Shapes::StructureShape.new(name: 'DeleteApplicationRequest')
166
170
  DeleteApplicationResponse = Shapes::StructureShape.new(name: 'DeleteApplicationResponse')
171
+ DeleteAttachmentRequest = Shapes::StructureShape.new(name: 'DeleteAttachmentRequest')
172
+ DeleteAttachmentResponse = Shapes::StructureShape.new(name: 'DeleteAttachmentResponse')
167
173
  DeleteChatControlsConfigurationRequest = Shapes::StructureShape.new(name: 'DeleteChatControlsConfigurationRequest')
168
174
  DeleteChatControlsConfigurationResponse = Shapes::StructureShape.new(name: 'DeleteChatControlsConfigurationResponse')
169
175
  DeleteConversationRequest = Shapes::StructureShape.new(name: 'DeleteConversationRequest')
@@ -269,6 +275,7 @@ module Aws::QBusiness
269
275
  IdentityType = Shapes::StringShape.new(name: 'IdentityType')
270
276
  ImageExtractionConfiguration = Shapes::StructureShape.new(name: 'ImageExtractionConfiguration')
271
277
  ImageExtractionStatus = Shapes::StringShape.new(name: 'ImageExtractionStatus')
278
+ ImageSourceDetails = Shapes::StructureShape.new(name: 'ImageSourceDetails')
272
279
  Index = Shapes::StructureShape.new(name: 'Index')
273
280
  IndexArn = Shapes::StringShape.new(name: 'IndexArn')
274
281
  IndexCapacityConfiguration = Shapes::StructureShape.new(name: 'IndexCapacityConfiguration')
@@ -450,6 +457,7 @@ module Aws::QBusiness
450
457
  SourceAttribution = Shapes::StructureShape.new(name: 'SourceAttribution')
451
458
  SourceAttributionMediaId = Shapes::StringShape.new(name: 'SourceAttributionMediaId')
452
459
  SourceAttributions = Shapes::ListShape.new(name: 'SourceAttributions')
460
+ SourceDetails = Shapes::UnionShape.new(name: 'SourceDetails')
453
461
  StartDataSourceSyncJobRequest = Shapes::StructureShape.new(name: 'StartDataSourceSyncJobRequest')
454
462
  StartDataSourceSyncJobResponse = Shapes::StructureShape.new(name: 'StartDataSourceSyncJobResponse')
455
463
  StatementId = Shapes::StringShape.new(name: 'StatementId')
@@ -527,6 +535,10 @@ module Aws::QBusiness
527
535
  ValidationExceptionField = Shapes::StructureShape.new(name: 'ValidationExceptionField')
528
536
  ValidationExceptionFields = Shapes::ListShape.new(name: 'ValidationExceptionFields')
529
537
  ValidationExceptionReason = Shapes::StringShape.new(name: 'ValidationExceptionReason')
538
+ VideoExtractionConfiguration = Shapes::StructureShape.new(name: 'VideoExtractionConfiguration')
539
+ VideoExtractionStatus = Shapes::StringShape.new(name: 'VideoExtractionStatus')
540
+ VideoExtractionType = Shapes::StringShape.new(name: 'VideoExtractionType')
541
+ VideoSourceDetails = Shapes::StructureShape.new(name: 'VideoSourceDetails')
530
542
  WebExperience = Shapes::StructureShape.new(name: 'WebExperience')
531
543
  WebExperienceArn = Shapes::StringShape.new(name: 'WebExperienceArn')
532
544
  WebExperienceAuthConfiguration = Shapes::UnionShape.new(name: 'WebExperienceAuthConfiguration')
@@ -707,6 +719,16 @@ module Aws::QBusiness
707
719
 
708
720
  AttributeFilters.member = Shapes::ShapeRef.new(shape: AttributeFilter)
709
721
 
722
+ AudioExtractionConfiguration.add_member(:audio_extraction_status, Shapes::ShapeRef.new(shape: AudioExtractionStatus, required: true, location_name: "audioExtractionStatus"))
723
+ AudioExtractionConfiguration.struct_class = Types::AudioExtractionConfiguration
724
+
725
+ AudioSourceDetails.add_member(:media_id, Shapes::ShapeRef.new(shape: MediaId, location_name: "mediaId"))
726
+ AudioSourceDetails.add_member(:media_mime_type, Shapes::ShapeRef.new(shape: String, location_name: "mediaMimeType"))
727
+ AudioSourceDetails.add_member(:start_time_milliseconds, Shapes::ShapeRef.new(shape: Long, location_name: "startTimeMilliseconds"))
728
+ AudioSourceDetails.add_member(:end_time_milliseconds, Shapes::ShapeRef.new(shape: Long, location_name: "endTimeMilliseconds"))
729
+ AudioSourceDetails.add_member(:audio_extraction_type, Shapes::ShapeRef.new(shape: AudioExtractionType, location_name: "audioExtractionType"))
730
+ AudioSourceDetails.struct_class = Types::AudioSourceDetails
731
+
710
732
  AuthChallengeRequest.add_member(:authorization_url, Shapes::ShapeRef.new(shape: Url, required: true, location_name: "authorizationUrl"))
711
733
  AuthChallengeRequest.struct_class = Types::AuthChallengeRequest
712
734
 
@@ -1077,6 +1099,14 @@ module Aws::QBusiness
1077
1099
 
1078
1100
  DeleteApplicationResponse.struct_class = Types::DeleteApplicationResponse
1079
1101
 
1102
+ DeleteAttachmentRequest.add_member(:application_id, Shapes::ShapeRef.new(shape: ApplicationId, required: true, location: "uri", location_name: "applicationId"))
1103
+ DeleteAttachmentRequest.add_member(:conversation_id, Shapes::ShapeRef.new(shape: ConversationId, required: true, location: "uri", location_name: "conversationId"))
1104
+ DeleteAttachmentRequest.add_member(:attachment_id, Shapes::ShapeRef.new(shape: AttachmentId, required: true, location: "uri", location_name: "attachmentId"))
1105
+ DeleteAttachmentRequest.add_member(:user_id, Shapes::ShapeRef.new(shape: UserId, location: "querystring", location_name: "userId"))
1106
+ DeleteAttachmentRequest.struct_class = Types::DeleteAttachmentRequest
1107
+
1108
+ DeleteAttachmentResponse.struct_class = Types::DeleteAttachmentResponse
1109
+
1080
1110
  DeleteChatControlsConfigurationRequest.add_member(:application_id, Shapes::ShapeRef.new(shape: ApplicationId, required: true, location: "uri", location_name: "applicationId"))
1081
1111
  DeleteChatControlsConfigurationRequest.struct_class = Types::DeleteChatControlsConfigurationRequest
1082
1112
 
@@ -1494,6 +1524,10 @@ module Aws::QBusiness
1494
1524
  ImageExtractionConfiguration.add_member(:image_extraction_status, Shapes::ShapeRef.new(shape: ImageExtractionStatus, required: true, location_name: "imageExtractionStatus"))
1495
1525
  ImageExtractionConfiguration.struct_class = Types::ImageExtractionConfiguration
1496
1526
 
1527
+ ImageSourceDetails.add_member(:media_id, Shapes::ShapeRef.new(shape: MediaId, location_name: "mediaId"))
1528
+ ImageSourceDetails.add_member(:media_mime_type, Shapes::ShapeRef.new(shape: String, location_name: "mediaMimeType"))
1529
+ ImageSourceDetails.struct_class = Types::ImageSourceDetails
1530
+
1497
1531
  Index.add_member(:display_name, Shapes::ShapeRef.new(shape: IndexName, location_name: "displayName"))
1498
1532
  Index.add_member(:index_id, Shapes::ShapeRef.new(shape: IndexId, location_name: "indexId"))
1499
1533
  Index.add_member(:created_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "createdAt"))
@@ -1702,6 +1736,8 @@ module Aws::QBusiness
1702
1736
  ListWebExperiencesResponse.struct_class = Types::ListWebExperiencesResponse
1703
1737
 
1704
1738
  MediaExtractionConfiguration.add_member(:image_extraction_configuration, Shapes::ShapeRef.new(shape: ImageExtractionConfiguration, location_name: "imageExtractionConfiguration"))
1739
+ MediaExtractionConfiguration.add_member(:audio_extraction_configuration, Shapes::ShapeRef.new(shape: AudioExtractionConfiguration, location_name: "audioExtractionConfiguration"))
1740
+ MediaExtractionConfiguration.add_member(:video_extraction_configuration, Shapes::ShapeRef.new(shape: VideoExtractionConfiguration, location_name: "videoExtractionConfiguration"))
1705
1741
  MediaExtractionConfiguration.struct_class = Types::MediaExtractionConfiguration
1706
1742
 
1707
1743
  MediaTooLargeException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, required: true, location_name: "message"))
@@ -1948,6 +1984,16 @@ module Aws::QBusiness
1948
1984
 
1949
1985
  SourceAttributions.member = Shapes::ShapeRef.new(shape: SourceAttribution)
1950
1986
 
1987
+ SourceDetails.add_member(:image_source_details, Shapes::ShapeRef.new(shape: ImageSourceDetails, location_name: "imageSourceDetails"))
1988
+ SourceDetails.add_member(:audio_source_details, Shapes::ShapeRef.new(shape: AudioSourceDetails, location_name: "audioSourceDetails"))
1989
+ SourceDetails.add_member(:video_source_details, Shapes::ShapeRef.new(shape: VideoSourceDetails, location_name: "videoSourceDetails"))
1990
+ SourceDetails.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
1991
+ SourceDetails.add_member_subclass(:image_source_details, Types::SourceDetails::ImageSourceDetails)
1992
+ SourceDetails.add_member_subclass(:audio_source_details, Types::SourceDetails::AudioSourceDetails)
1993
+ SourceDetails.add_member_subclass(:video_source_details, Types::SourceDetails::VideoSourceDetails)
1994
+ SourceDetails.add_member_subclass(:unknown, Types::SourceDetails::Unknown)
1995
+ SourceDetails.struct_class = Types::SourceDetails
1996
+
1951
1997
  StartDataSourceSyncJobRequest.add_member(:data_source_id, Shapes::ShapeRef.new(shape: DataSourceId, required: true, location: "uri", location_name: "dataSourceId"))
1952
1998
  StartDataSourceSyncJobRequest.add_member(:application_id, Shapes::ShapeRef.new(shape: ApplicationId, required: true, location: "uri", location_name: "applicationId"))
1953
1999
  StartDataSourceSyncJobRequest.add_member(:index_id, Shapes::ShapeRef.new(shape: IndexId, required: true, location: "uri", location_name: "indexId"))
@@ -2025,8 +2071,9 @@ module Aws::QBusiness
2025
2071
  TextSegment.add_member(:begin_offset, Shapes::ShapeRef.new(shape: Integer, location_name: "beginOffset"))
2026
2072
  TextSegment.add_member(:end_offset, Shapes::ShapeRef.new(shape: Integer, location_name: "endOffset"))
2027
2073
  TextSegment.add_member(:snippet_excerpt, Shapes::ShapeRef.new(shape: SnippetExcerpt, location_name: "snippetExcerpt"))
2028
- TextSegment.add_member(:media_id, Shapes::ShapeRef.new(shape: SourceAttributionMediaId, location_name: "mediaId"))
2029
- TextSegment.add_member(:media_mime_type, Shapes::ShapeRef.new(shape: String, location_name: "mediaMimeType"))
2074
+ TextSegment.add_member(:media_id, Shapes::ShapeRef.new(shape: SourceAttributionMediaId, deprecated: true, location_name: "mediaId", metadata: {"deprecatedMessage"=>"Deprecated in favor of using mediaId within the respective sourceDetails field.", "deprecatedSince"=>"2025-02-28"}))
2075
+ TextSegment.add_member(:media_mime_type, Shapes::ShapeRef.new(shape: String, deprecated: true, location_name: "mediaMimeType", metadata: {"deprecatedMessage"=>"Deprecated in favor of using mediaMimeType within the respective sourceDetails field.", "deprecatedSince"=>"2025-02-28"}))
2076
+ TextSegment.add_member(:source_details, Shapes::ShapeRef.new(shape: SourceDetails, location_name: "sourceDetails"))
2030
2077
  TextSegment.struct_class = Types::TextSegment
2031
2078
 
2032
2079
  TextSegmentList.member = Shapes::ShapeRef.new(shape: TextSegment)
@@ -2189,6 +2236,16 @@ module Aws::QBusiness
2189
2236
 
2190
2237
  ValidationExceptionFields.member = Shapes::ShapeRef.new(shape: ValidationExceptionField)
2191
2238
 
2239
+ VideoExtractionConfiguration.add_member(:video_extraction_status, Shapes::ShapeRef.new(shape: VideoExtractionStatus, required: true, location_name: "videoExtractionStatus"))
2240
+ VideoExtractionConfiguration.struct_class = Types::VideoExtractionConfiguration
2241
+
2242
+ VideoSourceDetails.add_member(:media_id, Shapes::ShapeRef.new(shape: MediaId, location_name: "mediaId"))
2243
+ VideoSourceDetails.add_member(:media_mime_type, Shapes::ShapeRef.new(shape: String, location_name: "mediaMimeType"))
2244
+ VideoSourceDetails.add_member(:start_time_milliseconds, Shapes::ShapeRef.new(shape: Long, location_name: "startTimeMilliseconds"))
2245
+ VideoSourceDetails.add_member(:end_time_milliseconds, Shapes::ShapeRef.new(shape: Long, location_name: "endTimeMilliseconds"))
2246
+ VideoSourceDetails.add_member(:video_extraction_type, Shapes::ShapeRef.new(shape: VideoExtractionType, location_name: "videoExtractionType"))
2247
+ VideoSourceDetails.struct_class = Types::VideoSourceDetails
2248
+
2192
2249
  WebExperience.add_member(:web_experience_id, Shapes::ShapeRef.new(shape: WebExperienceId, location_name: "webExperienceId"))
2193
2250
  WebExperience.add_member(:created_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "createdAt"))
2194
2251
  WebExperience.add_member(:updated_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "updatedAt"))
@@ -2464,6 +2521,20 @@ module Aws::QBusiness
2464
2521
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
2465
2522
  end)
2466
2523
 
2524
+ api.add_operation(:delete_attachment, Seahorse::Model::Operation.new.tap do |o|
2525
+ o.name = "DeleteAttachment"
2526
+ o.http_method = "DELETE"
2527
+ o.http_request_uri = "/applications/{applicationId}/conversations/{conversationId}/attachments/{attachmentId}"
2528
+ o.input = Shapes::ShapeRef.new(shape: DeleteAttachmentRequest)
2529
+ o.output = Shapes::ShapeRef.new(shape: DeleteAttachmentResponse)
2530
+ o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
2531
+ o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
2532
+ o.errors << Shapes::ShapeRef.new(shape: LicenseNotFoundException)
2533
+ o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
2534
+ o.errors << Shapes::ShapeRef.new(shape: ValidationException)
2535
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
2536
+ end)
2537
+
2467
2538
  api.add_operation(:delete_chat_controls_configuration, Seahorse::Model::Operation.new.tap do |o|
2468
2539
  o.name = "DeleteChatControlsConfiguration"
2469
2540
  o.http_method = "DELETE"
@@ -835,6 +835,57 @@ module Aws::QBusiness
835
835
  include Aws::Structure
836
836
  end
837
837
 
838
+ # Configuration settings for audio content extraction and processing.
839
+ #
840
+ # @!attribute [rw] audio_extraction_status
841
+ # The status of audio extraction (ENABLED or DISABLED) for processing
842
+ # audio content from files.
843
+ # @return [String]
844
+ #
845
+ # @see http://docs.aws.amazon.com/goto/WebAPI/qbusiness-2023-11-27/AudioExtractionConfiguration AWS API Documentation
846
+ #
847
+ class AudioExtractionConfiguration < Struct.new(
848
+ :audio_extraction_status)
849
+ SENSITIVE = []
850
+ include Aws::Structure
851
+ end
852
+
853
+ # Details about an audio source, including its identifier, format, and
854
+ # time information.
855
+ #
856
+ # @!attribute [rw] media_id
857
+ # Unique identifier for the audio media file.
858
+ # @return [String]
859
+ #
860
+ # @!attribute [rw] media_mime_type
861
+ # The MIME type of the audio file (e.g., audio/mp3, audio/wav).
862
+ # @return [String]
863
+ #
864
+ # @!attribute [rw] start_time_milliseconds
865
+ # The starting timestamp in milliseconds for the relevant audio
866
+ # segment.
867
+ # @return [Integer]
868
+ #
869
+ # @!attribute [rw] end_time_milliseconds
870
+ # The ending timestamp in milliseconds for the relevant audio segment.
871
+ # @return [Integer]
872
+ #
873
+ # @!attribute [rw] audio_extraction_type
874
+ # The type of audio extraction performed on the content.
875
+ # @return [String]
876
+ #
877
+ # @see http://docs.aws.amazon.com/goto/WebAPI/qbusiness-2023-11-27/AudioSourceDetails AWS API Documentation
878
+ #
879
+ class AudioSourceDetails < Struct.new(
880
+ :media_id,
881
+ :media_mime_type,
882
+ :start_time_milliseconds,
883
+ :end_time_milliseconds,
884
+ :audio_extraction_type)
885
+ SENSITIVE = []
886
+ include Aws::Structure
887
+ end
888
+
838
889
  # A request made by Amazon Q Business to a third paty authentication
839
890
  # server to authenticate a custom plugin user.
840
891
  #
@@ -2732,6 +2783,38 @@ module Aws::QBusiness
2732
2783
  #
2733
2784
  class DeleteApplicationResponse < Aws::EmptyStructure; end
2734
2785
 
2786
+ # @!attribute [rw] application_id
2787
+ # The unique identifier for the Amazon Q Business application
2788
+ # environment.
2789
+ # @return [String]
2790
+ #
2791
+ # @!attribute [rw] conversation_id
2792
+ # The unique identifier of the conversation.
2793
+ # @return [String]
2794
+ #
2795
+ # @!attribute [rw] attachment_id
2796
+ # The unique identifier for the attachment.
2797
+ # @return [String]
2798
+ #
2799
+ # @!attribute [rw] user_id
2800
+ # The unique identifier of the user involved in the conversation.
2801
+ # @return [String]
2802
+ #
2803
+ # @see http://docs.aws.amazon.com/goto/WebAPI/qbusiness-2023-11-27/DeleteAttachmentRequest AWS API Documentation
2804
+ #
2805
+ class DeleteAttachmentRequest < Struct.new(
2806
+ :application_id,
2807
+ :conversation_id,
2808
+ :attachment_id,
2809
+ :user_id)
2810
+ SENSITIVE = []
2811
+ include Aws::Structure
2812
+ end
2813
+
2814
+ # @see http://docs.aws.amazon.com/goto/WebAPI/qbusiness-2023-11-27/DeleteAttachmentResponse AWS API Documentation
2815
+ #
2816
+ class DeleteAttachmentResponse < Aws::EmptyStructure; end
2817
+
2735
2818
  # @!attribute [rw] application_id
2736
2819
  # The identifier of the application the chat controls have been
2737
2820
  # configured for.
@@ -4796,6 +4879,25 @@ module Aws::QBusiness
4796
4879
  include Aws::Structure
4797
4880
  end
4798
4881
 
4882
+ # Details about an image source, including its identifier and format.
4883
+ #
4884
+ # @!attribute [rw] media_id
4885
+ # Unique identifier for the image file.
4886
+ # @return [String]
4887
+ #
4888
+ # @!attribute [rw] media_mime_type
4889
+ # The MIME type of the image file.
4890
+ # @return [String]
4891
+ #
4892
+ # @see http://docs.aws.amazon.com/goto/WebAPI/qbusiness-2023-11-27/ImageSourceDetails AWS API Documentation
4893
+ #
4894
+ class ImageSourceDetails < Struct.new(
4895
+ :media_id,
4896
+ :media_mime_type)
4897
+ SENSITIVE = []
4898
+ include Aws::Structure
4899
+ end
4900
+
4799
4901
  # Summary information for your Amazon Q Business index.
4800
4902
  #
4801
4903
  # @!attribute [rw] display_name
@@ -5863,10 +5965,22 @@ module Aws::QBusiness
5863
5965
  # [1]: https://docs.aws.amazon.com/amazonq/latest/qbusiness-ug/extracting-meaning-from-images.html
5864
5966
  # @return [Types::ImageExtractionConfiguration]
5865
5967
  #
5968
+ # @!attribute [rw] audio_extraction_configuration
5969
+ # Configuration settings for extracting and processing audio content
5970
+ # from media files.
5971
+ # @return [Types::AudioExtractionConfiguration]
5972
+ #
5973
+ # @!attribute [rw] video_extraction_configuration
5974
+ # Configuration settings for extracting and processing video content
5975
+ # from media files.
5976
+ # @return [Types::VideoExtractionConfiguration]
5977
+ #
5866
5978
  # @see http://docs.aws.amazon.com/goto/WebAPI/qbusiness-2023-11-27/MediaExtractionConfiguration AWS API Documentation
5867
5979
  #
5868
5980
  class MediaExtractionConfiguration < Struct.new(
5869
- :image_extraction_configuration)
5981
+ :image_extraction_configuration,
5982
+ :audio_extraction_configuration,
5983
+ :video_extraction_configuration)
5870
5984
  SENSITIVE = []
5871
5985
  include Aws::Structure
5872
5986
  end
@@ -7008,6 +7122,40 @@ module Aws::QBusiness
7008
7122
  include Aws::Structure
7009
7123
  end
7010
7124
 
7125
+ # Container for details about different types of media sources (image,
7126
+ # audio, or video).
7127
+ #
7128
+ # @note SourceDetails is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of SourceDetails corresponding to the set member.
7129
+ #
7130
+ # @!attribute [rw] image_source_details
7131
+ # Details specific to image content within the source.
7132
+ # @return [Types::ImageSourceDetails]
7133
+ #
7134
+ # @!attribute [rw] audio_source_details
7135
+ # Details specific to audio content within the source.
7136
+ # @return [Types::AudioSourceDetails]
7137
+ #
7138
+ # @!attribute [rw] video_source_details
7139
+ # Details specific to video content within the source.
7140
+ # @return [Types::VideoSourceDetails]
7141
+ #
7142
+ # @see http://docs.aws.amazon.com/goto/WebAPI/qbusiness-2023-11-27/SourceDetails AWS API Documentation
7143
+ #
7144
+ class SourceDetails < Struct.new(
7145
+ :image_source_details,
7146
+ :audio_source_details,
7147
+ :video_source_details,
7148
+ :unknown)
7149
+ SENSITIVE = []
7150
+ include Aws::Structure
7151
+ include Aws::Structure::Union
7152
+
7153
+ class ImageSourceDetails < SourceDetails; end
7154
+ class AudioSourceDetails < SourceDetails; end
7155
+ class VideoSourceDetails < SourceDetails; end
7156
+ class Unknown < SourceDetails; end
7157
+ end
7158
+
7011
7159
  # @!attribute [rw] data_source_id
7012
7160
  # The identifier of the data source connector.
7013
7161
  # @return [String]
@@ -7379,6 +7527,11 @@ module Aws::QBusiness
7379
7527
  # text segment in the source attribution.
7380
7528
  # @return [String]
7381
7529
  #
7530
+ # @!attribute [rw] source_details
7531
+ # Source information for a segment of extracted text, including its
7532
+ # media type.
7533
+ # @return [Types::SourceDetails]
7534
+ #
7382
7535
  # @see http://docs.aws.amazon.com/goto/WebAPI/qbusiness-2023-11-27/TextSegment AWS API Documentation
7383
7536
  #
7384
7537
  class TextSegment < Struct.new(
@@ -7386,7 +7539,8 @@ module Aws::QBusiness
7386
7539
  :end_offset,
7387
7540
  :snippet_excerpt,
7388
7541
  :media_id,
7389
- :media_mime_type)
7542
+ :media_mime_type,
7543
+ :source_details)
7390
7544
  SENSITIVE = []
7391
7545
  include Aws::Structure
7392
7546
  end
@@ -8121,6 +8275,57 @@ module Aws::QBusiness
8121
8275
  include Aws::Structure
8122
8276
  end
8123
8277
 
8278
+ # Configuration settings for video content extraction and processing.
8279
+ #
8280
+ # @!attribute [rw] video_extraction_status
8281
+ # The status of video extraction (ENABLED or DISABLED) for processing
8282
+ # video content from files.
8283
+ # @return [String]
8284
+ #
8285
+ # @see http://docs.aws.amazon.com/goto/WebAPI/qbusiness-2023-11-27/VideoExtractionConfiguration AWS API Documentation
8286
+ #
8287
+ class VideoExtractionConfiguration < Struct.new(
8288
+ :video_extraction_status)
8289
+ SENSITIVE = []
8290
+ include Aws::Structure
8291
+ end
8292
+
8293
+ # Details about a video source, including its identifier, format, and
8294
+ # time information.
8295
+ #
8296
+ # @!attribute [rw] media_id
8297
+ # Unique identifier for the video media file.
8298
+ # @return [String]
8299
+ #
8300
+ # @!attribute [rw] media_mime_type
8301
+ # The MIME type of the video file (e.g., video/mp4, video/avi).
8302
+ # @return [String]
8303
+ #
8304
+ # @!attribute [rw] start_time_milliseconds
8305
+ # The starting timestamp in milliseconds for the relevant video
8306
+ # segment.
8307
+ # @return [Integer]
8308
+ #
8309
+ # @!attribute [rw] end_time_milliseconds
8310
+ # The ending timestamp in milliseconds for the relevant video segment.
8311
+ # @return [Integer]
8312
+ #
8313
+ # @!attribute [rw] video_extraction_type
8314
+ # The type of video extraction performed on the content.
8315
+ # @return [String]
8316
+ #
8317
+ # @see http://docs.aws.amazon.com/goto/WebAPI/qbusiness-2023-11-27/VideoSourceDetails AWS API Documentation
8318
+ #
8319
+ class VideoSourceDetails < Struct.new(
8320
+ :media_id,
8321
+ :media_mime_type,
8322
+ :start_time_milliseconds,
8323
+ :end_time_milliseconds,
8324
+ :video_extraction_type)
8325
+ SENSITIVE = []
8326
+ include Aws::Structure
8327
+ end
8328
+
8124
8329
  # Provides information for an Amazon Q Business web experience.
8125
8330
  #
8126
8331
  # @!attribute [rw] web_experience_id
@@ -57,7 +57,7 @@ module Aws::QBusiness
57
57
  autoload :AsyncClient, 'aws-sdk-qbusiness/async_client'
58
58
  autoload :EventStreams, 'aws-sdk-qbusiness/event_streams'
59
59
 
60
- GEM_VERSION = '1.30.0'
60
+ GEM_VERSION = '1.32.0'
61
61
 
62
62
  end
63
63
 
data/sig/client.rbs CHANGED
@@ -223,6 +223,12 @@ module Aws
223
223
  media_extraction_configuration: {
224
224
  image_extraction_configuration: {
225
225
  image_extraction_status: ("ENABLED" | "DISABLED")
226
+ }?,
227
+ audio_extraction_configuration: {
228
+ audio_extraction_status: ("ENABLED" | "DISABLED")
229
+ }?,
230
+ video_extraction_configuration: {
231
+ video_extraction_status: ("ENABLED" | "DISABLED")
226
232
  }?
227
233
  }?
228
234
  },
@@ -610,6 +616,12 @@ module Aws
610
616
  ?media_extraction_configuration: {
611
617
  image_extraction_configuration: {
612
618
  image_extraction_status: ("ENABLED" | "DISABLED")
619
+ }?,
620
+ audio_extraction_configuration: {
621
+ audio_extraction_status: ("ENABLED" | "DISABLED")
622
+ }?,
623
+ video_extraction_configuration: {
624
+ video_extraction_status: ("ENABLED" | "DISABLED")
613
625
  }?
614
626
  }
615
627
  ) -> _CreateDataSourceResponseSuccess
@@ -824,6 +836,18 @@ module Aws
824
836
  ) -> _DeleteApplicationResponseSuccess
825
837
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteApplicationResponseSuccess
826
838
 
839
+ interface _DeleteAttachmentResponseSuccess
840
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteAttachmentResponse]
841
+ end
842
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/QBusiness/Client.html#delete_attachment-instance_method
843
+ def delete_attachment: (
844
+ application_id: ::String,
845
+ conversation_id: ::String,
846
+ attachment_id: ::String,
847
+ ?user_id: ::String
848
+ ) -> _DeleteAttachmentResponseSuccess
849
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteAttachmentResponseSuccess
850
+
827
851
  interface _DeleteChatControlsConfigurationResponseSuccess
828
852
  include ::Seahorse::Client::_ResponseSuccess[Types::DeleteChatControlsConfigurationResponse]
829
853
  end
@@ -1882,6 +1906,12 @@ module Aws
1882
1906
  ?media_extraction_configuration: {
1883
1907
  image_extraction_configuration: {
1884
1908
  image_extraction_status: ("ENABLED" | "DISABLED")
1909
+ }?,
1910
+ audio_extraction_configuration: {
1911
+ audio_extraction_status: ("ENABLED" | "DISABLED")
1912
+ }?,
1913
+ video_extraction_configuration: {
1914
+ video_extraction_status: ("ENABLED" | "DISABLED")
1885
1915
  }?
1886
1916
  }
1887
1917
  ) -> _UpdateDataSourceResponseSuccess
data/sig/types.rbs CHANGED
@@ -211,6 +211,20 @@ module Aws::QBusiness
211
211
  SENSITIVE: []
212
212
  end
213
213
 
214
+ class AudioExtractionConfiguration
215
+ attr_accessor audio_extraction_status: ("ENABLED" | "DISABLED")
216
+ SENSITIVE: []
217
+ end
218
+
219
+ class AudioSourceDetails
220
+ attr_accessor media_id: ::String
221
+ attr_accessor media_mime_type: ::String
222
+ attr_accessor start_time_milliseconds: ::Integer
223
+ attr_accessor end_time_milliseconds: ::Integer
224
+ attr_accessor audio_extraction_type: ("TRANSCRIPT" | "SUMMARY")
225
+ SENSITIVE: []
226
+ end
227
+
214
228
  class AuthChallengeRequest
215
229
  attr_accessor authorization_url: ::String
216
230
  SENSITIVE: []
@@ -665,6 +679,17 @@ module Aws::QBusiness
665
679
  class DeleteApplicationResponse < Aws::EmptyStructure
666
680
  end
667
681
 
682
+ class DeleteAttachmentRequest
683
+ attr_accessor application_id: ::String
684
+ attr_accessor conversation_id: ::String
685
+ attr_accessor attachment_id: ::String
686
+ attr_accessor user_id: ::String
687
+ SENSITIVE: []
688
+ end
689
+
690
+ class DeleteAttachmentResponse < Aws::EmptyStructure
691
+ end
692
+
668
693
  class DeleteChatControlsConfigurationRequest
669
694
  attr_accessor application_id: ::String
670
695
  SENSITIVE: []
@@ -1210,6 +1235,12 @@ module Aws::QBusiness
1210
1235
  SENSITIVE: []
1211
1236
  end
1212
1237
 
1238
+ class ImageSourceDetails
1239
+ attr_accessor media_id: ::String
1240
+ attr_accessor media_mime_type: ::String
1241
+ SENSITIVE: []
1242
+ end
1243
+
1213
1244
  class Index
1214
1245
  attr_accessor display_name: ::String
1215
1246
  attr_accessor index_id: ::String
@@ -1499,6 +1530,8 @@ module Aws::QBusiness
1499
1530
 
1500
1531
  class MediaExtractionConfiguration
1501
1532
  attr_accessor image_extraction_configuration: Types::ImageExtractionConfiguration
1533
+ attr_accessor audio_extraction_configuration: Types::AudioExtractionConfiguration
1534
+ attr_accessor video_extraction_configuration: Types::VideoExtractionConfiguration
1502
1535
  SENSITIVE: []
1503
1536
  end
1504
1537
 
@@ -1823,6 +1856,23 @@ module Aws::QBusiness
1823
1856
  SENSITIVE: []
1824
1857
  end
1825
1858
 
1859
+ class SourceDetails
1860
+ attr_accessor image_source_details: Types::ImageSourceDetails
1861
+ attr_accessor audio_source_details: Types::AudioSourceDetails
1862
+ attr_accessor video_source_details: Types::VideoSourceDetails
1863
+ attr_accessor unknown: untyped
1864
+ SENSITIVE: []
1865
+
1866
+ class ImageSourceDetails < SourceDetails
1867
+ end
1868
+ class AudioSourceDetails < SourceDetails
1869
+ end
1870
+ class VideoSourceDetails < SourceDetails
1871
+ end
1872
+ class Unknown < SourceDetails
1873
+ end
1874
+ end
1875
+
1826
1876
  class StartDataSourceSyncJobRequest
1827
1877
  attr_accessor data_source_id: ::String
1828
1878
  attr_accessor application_id: ::String
@@ -1926,6 +1976,7 @@ module Aws::QBusiness
1926
1976
  attr_accessor snippet_excerpt: Types::SnippetExcerpt
1927
1977
  attr_accessor media_id: ::String
1928
1978
  attr_accessor media_mime_type: ::String
1979
+ attr_accessor source_details: Types::SourceDetails
1929
1980
  SENSITIVE: []
1930
1981
  end
1931
1982
 
@@ -2124,6 +2175,20 @@ module Aws::QBusiness
2124
2175
  SENSITIVE: []
2125
2176
  end
2126
2177
 
2178
+ class VideoExtractionConfiguration
2179
+ attr_accessor video_extraction_status: ("ENABLED" | "DISABLED")
2180
+ SENSITIVE: []
2181
+ end
2182
+
2183
+ class VideoSourceDetails
2184
+ attr_accessor media_id: ::String
2185
+ attr_accessor media_mime_type: ::String
2186
+ attr_accessor start_time_milliseconds: ::Integer
2187
+ attr_accessor end_time_milliseconds: ::Integer
2188
+ attr_accessor video_extraction_type: ("TRANSCRIPT" | "SUMMARY")
2189
+ SENSITIVE: []
2190
+ end
2191
+
2127
2192
  class WebExperience
2128
2193
  attr_accessor web_experience_id: ::String
2129
2194
  attr_accessor created_at: ::Time
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-qbusiness
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.30.0
4
+ version: 1.32.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: 2025-02-18 00:00:00.000000000 Z
11
+ date: 2025-03-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core