aws-sdk-chimesdkmediapipelines 1.11.0 → 1.13.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-chimesdkmediapipelines/client.rb +283 -15
- data/lib/aws-sdk-chimesdkmediapipelines/client_api.rb +182 -0
- data/lib/aws-sdk-chimesdkmediapipelines/endpoints.rb +84 -0
- data/lib/aws-sdk-chimesdkmediapipelines/plugins/endpoints.rb +12 -0
- data/lib/aws-sdk-chimesdkmediapipelines/types.rb +326 -6
- data/lib/aws-sdk-chimesdkmediapipelines.rb +1 -1
- metadata +2 -2
@@ -1144,9 +1144,12 @@ module Aws::ChimeSDKMediaPipelines
|
|
1144
1144
|
#
|
1145
1145
|
# @!attribute [rw] fragment_selector_type
|
1146
1146
|
# The origin of the timestamps to use, `Server` or `Producer`. For
|
1147
|
-
# more information, see
|
1148
|
-
#
|
1149
|
-
#
|
1147
|
+
# more information, see [StartSelectorType][1] in the *Amazon Kinesis
|
1148
|
+
# Video Streams Developer Guide*.
|
1149
|
+
#
|
1150
|
+
#
|
1151
|
+
#
|
1152
|
+
# [1]: https://docs.aws.amazon.com/kinesisvideostreams/latest/dg/API_dataplane_StartSelector.html
|
1150
1153
|
# @return [String]
|
1151
1154
|
#
|
1152
1155
|
# @!attribute [rw] timestamp_range
|
@@ -1236,6 +1239,66 @@ module Aws::ChimeSDKMediaPipelines
|
|
1236
1239
|
include Aws::Structure
|
1237
1240
|
end
|
1238
1241
|
|
1242
|
+
# @!attribute [rw] identifier
|
1243
|
+
# The unique identifier of the resource to be updated. Valid values
|
1244
|
+
# include the ID and ARN of the media insights pipeline.
|
1245
|
+
# @return [String]
|
1246
|
+
#
|
1247
|
+
# @!attribute [rw] speaker_search_task_id
|
1248
|
+
# The ID of the speaker search task.
|
1249
|
+
# @return [String]
|
1250
|
+
#
|
1251
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/GetSpeakerSearchTaskRequest AWS API Documentation
|
1252
|
+
#
|
1253
|
+
class GetSpeakerSearchTaskRequest < Struct.new(
|
1254
|
+
:identifier,
|
1255
|
+
:speaker_search_task_id)
|
1256
|
+
SENSITIVE = []
|
1257
|
+
include Aws::Structure
|
1258
|
+
end
|
1259
|
+
|
1260
|
+
# @!attribute [rw] speaker_search_task
|
1261
|
+
# The details of the speaker search task.
|
1262
|
+
# @return [Types::SpeakerSearchTask]
|
1263
|
+
#
|
1264
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/GetSpeakerSearchTaskResponse AWS API Documentation
|
1265
|
+
#
|
1266
|
+
class GetSpeakerSearchTaskResponse < Struct.new(
|
1267
|
+
:speaker_search_task)
|
1268
|
+
SENSITIVE = []
|
1269
|
+
include Aws::Structure
|
1270
|
+
end
|
1271
|
+
|
1272
|
+
# @!attribute [rw] identifier
|
1273
|
+
# The unique identifier of the resource to be updated. Valid values
|
1274
|
+
# include the ID and ARN of the media insights pipeline.
|
1275
|
+
# @return [String]
|
1276
|
+
#
|
1277
|
+
# @!attribute [rw] voice_tone_analysis_task_id
|
1278
|
+
# The ID of the voice tone anlysis task.
|
1279
|
+
# @return [String]
|
1280
|
+
#
|
1281
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/GetVoiceToneAnalysisTaskRequest AWS API Documentation
|
1282
|
+
#
|
1283
|
+
class GetVoiceToneAnalysisTaskRequest < Struct.new(
|
1284
|
+
:identifier,
|
1285
|
+
:voice_tone_analysis_task_id)
|
1286
|
+
SENSITIVE = []
|
1287
|
+
include Aws::Structure
|
1288
|
+
end
|
1289
|
+
|
1290
|
+
# @!attribute [rw] voice_tone_analysis_task
|
1291
|
+
# The details of the voice tone analysis task.
|
1292
|
+
# @return [Types::VoiceToneAnalysisTask]
|
1293
|
+
#
|
1294
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/GetVoiceToneAnalysisTaskResponse AWS API Documentation
|
1295
|
+
#
|
1296
|
+
class GetVoiceToneAnalysisTaskResponse < Struct.new(
|
1297
|
+
:voice_tone_analysis_task)
|
1298
|
+
SENSITIVE = []
|
1299
|
+
include Aws::Structure
|
1300
|
+
end
|
1301
|
+
|
1239
1302
|
# Specifies the type of grid layout.
|
1240
1303
|
#
|
1241
1304
|
# @!attribute [rw] content_share_layout
|
@@ -1427,6 +1490,30 @@ module Aws::ChimeSDKMediaPipelines
|
|
1427
1490
|
include Aws::Structure
|
1428
1491
|
end
|
1429
1492
|
|
1493
|
+
# The task configuration settings for the Kinesis video stream source.
|
1494
|
+
#
|
1495
|
+
# @!attribute [rw] stream_arn
|
1496
|
+
# The ARN of the stream.
|
1497
|
+
# @return [String]
|
1498
|
+
#
|
1499
|
+
# @!attribute [rw] channel_id
|
1500
|
+
# The channel ID.
|
1501
|
+
# @return [Integer]
|
1502
|
+
#
|
1503
|
+
# @!attribute [rw] fragment_number
|
1504
|
+
# The unique identifier of the fragment to begin processing.
|
1505
|
+
# @return [String]
|
1506
|
+
#
|
1507
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/KinesisVideoStreamSourceTaskConfiguration AWS API Documentation
|
1508
|
+
#
|
1509
|
+
class KinesisVideoStreamSourceTaskConfiguration < Struct.new(
|
1510
|
+
:stream_arn,
|
1511
|
+
:channel_id,
|
1512
|
+
:fragment_number)
|
1513
|
+
SENSITIVE = []
|
1514
|
+
include Aws::Structure
|
1515
|
+
end
|
1516
|
+
|
1430
1517
|
# A structure that contains the configuration settings for an AWS Lambda
|
1431
1518
|
# function's data sink.
|
1432
1519
|
#
|
@@ -1823,6 +1910,11 @@ module Aws::ChimeSDKMediaPipelines
|
|
1823
1910
|
# The time at which the media insights pipeline was created.
|
1824
1911
|
# @return [Time]
|
1825
1912
|
#
|
1913
|
+
# @!attribute [rw] element_statuses
|
1914
|
+
# The statuses that the elements in a media insights pipeline can have
|
1915
|
+
# during data processing.
|
1916
|
+
# @return [Array<Types::MediaInsightsPipelineElementStatus>]
|
1917
|
+
#
|
1826
1918
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/MediaInsightsPipeline AWS API Documentation
|
1827
1919
|
#
|
1828
1920
|
class MediaInsightsPipeline < Struct.new(
|
@@ -1834,7 +1926,8 @@ module Aws::ChimeSDKMediaPipelines
|
|
1834
1926
|
:media_insights_runtime_metadata,
|
1835
1927
|
:kinesis_video_stream_recording_source_runtime_configuration,
|
1836
1928
|
:s3_recording_sink_runtime_configuration,
|
1837
|
-
:created_timestamp
|
1929
|
+
:created_timestamp,
|
1930
|
+
:element_statuses)
|
1838
1931
|
SENSITIVE = [:media_pipeline_arn, :media_insights_pipeline_configuration_arn, :media_insights_runtime_metadata]
|
1839
1932
|
include Aws::Structure
|
1840
1933
|
end
|
@@ -1936,6 +2029,11 @@ module Aws::ChimeSDKMediaPipelines
|
|
1936
2029
|
# pipeline configuration element.
|
1937
2030
|
# @return [Types::SnsTopicSinkConfiguration]
|
1938
2031
|
#
|
2032
|
+
# @!attribute [rw] voice_enhancement_sink_configuration
|
2033
|
+
# The configuration settings for voice enhancement sink in a media
|
2034
|
+
# insights pipeline configuration element.
|
2035
|
+
# @return [Types::VoiceEnhancementSinkConfiguration]
|
2036
|
+
#
|
1939
2037
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/MediaInsightsPipelineConfigurationElement AWS API Documentation
|
1940
2038
|
#
|
1941
2039
|
class MediaInsightsPipelineConfigurationElement < Struct.new(
|
@@ -1947,7 +2045,8 @@ module Aws::ChimeSDKMediaPipelines
|
|
1947
2045
|
:voice_analytics_processor_configuration,
|
1948
2046
|
:lambda_function_sink_configuration,
|
1949
2047
|
:sqs_queue_sink_configuration,
|
1950
|
-
:sns_topic_sink_configuration
|
2048
|
+
:sns_topic_sink_configuration,
|
2049
|
+
:voice_enhancement_sink_configuration)
|
1951
2050
|
SENSITIVE = []
|
1952
2051
|
include Aws::Structure
|
1953
2052
|
end
|
@@ -1976,6 +2075,25 @@ module Aws::ChimeSDKMediaPipelines
|
|
1976
2075
|
include Aws::Structure
|
1977
2076
|
end
|
1978
2077
|
|
2078
|
+
# The status of the pipeline element.
|
2079
|
+
#
|
2080
|
+
# @!attribute [rw] type
|
2081
|
+
# The type of status.
|
2082
|
+
# @return [String]
|
2083
|
+
#
|
2084
|
+
# @!attribute [rw] status
|
2085
|
+
# The element's status.
|
2086
|
+
# @return [String]
|
2087
|
+
#
|
2088
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/MediaInsightsPipelineElementStatus AWS API Documentation
|
2089
|
+
#
|
2090
|
+
class MediaInsightsPipelineElementStatus < Struct.new(
|
2091
|
+
:type,
|
2092
|
+
:status)
|
2093
|
+
SENSITIVE = []
|
2094
|
+
include Aws::Structure
|
2095
|
+
end
|
2096
|
+
|
1979
2097
|
# The connector pipeline.
|
1980
2098
|
#
|
1981
2099
|
# @!attribute [rw] sources
|
@@ -2438,6 +2556,36 @@ module Aws::ChimeSDKMediaPipelines
|
|
2438
2556
|
include Aws::Structure
|
2439
2557
|
end
|
2440
2558
|
|
2559
|
+
# A representation of an asynchronous request to perform speaker search
|
2560
|
+
# analysis on a media insights pipeline.
|
2561
|
+
#
|
2562
|
+
# @!attribute [rw] speaker_search_task_id
|
2563
|
+
# The speaker search task ID.
|
2564
|
+
# @return [String]
|
2565
|
+
#
|
2566
|
+
# @!attribute [rw] speaker_search_task_status
|
2567
|
+
# The status of the speaker search task.
|
2568
|
+
# @return [String]
|
2569
|
+
#
|
2570
|
+
# @!attribute [rw] created_timestamp
|
2571
|
+
# The time at which a speaker search task was created.
|
2572
|
+
# @return [Time]
|
2573
|
+
#
|
2574
|
+
# @!attribute [rw] updated_timestamp
|
2575
|
+
# The time at which a speaker search task was updated.
|
2576
|
+
# @return [Time]
|
2577
|
+
#
|
2578
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/SpeakerSearchTask AWS API Documentation
|
2579
|
+
#
|
2580
|
+
class SpeakerSearchTask < Struct.new(
|
2581
|
+
:speaker_search_task_id,
|
2582
|
+
:speaker_search_task_status,
|
2583
|
+
:created_timestamp,
|
2584
|
+
:updated_timestamp)
|
2585
|
+
SENSITIVE = []
|
2586
|
+
include Aws::Structure
|
2587
|
+
end
|
2588
|
+
|
2441
2589
|
# The configuration settings for the SQS sink.
|
2442
2590
|
#
|
2443
2591
|
# @!attribute [rw] insights_target
|
@@ -2452,6 +2600,133 @@ module Aws::ChimeSDKMediaPipelines
|
|
2452
2600
|
include Aws::Structure
|
2453
2601
|
end
|
2454
2602
|
|
2603
|
+
# @!attribute [rw] identifier
|
2604
|
+
# The unique identifier of the resource to be updated. Valid values
|
2605
|
+
# include the ID and ARN of the media insights pipeline.
|
2606
|
+
# @return [String]
|
2607
|
+
#
|
2608
|
+
# @!attribute [rw] voice_profile_domain_arn
|
2609
|
+
# The ARN of the voice profile domain that will store the voice
|
2610
|
+
# profile.
|
2611
|
+
# @return [String]
|
2612
|
+
#
|
2613
|
+
# @!attribute [rw] kinesis_video_stream_source_task_configuration
|
2614
|
+
# The task configuration for the Kinesis video stream source of the
|
2615
|
+
# media insights pipeline.
|
2616
|
+
# @return [Types::KinesisVideoStreamSourceTaskConfiguration]
|
2617
|
+
#
|
2618
|
+
# @!attribute [rw] client_request_token
|
2619
|
+
# The unique identifier for the client request. Use a different token
|
2620
|
+
# for different speaker search tasks.
|
2621
|
+
#
|
2622
|
+
# **A suitable default value is auto-generated.** You should normally
|
2623
|
+
# not need to pass this option.
|
2624
|
+
# @return [String]
|
2625
|
+
#
|
2626
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/StartSpeakerSearchTaskRequest AWS API Documentation
|
2627
|
+
#
|
2628
|
+
class StartSpeakerSearchTaskRequest < Struct.new(
|
2629
|
+
:identifier,
|
2630
|
+
:voice_profile_domain_arn,
|
2631
|
+
:kinesis_video_stream_source_task_configuration,
|
2632
|
+
:client_request_token)
|
2633
|
+
SENSITIVE = [:voice_profile_domain_arn, :client_request_token]
|
2634
|
+
include Aws::Structure
|
2635
|
+
end
|
2636
|
+
|
2637
|
+
# @!attribute [rw] speaker_search_task
|
2638
|
+
# The details of the speaker search task.
|
2639
|
+
# @return [Types::SpeakerSearchTask]
|
2640
|
+
#
|
2641
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/StartSpeakerSearchTaskResponse AWS API Documentation
|
2642
|
+
#
|
2643
|
+
class StartSpeakerSearchTaskResponse < Struct.new(
|
2644
|
+
:speaker_search_task)
|
2645
|
+
SENSITIVE = []
|
2646
|
+
include Aws::Structure
|
2647
|
+
end
|
2648
|
+
|
2649
|
+
# @!attribute [rw] identifier
|
2650
|
+
# The unique identifier of the resource to be updated. Valid values
|
2651
|
+
# include the ID and ARN of the media insights pipeline.
|
2652
|
+
# @return [String]
|
2653
|
+
#
|
2654
|
+
# @!attribute [rw] language_code
|
2655
|
+
# The language code.
|
2656
|
+
# @return [String]
|
2657
|
+
#
|
2658
|
+
# @!attribute [rw] kinesis_video_stream_source_task_configuration
|
2659
|
+
# The task configuration for the Kinesis video stream source of the
|
2660
|
+
# media insights pipeline.
|
2661
|
+
# @return [Types::KinesisVideoStreamSourceTaskConfiguration]
|
2662
|
+
#
|
2663
|
+
# @!attribute [rw] client_request_token
|
2664
|
+
# The unique identifier for the client request. Use a different token
|
2665
|
+
# for different voice tone analysis tasks.
|
2666
|
+
#
|
2667
|
+
# **A suitable default value is auto-generated.** You should normally
|
2668
|
+
# not need to pass this option.
|
2669
|
+
# @return [String]
|
2670
|
+
#
|
2671
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/StartVoiceToneAnalysisTaskRequest AWS API Documentation
|
2672
|
+
#
|
2673
|
+
class StartVoiceToneAnalysisTaskRequest < Struct.new(
|
2674
|
+
:identifier,
|
2675
|
+
:language_code,
|
2676
|
+
:kinesis_video_stream_source_task_configuration,
|
2677
|
+
:client_request_token)
|
2678
|
+
SENSITIVE = [:client_request_token]
|
2679
|
+
include Aws::Structure
|
2680
|
+
end
|
2681
|
+
|
2682
|
+
# @!attribute [rw] voice_tone_analysis_task
|
2683
|
+
# The details of the voice tone analysis task.
|
2684
|
+
# @return [Types::VoiceToneAnalysisTask]
|
2685
|
+
#
|
2686
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/StartVoiceToneAnalysisTaskResponse AWS API Documentation
|
2687
|
+
#
|
2688
|
+
class StartVoiceToneAnalysisTaskResponse < Struct.new(
|
2689
|
+
:voice_tone_analysis_task)
|
2690
|
+
SENSITIVE = []
|
2691
|
+
include Aws::Structure
|
2692
|
+
end
|
2693
|
+
|
2694
|
+
# @!attribute [rw] identifier
|
2695
|
+
# The unique identifier of the resource to be updated. Valid values
|
2696
|
+
# include the ID and ARN of the media insights pipeline.
|
2697
|
+
# @return [String]
|
2698
|
+
#
|
2699
|
+
# @!attribute [rw] speaker_search_task_id
|
2700
|
+
# The speaker search task ID.
|
2701
|
+
# @return [String]
|
2702
|
+
#
|
2703
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/StopSpeakerSearchTaskRequest AWS API Documentation
|
2704
|
+
#
|
2705
|
+
class StopSpeakerSearchTaskRequest < Struct.new(
|
2706
|
+
:identifier,
|
2707
|
+
:speaker_search_task_id)
|
2708
|
+
SENSITIVE = []
|
2709
|
+
include Aws::Structure
|
2710
|
+
end
|
2711
|
+
|
2712
|
+
# @!attribute [rw] identifier
|
2713
|
+
# The unique identifier of the resource to be updated. Valid values
|
2714
|
+
# include the ID and ARN of the media insights pipeline.
|
2715
|
+
# @return [String]
|
2716
|
+
#
|
2717
|
+
# @!attribute [rw] voice_tone_analysis_task_id
|
2718
|
+
# The ID of the voice tone analysis task.
|
2719
|
+
# @return [String]
|
2720
|
+
#
|
2721
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/StopVoiceToneAnalysisTaskRequest AWS API Documentation
|
2722
|
+
#
|
2723
|
+
class StopVoiceToneAnalysisTaskRequest < Struct.new(
|
2724
|
+
:identifier,
|
2725
|
+
:voice_tone_analysis_task_id)
|
2726
|
+
SENSITIVE = []
|
2727
|
+
include Aws::Structure
|
2728
|
+
end
|
2729
|
+
|
2455
2730
|
# Defines a streaming channel.
|
2456
2731
|
#
|
2457
2732
|
# @!attribute [rw] number_of_channels
|
@@ -2699,7 +2974,7 @@ module Aws::ChimeSDKMediaPipelines
|
|
2699
2974
|
include Aws::Structure
|
2700
2975
|
end
|
2701
2976
|
|
2702
|
-
# Defines the configuration settings for a
|
2977
|
+
# Defines the configuration settings for a vertical layout.
|
2703
2978
|
#
|
2704
2979
|
# @!attribute [rw] tile_order
|
2705
2980
|
# Sets the automatic ordering of the video tiles.
|
@@ -2809,5 +3084,50 @@ module Aws::ChimeSDKMediaPipelines
|
|
2809
3084
|
include Aws::Structure
|
2810
3085
|
end
|
2811
3086
|
|
3087
|
+
# A static structure that contains the configuration data for a
|
3088
|
+
# `VoiceEnhancementSinkConfiguration` element.
|
3089
|
+
#
|
3090
|
+
# @!attribute [rw] disabled
|
3091
|
+
# Disables the `VoiceEnhancementSinkConfiguration` element.
|
3092
|
+
# @return [Boolean]
|
3093
|
+
#
|
3094
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/VoiceEnhancementSinkConfiguration AWS API Documentation
|
3095
|
+
#
|
3096
|
+
class VoiceEnhancementSinkConfiguration < Struct.new(
|
3097
|
+
:disabled)
|
3098
|
+
SENSITIVE = []
|
3099
|
+
include Aws::Structure
|
3100
|
+
end
|
3101
|
+
|
3102
|
+
# A representation of an asynchronous request to perform voice tone
|
3103
|
+
# analysis on a media insights pipeline.
|
3104
|
+
#
|
3105
|
+
# @!attribute [rw] voice_tone_analysis_task_id
|
3106
|
+
# The ID of the voice tone analysis task.
|
3107
|
+
# @return [String]
|
3108
|
+
#
|
3109
|
+
# @!attribute [rw] voice_tone_analysis_task_status
|
3110
|
+
# The status of a voice tone analysis task.
|
3111
|
+
# @return [String]
|
3112
|
+
#
|
3113
|
+
# @!attribute [rw] created_timestamp
|
3114
|
+
# The time at which a voice tone analysis task was created.
|
3115
|
+
# @return [Time]
|
3116
|
+
#
|
3117
|
+
# @!attribute [rw] updated_timestamp
|
3118
|
+
# The time at which a voice tone analysis task was updated.
|
3119
|
+
# @return [Time]
|
3120
|
+
#
|
3121
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/VoiceToneAnalysisTask AWS API Documentation
|
3122
|
+
#
|
3123
|
+
class VoiceToneAnalysisTask < Struct.new(
|
3124
|
+
:voice_tone_analysis_task_id,
|
3125
|
+
:voice_tone_analysis_task_status,
|
3126
|
+
:created_timestamp,
|
3127
|
+
:updated_timestamp)
|
3128
|
+
SENSITIVE = []
|
3129
|
+
include Aws::Structure
|
3130
|
+
end
|
3131
|
+
|
2812
3132
|
end
|
2813
3133
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-chimesdkmediapipelines
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.13.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-09-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|