aws-sdk-chimesdkmediapipelines 1.12.0 → 1.14.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 +537 -1
- data/lib/aws-sdk-chimesdkmediapipelines/client_api.rb +388 -0
- data/lib/aws-sdk-chimesdkmediapipelines/endpoints.rb +168 -0
- data/lib/aws-sdk-chimesdkmediapipelines/plugins/endpoints.rb +24 -0
- data/lib/aws-sdk-chimesdkmediapipelines/types.rb +667 -7
- data/lib/aws-sdk-chimesdkmediapipelines.rb +1 -1
- metadata +2 -2
@@ -1047,6 +1047,90 @@ module Aws::ChimeSDKMediaPipelines
|
|
1047
1047
|
include Aws::Structure
|
1048
1048
|
end
|
1049
1049
|
|
1050
|
+
# @!attribute [rw] stream_configuration
|
1051
|
+
# The configuration settings for the video stream.
|
1052
|
+
# @return [Types::KinesisVideoStreamConfiguration]
|
1053
|
+
#
|
1054
|
+
# @!attribute [rw] pool_name
|
1055
|
+
# The name of the video stream pool.
|
1056
|
+
# @return [String]
|
1057
|
+
#
|
1058
|
+
# @!attribute [rw] client_request_token
|
1059
|
+
# The token assigned to the client making the request.
|
1060
|
+
#
|
1061
|
+
# **A suitable default value is auto-generated.** You should normally
|
1062
|
+
# not need to pass this option.
|
1063
|
+
# @return [String]
|
1064
|
+
#
|
1065
|
+
# @!attribute [rw] tags
|
1066
|
+
# The tags assigned to the video stream pool.
|
1067
|
+
# @return [Array<Types::Tag>]
|
1068
|
+
#
|
1069
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/CreateMediaPipelineKinesisVideoStreamPoolRequest AWS API Documentation
|
1070
|
+
#
|
1071
|
+
class CreateMediaPipelineKinesisVideoStreamPoolRequest < Struct.new(
|
1072
|
+
:stream_configuration,
|
1073
|
+
:pool_name,
|
1074
|
+
:client_request_token,
|
1075
|
+
:tags)
|
1076
|
+
SENSITIVE = [:client_request_token]
|
1077
|
+
include Aws::Structure
|
1078
|
+
end
|
1079
|
+
|
1080
|
+
# @!attribute [rw] kinesis_video_stream_pool_configuration
|
1081
|
+
# The configuration for the Kinesis video stream pool.
|
1082
|
+
# @return [Types::KinesisVideoStreamPoolConfiguration]
|
1083
|
+
#
|
1084
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/CreateMediaPipelineKinesisVideoStreamPoolResponse AWS API Documentation
|
1085
|
+
#
|
1086
|
+
class CreateMediaPipelineKinesisVideoStreamPoolResponse < Struct.new(
|
1087
|
+
:kinesis_video_stream_pool_configuration)
|
1088
|
+
SENSITIVE = []
|
1089
|
+
include Aws::Structure
|
1090
|
+
end
|
1091
|
+
|
1092
|
+
# @!attribute [rw] sources
|
1093
|
+
# The data sources for the media pipeline.
|
1094
|
+
# @return [Array<Types::MediaStreamSource>]
|
1095
|
+
#
|
1096
|
+
# @!attribute [rw] sinks
|
1097
|
+
# The data sink for the media pipeline.
|
1098
|
+
# @return [Array<Types::MediaStreamSink>]
|
1099
|
+
#
|
1100
|
+
# @!attribute [rw] client_request_token
|
1101
|
+
# The token assigned to the client making the request.
|
1102
|
+
#
|
1103
|
+
# **A suitable default value is auto-generated.** You should normally
|
1104
|
+
# not need to pass this option.
|
1105
|
+
# @return [String]
|
1106
|
+
#
|
1107
|
+
# @!attribute [rw] tags
|
1108
|
+
# The tags assigned to the media pipeline.
|
1109
|
+
# @return [Array<Types::Tag>]
|
1110
|
+
#
|
1111
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/CreateMediaStreamPipelineRequest AWS API Documentation
|
1112
|
+
#
|
1113
|
+
class CreateMediaStreamPipelineRequest < Struct.new(
|
1114
|
+
:sources,
|
1115
|
+
:sinks,
|
1116
|
+
:client_request_token,
|
1117
|
+
:tags)
|
1118
|
+
SENSITIVE = [:client_request_token]
|
1119
|
+
include Aws::Structure
|
1120
|
+
end
|
1121
|
+
|
1122
|
+
# @!attribute [rw] media_stream_pipeline
|
1123
|
+
# The requested media pipeline.
|
1124
|
+
# @return [Types::MediaStreamPipeline]
|
1125
|
+
#
|
1126
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/CreateMediaStreamPipelineResponse AWS API Documentation
|
1127
|
+
#
|
1128
|
+
class CreateMediaStreamPipelineResponse < Struct.new(
|
1129
|
+
:media_stream_pipeline)
|
1130
|
+
SENSITIVE = []
|
1131
|
+
include Aws::Structure
|
1132
|
+
end
|
1133
|
+
|
1050
1134
|
# The content configuration object's data channel.
|
1051
1135
|
#
|
1052
1136
|
# @!attribute [rw] state
|
@@ -1087,6 +1171,18 @@ module Aws::ChimeSDKMediaPipelines
|
|
1087
1171
|
include Aws::Structure
|
1088
1172
|
end
|
1089
1173
|
|
1174
|
+
# @!attribute [rw] identifier
|
1175
|
+
# The ID of the pool being deleted.
|
1176
|
+
# @return [String]
|
1177
|
+
#
|
1178
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/DeleteMediaPipelineKinesisVideoStreamPoolRequest AWS API Documentation
|
1179
|
+
#
|
1180
|
+
class DeleteMediaPipelineKinesisVideoStreamPoolRequest < Struct.new(
|
1181
|
+
:identifier)
|
1182
|
+
SENSITIVE = []
|
1183
|
+
include Aws::Structure
|
1184
|
+
end
|
1185
|
+
|
1090
1186
|
# @!attribute [rw] media_pipeline_id
|
1091
1187
|
# The ID of the media pipeline to delete.
|
1092
1188
|
# @return [String]
|
@@ -1144,9 +1240,12 @@ module Aws::ChimeSDKMediaPipelines
|
|
1144
1240
|
#
|
1145
1241
|
# @!attribute [rw] fragment_selector_type
|
1146
1242
|
# The origin of the timestamps to use, `Server` or `Producer`. For
|
1147
|
-
# more information, see
|
1148
|
-
#
|
1149
|
-
#
|
1243
|
+
# more information, see [StartSelectorType][1] in the *Amazon Kinesis
|
1244
|
+
# Video Streams Developer Guide*.
|
1245
|
+
#
|
1246
|
+
#
|
1247
|
+
#
|
1248
|
+
# [1]: https://docs.aws.amazon.com/kinesisvideostreams/latest/dg/API_dataplane_StartSelector.html
|
1150
1249
|
# @return [String]
|
1151
1250
|
#
|
1152
1251
|
# @!attribute [rw] timestamp_range
|
@@ -1212,6 +1311,30 @@ module Aws::ChimeSDKMediaPipelines
|
|
1212
1311
|
include Aws::Structure
|
1213
1312
|
end
|
1214
1313
|
|
1314
|
+
# @!attribute [rw] identifier
|
1315
|
+
# The ID of the video stream pool.
|
1316
|
+
# @return [String]
|
1317
|
+
#
|
1318
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/GetMediaPipelineKinesisVideoStreamPoolRequest AWS API Documentation
|
1319
|
+
#
|
1320
|
+
class GetMediaPipelineKinesisVideoStreamPoolRequest < Struct.new(
|
1321
|
+
:identifier)
|
1322
|
+
SENSITIVE = []
|
1323
|
+
include Aws::Structure
|
1324
|
+
end
|
1325
|
+
|
1326
|
+
# @!attribute [rw] kinesis_video_stream_pool_configuration
|
1327
|
+
# The video stream pool configuration object.
|
1328
|
+
# @return [Types::KinesisVideoStreamPoolConfiguration]
|
1329
|
+
#
|
1330
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/GetMediaPipelineKinesisVideoStreamPoolResponse AWS API Documentation
|
1331
|
+
#
|
1332
|
+
class GetMediaPipelineKinesisVideoStreamPoolResponse < Struct.new(
|
1333
|
+
:kinesis_video_stream_pool_configuration)
|
1334
|
+
SENSITIVE = []
|
1335
|
+
include Aws::Structure
|
1336
|
+
end
|
1337
|
+
|
1215
1338
|
# @!attribute [rw] media_pipeline_id
|
1216
1339
|
# The ID of the pipeline that you want to get.
|
1217
1340
|
# @return [String]
|
@@ -1236,6 +1359,66 @@ module Aws::ChimeSDKMediaPipelines
|
|
1236
1359
|
include Aws::Structure
|
1237
1360
|
end
|
1238
1361
|
|
1362
|
+
# @!attribute [rw] identifier
|
1363
|
+
# The unique identifier of the resource to be updated. Valid values
|
1364
|
+
# include the ID and ARN of the media insights pipeline.
|
1365
|
+
# @return [String]
|
1366
|
+
#
|
1367
|
+
# @!attribute [rw] speaker_search_task_id
|
1368
|
+
# The ID of the speaker search task.
|
1369
|
+
# @return [String]
|
1370
|
+
#
|
1371
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/GetSpeakerSearchTaskRequest AWS API Documentation
|
1372
|
+
#
|
1373
|
+
class GetSpeakerSearchTaskRequest < Struct.new(
|
1374
|
+
:identifier,
|
1375
|
+
:speaker_search_task_id)
|
1376
|
+
SENSITIVE = []
|
1377
|
+
include Aws::Structure
|
1378
|
+
end
|
1379
|
+
|
1380
|
+
# @!attribute [rw] speaker_search_task
|
1381
|
+
# The details of the speaker search task.
|
1382
|
+
# @return [Types::SpeakerSearchTask]
|
1383
|
+
#
|
1384
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/GetSpeakerSearchTaskResponse AWS API Documentation
|
1385
|
+
#
|
1386
|
+
class GetSpeakerSearchTaskResponse < Struct.new(
|
1387
|
+
:speaker_search_task)
|
1388
|
+
SENSITIVE = []
|
1389
|
+
include Aws::Structure
|
1390
|
+
end
|
1391
|
+
|
1392
|
+
# @!attribute [rw] identifier
|
1393
|
+
# The unique identifier of the resource to be updated. Valid values
|
1394
|
+
# include the ID and ARN of the media insights pipeline.
|
1395
|
+
# @return [String]
|
1396
|
+
#
|
1397
|
+
# @!attribute [rw] voice_tone_analysis_task_id
|
1398
|
+
# The ID of the voice tone analysis task.
|
1399
|
+
# @return [String]
|
1400
|
+
#
|
1401
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/GetVoiceToneAnalysisTaskRequest AWS API Documentation
|
1402
|
+
#
|
1403
|
+
class GetVoiceToneAnalysisTaskRequest < Struct.new(
|
1404
|
+
:identifier,
|
1405
|
+
:voice_tone_analysis_task_id)
|
1406
|
+
SENSITIVE = []
|
1407
|
+
include Aws::Structure
|
1408
|
+
end
|
1409
|
+
|
1410
|
+
# @!attribute [rw] voice_tone_analysis_task
|
1411
|
+
# The details of the voice tone analysis task.
|
1412
|
+
# @return [Types::VoiceToneAnalysisTask]
|
1413
|
+
#
|
1414
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/GetVoiceToneAnalysisTaskResponse AWS API Documentation
|
1415
|
+
#
|
1416
|
+
class GetVoiceToneAnalysisTaskResponse < Struct.new(
|
1417
|
+
:voice_tone_analysis_task)
|
1418
|
+
SENSITIVE = []
|
1419
|
+
include Aws::Structure
|
1420
|
+
end
|
1421
|
+
|
1239
1422
|
# Specifies the type of grid layout.
|
1240
1423
|
#
|
1241
1424
|
# @!attribute [rw] content_share_layout
|
@@ -1296,7 +1479,7 @@ module Aws::ChimeSDKMediaPipelines
|
|
1296
1479
|
# @return [Integer]
|
1297
1480
|
#
|
1298
1481
|
# @!attribute [rw] tile_aspect_ratio
|
1299
|
-
#
|
1482
|
+
# Specifies the aspect ratio of all video tiles.
|
1300
1483
|
# @return [String]
|
1301
1484
|
#
|
1302
1485
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/HorizontalLayoutConfiguration AWS API Documentation
|
@@ -1366,6 +1549,112 @@ module Aws::ChimeSDKMediaPipelines
|
|
1366
1549
|
include Aws::Structure
|
1367
1550
|
end
|
1368
1551
|
|
1552
|
+
# The configuration of an Kinesis video stream.
|
1553
|
+
#
|
1554
|
+
# @!attribute [rw] region
|
1555
|
+
# The Amazon Web Services Region of the video stream.
|
1556
|
+
# @return [String]
|
1557
|
+
#
|
1558
|
+
# @!attribute [rw] data_retention_in_hours
|
1559
|
+
# The amount of time that data is retained.
|
1560
|
+
# @return [Integer]
|
1561
|
+
#
|
1562
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/KinesisVideoStreamConfiguration AWS API Documentation
|
1563
|
+
#
|
1564
|
+
class KinesisVideoStreamConfiguration < Struct.new(
|
1565
|
+
:region,
|
1566
|
+
:data_retention_in_hours)
|
1567
|
+
SENSITIVE = []
|
1568
|
+
include Aws::Structure
|
1569
|
+
end
|
1570
|
+
|
1571
|
+
# The updated Kinesis video stream configuration object.
|
1572
|
+
#
|
1573
|
+
# @!attribute [rw] data_retention_in_hours
|
1574
|
+
# The updated time that data is retained.
|
1575
|
+
# @return [Integer]
|
1576
|
+
#
|
1577
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/KinesisVideoStreamConfigurationUpdate AWS API Documentation
|
1578
|
+
#
|
1579
|
+
class KinesisVideoStreamConfigurationUpdate < Struct.new(
|
1580
|
+
:data_retention_in_hours)
|
1581
|
+
SENSITIVE = []
|
1582
|
+
include Aws::Structure
|
1583
|
+
end
|
1584
|
+
|
1585
|
+
# The video stream pool configuration object.
|
1586
|
+
#
|
1587
|
+
# @!attribute [rw] pool_arn
|
1588
|
+
# The ARN of the video stream pool configuration.
|
1589
|
+
# @return [String]
|
1590
|
+
#
|
1591
|
+
# @!attribute [rw] pool_name
|
1592
|
+
# The name of the video stream pool configuration.
|
1593
|
+
# @return [String]
|
1594
|
+
#
|
1595
|
+
# @!attribute [rw] pool_id
|
1596
|
+
# The ID of the video stream pool in the configuration.
|
1597
|
+
# @return [String]
|
1598
|
+
#
|
1599
|
+
# @!attribute [rw] pool_status
|
1600
|
+
# The status of the video stream pool in the configuration.
|
1601
|
+
# @return [String]
|
1602
|
+
#
|
1603
|
+
# @!attribute [rw] pool_size
|
1604
|
+
# The size of the video stream pool in the configuration.
|
1605
|
+
# @return [Integer]
|
1606
|
+
#
|
1607
|
+
# @!attribute [rw] stream_configuration
|
1608
|
+
# The Kinesis video stream pool configuration object.
|
1609
|
+
# @return [Types::KinesisVideoStreamConfiguration]
|
1610
|
+
#
|
1611
|
+
# @!attribute [rw] created_timestamp
|
1612
|
+
# The time at which the configuration was created.
|
1613
|
+
# @return [Time]
|
1614
|
+
#
|
1615
|
+
# @!attribute [rw] updated_timestamp
|
1616
|
+
# The time at which the configuration was updated.
|
1617
|
+
# @return [Time]
|
1618
|
+
#
|
1619
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/KinesisVideoStreamPoolConfiguration AWS API Documentation
|
1620
|
+
#
|
1621
|
+
class KinesisVideoStreamPoolConfiguration < Struct.new(
|
1622
|
+
:pool_arn,
|
1623
|
+
:pool_name,
|
1624
|
+
:pool_id,
|
1625
|
+
:pool_status,
|
1626
|
+
:pool_size,
|
1627
|
+
:stream_configuration,
|
1628
|
+
:created_timestamp,
|
1629
|
+
:updated_timestamp)
|
1630
|
+
SENSITIVE = [:pool_arn]
|
1631
|
+
include Aws::Structure
|
1632
|
+
end
|
1633
|
+
|
1634
|
+
# A summary of the Kinesis video stream pool.
|
1635
|
+
#
|
1636
|
+
# @!attribute [rw] pool_name
|
1637
|
+
# The name of the video stream pool.
|
1638
|
+
# @return [String]
|
1639
|
+
#
|
1640
|
+
# @!attribute [rw] pool_id
|
1641
|
+
# The ID of the video stream pool.
|
1642
|
+
# @return [String]
|
1643
|
+
#
|
1644
|
+
# @!attribute [rw] pool_arn
|
1645
|
+
# The ARN of the video stream pool.
|
1646
|
+
# @return [String]
|
1647
|
+
#
|
1648
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/KinesisVideoStreamPoolSummary AWS API Documentation
|
1649
|
+
#
|
1650
|
+
class KinesisVideoStreamPoolSummary < Struct.new(
|
1651
|
+
:pool_name,
|
1652
|
+
:pool_id,
|
1653
|
+
:pool_arn)
|
1654
|
+
SENSITIVE = [:pool_arn]
|
1655
|
+
include Aws::Structure
|
1656
|
+
end
|
1657
|
+
|
1369
1658
|
# A structure that contains the runtime settings for recording a Kinesis
|
1370
1659
|
# video stream.
|
1371
1660
|
#
|
@@ -1427,6 +1716,30 @@ module Aws::ChimeSDKMediaPipelines
|
|
1427
1716
|
include Aws::Structure
|
1428
1717
|
end
|
1429
1718
|
|
1719
|
+
# The task configuration settings for the Kinesis video stream source.
|
1720
|
+
#
|
1721
|
+
# @!attribute [rw] stream_arn
|
1722
|
+
# The ARN of the stream.
|
1723
|
+
# @return [String]
|
1724
|
+
#
|
1725
|
+
# @!attribute [rw] channel_id
|
1726
|
+
# The channel ID.
|
1727
|
+
# @return [Integer]
|
1728
|
+
#
|
1729
|
+
# @!attribute [rw] fragment_number
|
1730
|
+
# The unique identifier of the fragment to begin processing.
|
1731
|
+
# @return [String]
|
1732
|
+
#
|
1733
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/KinesisVideoStreamSourceTaskConfiguration AWS API Documentation
|
1734
|
+
#
|
1735
|
+
class KinesisVideoStreamSourceTaskConfiguration < Struct.new(
|
1736
|
+
:stream_arn,
|
1737
|
+
:channel_id,
|
1738
|
+
:fragment_number)
|
1739
|
+
SENSITIVE = []
|
1740
|
+
include Aws::Structure
|
1741
|
+
end
|
1742
|
+
|
1430
1743
|
# A structure that contains the configuration settings for an AWS Lambda
|
1431
1744
|
# function's data sink.
|
1432
1745
|
#
|
@@ -1511,6 +1824,40 @@ module Aws::ChimeSDKMediaPipelines
|
|
1511
1824
|
include Aws::Structure
|
1512
1825
|
end
|
1513
1826
|
|
1827
|
+
# @!attribute [rw] next_token
|
1828
|
+
# The token used to return the next page of results.
|
1829
|
+
# @return [String]
|
1830
|
+
#
|
1831
|
+
# @!attribute [rw] max_results
|
1832
|
+
# The maximum number of results to return in a single call.
|
1833
|
+
# @return [Integer]
|
1834
|
+
#
|
1835
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/ListMediaPipelineKinesisVideoStreamPoolsRequest AWS API Documentation
|
1836
|
+
#
|
1837
|
+
class ListMediaPipelineKinesisVideoStreamPoolsRequest < Struct.new(
|
1838
|
+
:next_token,
|
1839
|
+
:max_results)
|
1840
|
+
SENSITIVE = []
|
1841
|
+
include Aws::Structure
|
1842
|
+
end
|
1843
|
+
|
1844
|
+
# @!attribute [rw] kinesis_video_stream_pools
|
1845
|
+
# The list of video stream pools.
|
1846
|
+
# @return [Array<Types::KinesisVideoStreamPoolSummary>]
|
1847
|
+
#
|
1848
|
+
# @!attribute [rw] next_token
|
1849
|
+
# The token used to return the next page of results.
|
1850
|
+
# @return [String]
|
1851
|
+
#
|
1852
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/ListMediaPipelineKinesisVideoStreamPoolsResponse AWS API Documentation
|
1853
|
+
#
|
1854
|
+
class ListMediaPipelineKinesisVideoStreamPoolsResponse < Struct.new(
|
1855
|
+
:kinesis_video_stream_pools,
|
1856
|
+
:next_token)
|
1857
|
+
SENSITIVE = []
|
1858
|
+
include Aws::Structure
|
1859
|
+
end
|
1860
|
+
|
1514
1861
|
# @!attribute [rw] next_token
|
1515
1862
|
# The token used to retrieve the next page of results.
|
1516
1863
|
# @return [String]
|
@@ -1943,8 +2290,8 @@ module Aws::ChimeSDKMediaPipelines
|
|
1943
2290
|
# @return [Types::SnsTopicSinkConfiguration]
|
1944
2291
|
#
|
1945
2292
|
# @!attribute [rw] voice_enhancement_sink_configuration
|
1946
|
-
# The configuration settings for
|
1947
|
-
#
|
2293
|
+
# The configuration settings for voice enhancement sink in a media
|
2294
|
+
# insights pipeline configuration element.
|
1948
2295
|
# @return [Types::VoiceEnhancementSinkConfiguration]
|
1949
2296
|
#
|
1950
2297
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/MediaInsightsPipelineConfigurationElement AWS API Documentation
|
@@ -2070,13 +2417,18 @@ module Aws::ChimeSDKMediaPipelines
|
|
2070
2417
|
# The media insights pipeline of a media pipeline.
|
2071
2418
|
# @return [Types::MediaInsightsPipeline]
|
2072
2419
|
#
|
2420
|
+
# @!attribute [rw] media_stream_pipeline
|
2421
|
+
# Designates a media pipeline as a media stream pipeline.
|
2422
|
+
# @return [Types::MediaStreamPipeline]
|
2423
|
+
#
|
2073
2424
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/MediaPipeline AWS API Documentation
|
2074
2425
|
#
|
2075
2426
|
class MediaPipeline < Struct.new(
|
2076
2427
|
:media_capture_pipeline,
|
2077
2428
|
:media_live_connector_pipeline,
|
2078
2429
|
:media_concatenation_pipeline,
|
2079
|
-
:media_insights_pipeline
|
2430
|
+
:media_insights_pipeline,
|
2431
|
+
:media_stream_pipeline)
|
2080
2432
|
SENSITIVE = []
|
2081
2433
|
include Aws::Structure
|
2082
2434
|
end
|
@@ -2100,6 +2452,98 @@ module Aws::ChimeSDKMediaPipelines
|
|
2100
2452
|
include Aws::Structure
|
2101
2453
|
end
|
2102
2454
|
|
2455
|
+
# Structure that contains the settings for a media stream pipeline.
|
2456
|
+
#
|
2457
|
+
# @!attribute [rw] media_pipeline_id
|
2458
|
+
# The ID of the media stream pipeline
|
2459
|
+
# @return [String]
|
2460
|
+
#
|
2461
|
+
# @!attribute [rw] media_pipeline_arn
|
2462
|
+
# The ARN of the media stream pipeline.
|
2463
|
+
# @return [String]
|
2464
|
+
#
|
2465
|
+
# @!attribute [rw] created_timestamp
|
2466
|
+
# The time at which the media stream pipeline was created.
|
2467
|
+
# @return [Time]
|
2468
|
+
#
|
2469
|
+
# @!attribute [rw] updated_timestamp
|
2470
|
+
# The time at which the media stream pipeline was updated.
|
2471
|
+
# @return [Time]
|
2472
|
+
#
|
2473
|
+
# @!attribute [rw] status
|
2474
|
+
# The status of the media stream pipeline.
|
2475
|
+
# @return [String]
|
2476
|
+
#
|
2477
|
+
# @!attribute [rw] sources
|
2478
|
+
# The media stream pipeline's data sources.
|
2479
|
+
# @return [Array<Types::MediaStreamSource>]
|
2480
|
+
#
|
2481
|
+
# @!attribute [rw] sinks
|
2482
|
+
# The media stream pipeline's data sinks.
|
2483
|
+
# @return [Array<Types::MediaStreamSink>]
|
2484
|
+
#
|
2485
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/MediaStreamPipeline AWS API Documentation
|
2486
|
+
#
|
2487
|
+
class MediaStreamPipeline < Struct.new(
|
2488
|
+
:media_pipeline_id,
|
2489
|
+
:media_pipeline_arn,
|
2490
|
+
:created_timestamp,
|
2491
|
+
:updated_timestamp,
|
2492
|
+
:status,
|
2493
|
+
:sources,
|
2494
|
+
:sinks)
|
2495
|
+
SENSITIVE = []
|
2496
|
+
include Aws::Structure
|
2497
|
+
end
|
2498
|
+
|
2499
|
+
# Structure that contains the settings for a media stream sink.
|
2500
|
+
#
|
2501
|
+
# @!attribute [rw] sink_arn
|
2502
|
+
# The ARN of the media stream sink.
|
2503
|
+
# @return [String]
|
2504
|
+
#
|
2505
|
+
# @!attribute [rw] sink_type
|
2506
|
+
# The media stream sink's type.
|
2507
|
+
# @return [String]
|
2508
|
+
#
|
2509
|
+
# @!attribute [rw] reserved_stream_capacity
|
2510
|
+
# Specifies the number of streams that the sink can accept.
|
2511
|
+
# @return [Integer]
|
2512
|
+
#
|
2513
|
+
# @!attribute [rw] media_stream_type
|
2514
|
+
# The media stream sink's media stream type.
|
2515
|
+
# @return [String]
|
2516
|
+
#
|
2517
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/MediaStreamSink AWS API Documentation
|
2518
|
+
#
|
2519
|
+
class MediaStreamSink < Struct.new(
|
2520
|
+
:sink_arn,
|
2521
|
+
:sink_type,
|
2522
|
+
:reserved_stream_capacity,
|
2523
|
+
:media_stream_type)
|
2524
|
+
SENSITIVE = [:sink_arn]
|
2525
|
+
include Aws::Structure
|
2526
|
+
end
|
2527
|
+
|
2528
|
+
# Structure that contains the settings for media stream sources.
|
2529
|
+
#
|
2530
|
+
# @!attribute [rw] source_type
|
2531
|
+
# The type of media stream source.
|
2532
|
+
# @return [String]
|
2533
|
+
#
|
2534
|
+
# @!attribute [rw] source_arn
|
2535
|
+
# The ARN of the media stream source.
|
2536
|
+
# @return [String]
|
2537
|
+
#
|
2538
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/MediaStreamSource AWS API Documentation
|
2539
|
+
#
|
2540
|
+
class MediaStreamSource < Struct.new(
|
2541
|
+
:source_type,
|
2542
|
+
:source_arn)
|
2543
|
+
SENSITIVE = [:source_arn]
|
2544
|
+
include Aws::Structure
|
2545
|
+
end
|
2546
|
+
|
2103
2547
|
# The configuration object for an event concatenation pipeline.
|
2104
2548
|
#
|
2105
2549
|
# @!attribute [rw] state
|
@@ -2469,6 +2913,36 @@ module Aws::ChimeSDKMediaPipelines
|
|
2469
2913
|
include Aws::Structure
|
2470
2914
|
end
|
2471
2915
|
|
2916
|
+
# A representation of an asynchronous request to perform speaker search
|
2917
|
+
# analysis on a media insights pipeline.
|
2918
|
+
#
|
2919
|
+
# @!attribute [rw] speaker_search_task_id
|
2920
|
+
# The speaker search task ID.
|
2921
|
+
# @return [String]
|
2922
|
+
#
|
2923
|
+
# @!attribute [rw] speaker_search_task_status
|
2924
|
+
# The status of the speaker search task.
|
2925
|
+
# @return [String]
|
2926
|
+
#
|
2927
|
+
# @!attribute [rw] created_timestamp
|
2928
|
+
# The time at which a speaker search task was created.
|
2929
|
+
# @return [Time]
|
2930
|
+
#
|
2931
|
+
# @!attribute [rw] updated_timestamp
|
2932
|
+
# The time at which a speaker search task was updated.
|
2933
|
+
# @return [Time]
|
2934
|
+
#
|
2935
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/SpeakerSearchTask AWS API Documentation
|
2936
|
+
#
|
2937
|
+
class SpeakerSearchTask < Struct.new(
|
2938
|
+
:speaker_search_task_id,
|
2939
|
+
:speaker_search_task_status,
|
2940
|
+
:created_timestamp,
|
2941
|
+
:updated_timestamp)
|
2942
|
+
SENSITIVE = []
|
2943
|
+
include Aws::Structure
|
2944
|
+
end
|
2945
|
+
|
2472
2946
|
# The configuration settings for the SQS sink.
|
2473
2947
|
#
|
2474
2948
|
# @!attribute [rw] insights_target
|
@@ -2483,6 +2957,133 @@ module Aws::ChimeSDKMediaPipelines
|
|
2483
2957
|
include Aws::Structure
|
2484
2958
|
end
|
2485
2959
|
|
2960
|
+
# @!attribute [rw] identifier
|
2961
|
+
# The unique identifier of the resource to be updated. Valid values
|
2962
|
+
# include the ID and ARN of the media insights pipeline.
|
2963
|
+
# @return [String]
|
2964
|
+
#
|
2965
|
+
# @!attribute [rw] voice_profile_domain_arn
|
2966
|
+
# The ARN of the voice profile domain that will store the voice
|
2967
|
+
# profile.
|
2968
|
+
# @return [String]
|
2969
|
+
#
|
2970
|
+
# @!attribute [rw] kinesis_video_stream_source_task_configuration
|
2971
|
+
# The task configuration for the Kinesis video stream source of the
|
2972
|
+
# media insights pipeline.
|
2973
|
+
# @return [Types::KinesisVideoStreamSourceTaskConfiguration]
|
2974
|
+
#
|
2975
|
+
# @!attribute [rw] client_request_token
|
2976
|
+
# The unique identifier for the client request. Use a different token
|
2977
|
+
# for different speaker search tasks.
|
2978
|
+
#
|
2979
|
+
# **A suitable default value is auto-generated.** You should normally
|
2980
|
+
# not need to pass this option.
|
2981
|
+
# @return [String]
|
2982
|
+
#
|
2983
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/StartSpeakerSearchTaskRequest AWS API Documentation
|
2984
|
+
#
|
2985
|
+
class StartSpeakerSearchTaskRequest < Struct.new(
|
2986
|
+
:identifier,
|
2987
|
+
:voice_profile_domain_arn,
|
2988
|
+
:kinesis_video_stream_source_task_configuration,
|
2989
|
+
:client_request_token)
|
2990
|
+
SENSITIVE = [:voice_profile_domain_arn, :client_request_token]
|
2991
|
+
include Aws::Structure
|
2992
|
+
end
|
2993
|
+
|
2994
|
+
# @!attribute [rw] speaker_search_task
|
2995
|
+
# The details of the speaker search task.
|
2996
|
+
# @return [Types::SpeakerSearchTask]
|
2997
|
+
#
|
2998
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/StartSpeakerSearchTaskResponse AWS API Documentation
|
2999
|
+
#
|
3000
|
+
class StartSpeakerSearchTaskResponse < Struct.new(
|
3001
|
+
:speaker_search_task)
|
3002
|
+
SENSITIVE = []
|
3003
|
+
include Aws::Structure
|
3004
|
+
end
|
3005
|
+
|
3006
|
+
# @!attribute [rw] identifier
|
3007
|
+
# The unique identifier of the resource to be updated. Valid values
|
3008
|
+
# include the ID and ARN of the media insights pipeline.
|
3009
|
+
# @return [String]
|
3010
|
+
#
|
3011
|
+
# @!attribute [rw] language_code
|
3012
|
+
# The language code.
|
3013
|
+
# @return [String]
|
3014
|
+
#
|
3015
|
+
# @!attribute [rw] kinesis_video_stream_source_task_configuration
|
3016
|
+
# The task configuration for the Kinesis video stream source of the
|
3017
|
+
# media insights pipeline.
|
3018
|
+
# @return [Types::KinesisVideoStreamSourceTaskConfiguration]
|
3019
|
+
#
|
3020
|
+
# @!attribute [rw] client_request_token
|
3021
|
+
# The unique identifier for the client request. Use a different token
|
3022
|
+
# for different voice tone analysis tasks.
|
3023
|
+
#
|
3024
|
+
# **A suitable default value is auto-generated.** You should normally
|
3025
|
+
# not need to pass this option.
|
3026
|
+
# @return [String]
|
3027
|
+
#
|
3028
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/StartVoiceToneAnalysisTaskRequest AWS API Documentation
|
3029
|
+
#
|
3030
|
+
class StartVoiceToneAnalysisTaskRequest < Struct.new(
|
3031
|
+
:identifier,
|
3032
|
+
:language_code,
|
3033
|
+
:kinesis_video_stream_source_task_configuration,
|
3034
|
+
:client_request_token)
|
3035
|
+
SENSITIVE = [:client_request_token]
|
3036
|
+
include Aws::Structure
|
3037
|
+
end
|
3038
|
+
|
3039
|
+
# @!attribute [rw] voice_tone_analysis_task
|
3040
|
+
# The details of the voice tone analysis task.
|
3041
|
+
# @return [Types::VoiceToneAnalysisTask]
|
3042
|
+
#
|
3043
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/StartVoiceToneAnalysisTaskResponse AWS API Documentation
|
3044
|
+
#
|
3045
|
+
class StartVoiceToneAnalysisTaskResponse < Struct.new(
|
3046
|
+
:voice_tone_analysis_task)
|
3047
|
+
SENSITIVE = []
|
3048
|
+
include Aws::Structure
|
3049
|
+
end
|
3050
|
+
|
3051
|
+
# @!attribute [rw] identifier
|
3052
|
+
# The unique identifier of the resource to be updated. Valid values
|
3053
|
+
# include the ID and ARN of the media insights pipeline.
|
3054
|
+
# @return [String]
|
3055
|
+
#
|
3056
|
+
# @!attribute [rw] speaker_search_task_id
|
3057
|
+
# The speaker search task ID.
|
3058
|
+
# @return [String]
|
3059
|
+
#
|
3060
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/StopSpeakerSearchTaskRequest AWS API Documentation
|
3061
|
+
#
|
3062
|
+
class StopSpeakerSearchTaskRequest < Struct.new(
|
3063
|
+
:identifier,
|
3064
|
+
:speaker_search_task_id)
|
3065
|
+
SENSITIVE = []
|
3066
|
+
include Aws::Structure
|
3067
|
+
end
|
3068
|
+
|
3069
|
+
# @!attribute [rw] identifier
|
3070
|
+
# The unique identifier of the resource to be updated. Valid values
|
3071
|
+
# include the ID and ARN of the media insights pipeline.
|
3072
|
+
# @return [String]
|
3073
|
+
#
|
3074
|
+
# @!attribute [rw] voice_tone_analysis_task_id
|
3075
|
+
# The ID of the voice tone analysis task.
|
3076
|
+
# @return [String]
|
3077
|
+
#
|
3078
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/StopVoiceToneAnalysisTaskRequest AWS API Documentation
|
3079
|
+
#
|
3080
|
+
class StopVoiceToneAnalysisTaskRequest < Struct.new(
|
3081
|
+
:identifier,
|
3082
|
+
:voice_tone_analysis_task_id)
|
3083
|
+
SENSITIVE = []
|
3084
|
+
include Aws::Structure
|
3085
|
+
end
|
3086
|
+
|
2486
3087
|
# Defines a streaming channel.
|
2487
3088
|
#
|
2488
3089
|
# @!attribute [rw] number_of_channels
|
@@ -2730,6 +3331,35 @@ module Aws::ChimeSDKMediaPipelines
|
|
2730
3331
|
include Aws::Structure
|
2731
3332
|
end
|
2732
3333
|
|
3334
|
+
# @!attribute [rw] identifier
|
3335
|
+
# The ID of the video stream pool.
|
3336
|
+
# @return [String]
|
3337
|
+
#
|
3338
|
+
# @!attribute [rw] stream_configuration
|
3339
|
+
# The configuration settings for the video stream.
|
3340
|
+
# @return [Types::KinesisVideoStreamConfigurationUpdate]
|
3341
|
+
#
|
3342
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/UpdateMediaPipelineKinesisVideoStreamPoolRequest AWS API Documentation
|
3343
|
+
#
|
3344
|
+
class UpdateMediaPipelineKinesisVideoStreamPoolRequest < Struct.new(
|
3345
|
+
:identifier,
|
3346
|
+
:stream_configuration)
|
3347
|
+
SENSITIVE = []
|
3348
|
+
include Aws::Structure
|
3349
|
+
end
|
3350
|
+
|
3351
|
+
# @!attribute [rw] kinesis_video_stream_pool_configuration
|
3352
|
+
# The video stream pool configuration object.
|
3353
|
+
# @return [Types::KinesisVideoStreamPoolConfiguration]
|
3354
|
+
#
|
3355
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/UpdateMediaPipelineKinesisVideoStreamPoolResponse AWS API Documentation
|
3356
|
+
#
|
3357
|
+
class UpdateMediaPipelineKinesisVideoStreamPoolResponse < Struct.new(
|
3358
|
+
:kinesis_video_stream_pool_configuration)
|
3359
|
+
SENSITIVE = []
|
3360
|
+
include Aws::Structure
|
3361
|
+
end
|
3362
|
+
|
2733
3363
|
# Defines the configuration settings for a vertical layout.
|
2734
3364
|
#
|
2735
3365
|
# @!attribute [rw] tile_order
|
@@ -2855,5 +3485,35 @@ module Aws::ChimeSDKMediaPipelines
|
|
2855
3485
|
include Aws::Structure
|
2856
3486
|
end
|
2857
3487
|
|
3488
|
+
# A representation of an asynchronous request to perform voice tone
|
3489
|
+
# analysis on a media insights pipeline.
|
3490
|
+
#
|
3491
|
+
# @!attribute [rw] voice_tone_analysis_task_id
|
3492
|
+
# The ID of the voice tone analysis task.
|
3493
|
+
# @return [String]
|
3494
|
+
#
|
3495
|
+
# @!attribute [rw] voice_tone_analysis_task_status
|
3496
|
+
# The status of a voice tone analysis task.
|
3497
|
+
# @return [String]
|
3498
|
+
#
|
3499
|
+
# @!attribute [rw] created_timestamp
|
3500
|
+
# The time at which a voice tone analysis task was created.
|
3501
|
+
# @return [Time]
|
3502
|
+
#
|
3503
|
+
# @!attribute [rw] updated_timestamp
|
3504
|
+
# The time at which a voice tone analysis task was updated.
|
3505
|
+
# @return [Time]
|
3506
|
+
#
|
3507
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/VoiceToneAnalysisTask AWS API Documentation
|
3508
|
+
#
|
3509
|
+
class VoiceToneAnalysisTask < Struct.new(
|
3510
|
+
:voice_tone_analysis_task_id,
|
3511
|
+
:voice_tone_analysis_task_status,
|
3512
|
+
:created_timestamp,
|
3513
|
+
:updated_timestamp)
|
3514
|
+
SENSITIVE = []
|
3515
|
+
include Aws::Structure
|
3516
|
+
end
|
3517
|
+
|
2858
3518
|
end
|
2859
3519
|
end
|