aws-sdk-chimesdkmediapipelines 1.13.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-chimesdkmediapipelines/client.rb +285 -2
- data/lib/aws-sdk-chimesdkmediapipelines/client_api.rb +221 -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 +389 -3
- 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]
|
@@ -1215,6 +1311,30 @@ module Aws::ChimeSDKMediaPipelines
|
|
1215
1311
|
include Aws::Structure
|
1216
1312
|
end
|
1217
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
|
+
|
1218
1338
|
# @!attribute [rw] media_pipeline_id
|
1219
1339
|
# The ID of the pipeline that you want to get.
|
1220
1340
|
# @return [String]
|
@@ -1275,7 +1395,7 @@ module Aws::ChimeSDKMediaPipelines
|
|
1275
1395
|
# @return [String]
|
1276
1396
|
#
|
1277
1397
|
# @!attribute [rw] voice_tone_analysis_task_id
|
1278
|
-
# The ID of the voice tone
|
1398
|
+
# The ID of the voice tone analysis task.
|
1279
1399
|
# @return [String]
|
1280
1400
|
#
|
1281
1401
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/GetVoiceToneAnalysisTaskRequest AWS API Documentation
|
@@ -1359,7 +1479,7 @@ module Aws::ChimeSDKMediaPipelines
|
|
1359
1479
|
# @return [Integer]
|
1360
1480
|
#
|
1361
1481
|
# @!attribute [rw] tile_aspect_ratio
|
1362
|
-
#
|
1482
|
+
# Specifies the aspect ratio of all video tiles.
|
1363
1483
|
# @return [String]
|
1364
1484
|
#
|
1365
1485
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/HorizontalLayoutConfiguration AWS API Documentation
|
@@ -1429,6 +1549,112 @@ module Aws::ChimeSDKMediaPipelines
|
|
1429
1549
|
include Aws::Structure
|
1430
1550
|
end
|
1431
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
|
+
|
1432
1658
|
# A structure that contains the runtime settings for recording a Kinesis
|
1433
1659
|
# video stream.
|
1434
1660
|
#
|
@@ -1598,6 +1824,40 @@ module Aws::ChimeSDKMediaPipelines
|
|
1598
1824
|
include Aws::Structure
|
1599
1825
|
end
|
1600
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
|
+
|
1601
1861
|
# @!attribute [rw] next_token
|
1602
1862
|
# The token used to retrieve the next page of results.
|
1603
1863
|
# @return [String]
|
@@ -2157,13 +2417,18 @@ module Aws::ChimeSDKMediaPipelines
|
|
2157
2417
|
# The media insights pipeline of a media pipeline.
|
2158
2418
|
# @return [Types::MediaInsightsPipeline]
|
2159
2419
|
#
|
2420
|
+
# @!attribute [rw] media_stream_pipeline
|
2421
|
+
# Designates a media pipeline as a media stream pipeline.
|
2422
|
+
# @return [Types::MediaStreamPipeline]
|
2423
|
+
#
|
2160
2424
|
# @see http://docs.aws.amazon.com/goto/WebAPI/chime-sdk-media-pipelines-2021-07-15/MediaPipeline AWS API Documentation
|
2161
2425
|
#
|
2162
2426
|
class MediaPipeline < Struct.new(
|
2163
2427
|
:media_capture_pipeline,
|
2164
2428
|
:media_live_connector_pipeline,
|
2165
2429
|
:media_concatenation_pipeline,
|
2166
|
-
:media_insights_pipeline
|
2430
|
+
:media_insights_pipeline,
|
2431
|
+
:media_stream_pipeline)
|
2167
2432
|
SENSITIVE = []
|
2168
2433
|
include Aws::Structure
|
2169
2434
|
end
|
@@ -2187,6 +2452,98 @@ module Aws::ChimeSDKMediaPipelines
|
|
2187
2452
|
include Aws::Structure
|
2188
2453
|
end
|
2189
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
|
+
|
2190
2547
|
# The configuration object for an event concatenation pipeline.
|
2191
2548
|
#
|
2192
2549
|
# @!attribute [rw] state
|
@@ -2974,6 +3331,35 @@ module Aws::ChimeSDKMediaPipelines
|
|
2974
3331
|
include Aws::Structure
|
2975
3332
|
end
|
2976
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
|
+
|
2977
3363
|
# Defines the configuration settings for a vertical layout.
|
2978
3364
|
#
|
2979
3365
|
# @!attribute [rw] tile_order
|
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.14.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-09-
|
11
|
+
date: 2023-09-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|