aws-sdk-mediaconnect 1.86.0 → 1.88.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-mediaconnect/client.rb +46 -3
- data/lib/aws-sdk-mediaconnect/client_api.rb +8 -1
- data/lib/aws-sdk-mediaconnect/types.rb +45 -7
- data/lib/aws-sdk-mediaconnect.rb +1 -1
- data/sig/client.rbs +28 -15
- data/sig/types.rbs +7 -0
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7e8ba8b90a926de1b326a0182df56d246f78d76d5629286b4efd4c76c9c63f33
|
4
|
+
data.tar.gz: a6cf0b0cd21683f8e96ce2f6b5d625ecb6cdb84436183c3ecb549aa6ebca8395
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 544fedbcf4cb919731d4e288f03580884b0a777903ce8f4cabab3e7adcfee88b8f1ac7b180effb88f25e9afa35ad25ec4523d4ca9c5e07b4db8abc6af0671d9a
|
7
|
+
data.tar.gz: fb12fce8da9e78aef0469fb972482ad79447f98ec84ab34eb4f13b27a61183085bbe1de6f590a81207c6ed4e771d7c8e60c209adaf5981d421fd98c89d861cb1
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.88.0 (2025-10-06)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Enabling Tag-on-Create for AWS Elemental MediaConnect flow-based resource types
|
8
|
+
|
9
|
+
1.87.0 (2025-08-26)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.86.0 (2025-08-21)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.88.0
|
@@ -633,6 +633,9 @@ module Aws::MediaConnect
|
|
633
633
|
# media_stream_name: "String", # required
|
634
634
|
# media_stream_type: "video", # required, accepts video, audio, ancillary-data
|
635
635
|
# video_format: "String",
|
636
|
+
# media_stream_tags: {
|
637
|
+
# "String" => "String",
|
638
|
+
# },
|
636
639
|
# },
|
637
640
|
# ],
|
638
641
|
# })
|
@@ -724,7 +727,7 @@ module Aws::MediaConnect
|
|
724
727
|
# min_latency: 1,
|
725
728
|
# name: "String",
|
726
729
|
# port: 1,
|
727
|
-
# protocol: "zixi-push", #
|
730
|
+
# protocol: "zixi-push", # accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener, srt-caller, fujitsu-qos, udp, ndi-speed-hq
|
728
731
|
# remote_id: "String",
|
729
732
|
# sender_control_port: 1,
|
730
733
|
# smoothing_latency: 1,
|
@@ -735,6 +738,9 @@ module Aws::MediaConnect
|
|
735
738
|
# output_status: "ENABLED", # accepts ENABLED, DISABLED
|
736
739
|
# ndi_speed_hq_quality: 1,
|
737
740
|
# ndi_program_name: "String",
|
741
|
+
# output_tags: {
|
742
|
+
# "String" => "String",
|
743
|
+
# },
|
738
744
|
# },
|
739
745
|
# ],
|
740
746
|
# })
|
@@ -869,6 +875,9 @@ module Aws::MediaConnect
|
|
869
875
|
# vpc_interface_name: "String",
|
870
876
|
# },
|
871
877
|
# },
|
878
|
+
# source_tags: {
|
879
|
+
# "String" => "String",
|
880
|
+
# },
|
872
881
|
# },
|
873
882
|
# ],
|
874
883
|
# })
|
@@ -957,6 +966,9 @@ module Aws::MediaConnect
|
|
957
966
|
# role_arn: "String", # required
|
958
967
|
# security_group_ids: ["String"], # required
|
959
968
|
# subnet_id: "String", # required
|
969
|
+
# vpc_interface_tags: {
|
970
|
+
# "String" => "String",
|
971
|
+
# },
|
960
972
|
# },
|
961
973
|
# ],
|
962
974
|
# })
|
@@ -1166,6 +1178,9 @@ module Aws::MediaConnect
|
|
1166
1178
|
# Specifies the configuration settings for NDI outputs. Required when
|
1167
1179
|
# the flow includes NDI outputs.
|
1168
1180
|
#
|
1181
|
+
# @option params [Hash<String,String>] :flow_tags
|
1182
|
+
# The key-value pairs that can be used to tag and organize the flow.
|
1183
|
+
#
|
1169
1184
|
# @return [Types::CreateFlowResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1170
1185
|
#
|
1171
1186
|
# * {Types::CreateFlowResponse#flow #flow} => Types::Flow
|
@@ -1192,6 +1207,9 @@ module Aws::MediaConnect
|
|
1192
1207
|
# entitlement_status: "ENABLED", # accepts ENABLED, DISABLED
|
1193
1208
|
# name: "String",
|
1194
1209
|
# subscribers: ["String"], # required
|
1210
|
+
# entitlement_tags: {
|
1211
|
+
# "String" => "String",
|
1212
|
+
# },
|
1195
1213
|
# },
|
1196
1214
|
# ],
|
1197
1215
|
# media_streams: [
|
@@ -1214,6 +1232,9 @@ module Aws::MediaConnect
|
|
1214
1232
|
# media_stream_name: "String", # required
|
1215
1233
|
# media_stream_type: "video", # required, accepts video, audio, ancillary-data
|
1216
1234
|
# video_format: "String",
|
1235
|
+
# media_stream_tags: {
|
1236
|
+
# "String" => "String",
|
1237
|
+
# },
|
1217
1238
|
# },
|
1218
1239
|
# ],
|
1219
1240
|
# name: "String", # required
|
@@ -1256,7 +1277,7 @@ module Aws::MediaConnect
|
|
1256
1277
|
# min_latency: 1,
|
1257
1278
|
# name: "String",
|
1258
1279
|
# port: 1,
|
1259
|
-
# protocol: "zixi-push", #
|
1280
|
+
# protocol: "zixi-push", # accepts zixi-push, rtp-fec, rtp, zixi-pull, rist, st2110-jpegxs, cdi, srt-listener, srt-caller, fujitsu-qos, udp, ndi-speed-hq
|
1260
1281
|
# remote_id: "String",
|
1261
1282
|
# sender_control_port: 1,
|
1262
1283
|
# smoothing_latency: 1,
|
@@ -1267,6 +1288,9 @@ module Aws::MediaConnect
|
|
1267
1288
|
# output_status: "ENABLED", # accepts ENABLED, DISABLED
|
1268
1289
|
# ndi_speed_hq_quality: 1,
|
1269
1290
|
# ndi_program_name: "String",
|
1291
|
+
# output_tags: {
|
1292
|
+
# "String" => "String",
|
1293
|
+
# },
|
1270
1294
|
# },
|
1271
1295
|
# ],
|
1272
1296
|
# source: {
|
@@ -1317,6 +1341,9 @@ module Aws::MediaConnect
|
|
1317
1341
|
# vpc_interface_name: "String",
|
1318
1342
|
# },
|
1319
1343
|
# },
|
1344
|
+
# source_tags: {
|
1345
|
+
# "String" => "String",
|
1346
|
+
# },
|
1320
1347
|
# },
|
1321
1348
|
# source_failover_config: {
|
1322
1349
|
# failover_mode: "MERGE", # accepts MERGE, FAILOVER
|
@@ -1375,6 +1402,9 @@ module Aws::MediaConnect
|
|
1375
1402
|
# vpc_interface_name: "String",
|
1376
1403
|
# },
|
1377
1404
|
# },
|
1405
|
+
# source_tags: {
|
1406
|
+
# "String" => "String",
|
1407
|
+
# },
|
1378
1408
|
# },
|
1379
1409
|
# ],
|
1380
1410
|
# vpc_interfaces: [
|
@@ -1384,6 +1414,9 @@ module Aws::MediaConnect
|
|
1384
1414
|
# role_arn: "String", # required
|
1385
1415
|
# security_group_ids: ["String"], # required
|
1386
1416
|
# subnet_id: "String", # required
|
1417
|
+
# vpc_interface_tags: {
|
1418
|
+
# "String" => "String",
|
1419
|
+
# },
|
1387
1420
|
# },
|
1388
1421
|
# ],
|
1389
1422
|
# maintenance: {
|
@@ -1426,6 +1459,9 @@ module Aws::MediaConnect
|
|
1426
1459
|
# },
|
1427
1460
|
# ],
|
1428
1461
|
# },
|
1462
|
+
# flow_tags: {
|
1463
|
+
# "String" => "String",
|
1464
|
+
# },
|
1429
1465
|
# })
|
1430
1466
|
#
|
1431
1467
|
# @example Response structure
|
@@ -2449,6 +2485,9 @@ module Aws::MediaConnect
|
|
2449
2485
|
# entitlement_status: "ENABLED", # accepts ENABLED, DISABLED
|
2450
2486
|
# name: "String",
|
2451
2487
|
# subscribers: ["String"], # required
|
2488
|
+
# entitlement_tags: {
|
2489
|
+
# "String" => "String",
|
2490
|
+
# },
|
2452
2491
|
# },
|
2453
2492
|
# ],
|
2454
2493
|
# flow_arn: "GrantFlowEntitlementsRequestFlowArnString", # required
|
@@ -3638,6 +3677,9 @@ module Aws::MediaConnect
|
|
3638
3677
|
# Specifies the configuration settings for NDI outputs. Required when
|
3639
3678
|
# the flow includes NDI outputs.
|
3640
3679
|
#
|
3680
|
+
# @option params [String] :flow_size
|
3681
|
+
# Determines the processing capacity and feature set of the flow.
|
3682
|
+
#
|
3641
3683
|
# @return [Types::UpdateFlowResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3642
3684
|
#
|
3643
3685
|
# * {Types::UpdateFlowResponse#flow #flow} => Types::Flow
|
@@ -3694,6 +3736,7 @@ module Aws::MediaConnect
|
|
3694
3736
|
# },
|
3695
3737
|
# ],
|
3696
3738
|
# },
|
3739
|
+
# flow_size: "MEDIUM", # accepts MEDIUM, LARGE
|
3697
3740
|
# })
|
3698
3741
|
#
|
3699
3742
|
# @example Response structure
|
@@ -4562,7 +4605,7 @@ module Aws::MediaConnect
|
|
4562
4605
|
tracer: tracer
|
4563
4606
|
)
|
4564
4607
|
context[:gem_name] = 'aws-sdk-mediaconnect'
|
4565
|
-
context[:gem_version] = '1.
|
4608
|
+
context[:gem_version] = '1.88.0'
|
4566
4609
|
Seahorse::Client::Request.new(handlers, context)
|
4567
4610
|
end
|
4568
4611
|
|
@@ -440,6 +440,7 @@ module Aws::MediaConnect
|
|
440
440
|
AddMediaStreamRequest.add_member(:media_stream_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "mediaStreamName"))
|
441
441
|
AddMediaStreamRequest.add_member(:media_stream_type, Shapes::ShapeRef.new(shape: MediaStreamType, required: true, location_name: "mediaStreamType"))
|
442
442
|
AddMediaStreamRequest.add_member(:video_format, Shapes::ShapeRef.new(shape: String, location_name: "videoFormat"))
|
443
|
+
AddMediaStreamRequest.add_member(:media_stream_tags, Shapes::ShapeRef.new(shape: __mapOfString, location_name: "mediaStreamTags"))
|
443
444
|
AddMediaStreamRequest.struct_class = Types::AddMediaStreamRequest
|
444
445
|
|
445
446
|
AddOutputRequest.add_member(:cidr_allow_list, Shapes::ShapeRef.new(shape: __listOfString, location_name: "cidrAllowList"))
|
@@ -451,7 +452,7 @@ module Aws::MediaConnect
|
|
451
452
|
AddOutputRequest.add_member(:min_latency, Shapes::ShapeRef.new(shape: Integer, location_name: "minLatency"))
|
452
453
|
AddOutputRequest.add_member(:name, Shapes::ShapeRef.new(shape: String, location_name: "name"))
|
453
454
|
AddOutputRequest.add_member(:port, Shapes::ShapeRef.new(shape: Integer, location_name: "port"))
|
454
|
-
AddOutputRequest.add_member(:protocol, Shapes::ShapeRef.new(shape: Protocol,
|
455
|
+
AddOutputRequest.add_member(:protocol, Shapes::ShapeRef.new(shape: Protocol, location_name: "protocol"))
|
455
456
|
AddOutputRequest.add_member(:remote_id, Shapes::ShapeRef.new(shape: String, location_name: "remoteId"))
|
456
457
|
AddOutputRequest.add_member(:sender_control_port, Shapes::ShapeRef.new(shape: Integer, location_name: "senderControlPort"))
|
457
458
|
AddOutputRequest.add_member(:smoothing_latency, Shapes::ShapeRef.new(shape: Integer, location_name: "smoothingLatency"))
|
@@ -460,6 +461,7 @@ module Aws::MediaConnect
|
|
460
461
|
AddOutputRequest.add_member(:output_status, Shapes::ShapeRef.new(shape: OutputStatus, location_name: "outputStatus"))
|
461
462
|
AddOutputRequest.add_member(:ndi_speed_hq_quality, Shapes::ShapeRef.new(shape: Integer, location_name: "ndiSpeedHqQuality"))
|
462
463
|
AddOutputRequest.add_member(:ndi_program_name, Shapes::ShapeRef.new(shape: String, location_name: "ndiProgramName"))
|
464
|
+
AddOutputRequest.add_member(:output_tags, Shapes::ShapeRef.new(shape: __mapOfString, location_name: "outputTags"))
|
463
465
|
AddOutputRequest.struct_class = Types::AddOutputRequest
|
464
466
|
|
465
467
|
AudioMonitoringSetting.add_member(:silent_audio, Shapes::ShapeRef.new(shape: SilentAudio, location_name: "silentAudio"))
|
@@ -553,6 +555,7 @@ module Aws::MediaConnect
|
|
553
555
|
CreateFlowRequest.add_member(:source_monitoring_config, Shapes::ShapeRef.new(shape: MonitoringConfig, location_name: "sourceMonitoringConfig"))
|
554
556
|
CreateFlowRequest.add_member(:flow_size, Shapes::ShapeRef.new(shape: FlowSize, location_name: "flowSize"))
|
555
557
|
CreateFlowRequest.add_member(:ndi_config, Shapes::ShapeRef.new(shape: NdiConfig, location_name: "ndiConfig"))
|
558
|
+
CreateFlowRequest.add_member(:flow_tags, Shapes::ShapeRef.new(shape: __mapOfString, location_name: "flowTags"))
|
556
559
|
CreateFlowRequest.struct_class = Types::CreateFlowRequest
|
557
560
|
|
558
561
|
CreateFlowResponse.add_member(:flow, Shapes::ShapeRef.new(shape: Flow, location_name: "flow"))
|
@@ -777,6 +780,7 @@ module Aws::MediaConnect
|
|
777
780
|
GrantEntitlementRequest.add_member(:entitlement_status, Shapes::ShapeRef.new(shape: EntitlementStatus, location_name: "entitlementStatus"))
|
778
781
|
GrantEntitlementRequest.add_member(:name, Shapes::ShapeRef.new(shape: String, location_name: "name"))
|
779
782
|
GrantEntitlementRequest.add_member(:subscribers, Shapes::ShapeRef.new(shape: __listOfString, required: true, location_name: "subscribers"))
|
783
|
+
GrantEntitlementRequest.add_member(:entitlement_tags, Shapes::ShapeRef.new(shape: __mapOfString, location_name: "entitlementTags"))
|
780
784
|
GrantEntitlementRequest.struct_class = Types::GrantEntitlementRequest
|
781
785
|
|
782
786
|
GrantFlowEntitlements420Exception.add_member(:message, Shapes::ShapeRef.new(shape: String, required: true, location_name: "message"))
|
@@ -1124,6 +1128,7 @@ module Aws::MediaConnect
|
|
1124
1128
|
SetSourceRequest.add_member(:vpc_interface_name, Shapes::ShapeRef.new(shape: String, location_name: "vpcInterfaceName"))
|
1125
1129
|
SetSourceRequest.add_member(:whitelist_cidr, Shapes::ShapeRef.new(shape: String, location_name: "whitelistCidr"))
|
1126
1130
|
SetSourceRequest.add_member(:gateway_bridge_source, Shapes::ShapeRef.new(shape: SetGatewayBridgeSourceRequest, location_name: "gatewayBridgeSource"))
|
1131
|
+
SetSourceRequest.add_member(:source_tags, Shapes::ShapeRef.new(shape: __mapOfString, location_name: "sourceTags"))
|
1127
1132
|
SetSourceRequest.struct_class = Types::SetSourceRequest
|
1128
1133
|
|
1129
1134
|
SilentAudio.add_member(:state, Shapes::ShapeRef.new(shape: State, location_name: "state"))
|
@@ -1350,6 +1355,7 @@ module Aws::MediaConnect
|
|
1350
1355
|
UpdateFlowRequest.add_member(:maintenance, Shapes::ShapeRef.new(shape: UpdateMaintenance, location_name: "maintenance"))
|
1351
1356
|
UpdateFlowRequest.add_member(:source_monitoring_config, Shapes::ShapeRef.new(shape: MonitoringConfig, location_name: "sourceMonitoringConfig"))
|
1352
1357
|
UpdateFlowRequest.add_member(:ndi_config, Shapes::ShapeRef.new(shape: NdiConfig, location_name: "ndiConfig"))
|
1358
|
+
UpdateFlowRequest.add_member(:flow_size, Shapes::ShapeRef.new(shape: FlowSize, location_name: "flowSize"))
|
1353
1359
|
UpdateFlowRequest.struct_class = Types::UpdateFlowRequest
|
1354
1360
|
|
1355
1361
|
UpdateFlowResponse.add_member(:flow, Shapes::ShapeRef.new(shape: Flow, location_name: "flow"))
|
@@ -1422,6 +1428,7 @@ module Aws::MediaConnect
|
|
1422
1428
|
VpcInterfaceRequest.add_member(:role_arn, Shapes::ShapeRef.new(shape: String, required: true, location_name: "roleArn"))
|
1423
1429
|
VpcInterfaceRequest.add_member(:security_group_ids, Shapes::ShapeRef.new(shape: __listOfString, required: true, location_name: "securityGroupIds"))
|
1424
1430
|
VpcInterfaceRequest.add_member(:subnet_id, Shapes::ShapeRef.new(shape: String, required: true, location_name: "subnetId"))
|
1431
|
+
VpcInterfaceRequest.add_member(:vpc_interface_tags, Shapes::ShapeRef.new(shape: __mapOfString, location_name: "vpcInterfaceTags"))
|
1425
1432
|
VpcInterfaceRequest.struct_class = Types::VpcInterfaceRequest
|
1426
1433
|
|
1427
1434
|
__listOfAddBridgeOutputRequest.member = Shapes::ShapeRef.new(shape: AddBridgeOutputRequest)
|
@@ -479,6 +479,11 @@ module Aws::MediaConnect
|
|
479
479
|
# The resolution of the video.
|
480
480
|
# @return [String]
|
481
481
|
#
|
482
|
+
# @!attribute [rw] media_stream_tags
|
483
|
+
# The key-value pairs that can be used to tag and organize the media
|
484
|
+
# stream.
|
485
|
+
# @return [Hash<String,String>]
|
486
|
+
#
|
482
487
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/AddMediaStreamRequest AWS API Documentation
|
483
488
|
#
|
484
489
|
class AddMediaStreamRequest < Struct.new(
|
@@ -488,7 +493,8 @@ module Aws::MediaConnect
|
|
488
493
|
:media_stream_id,
|
489
494
|
:media_stream_name,
|
490
495
|
:media_stream_type,
|
491
|
-
:video_format
|
496
|
+
:video_format,
|
497
|
+
:media_stream_tags)
|
492
498
|
SENSITIVE = []
|
493
499
|
include Aws::Structure
|
494
500
|
end
|
@@ -592,6 +598,10 @@ module Aws::MediaConnect
|
|
592
598
|
# a custom name isn't specified, MediaConnect uses the output name.
|
593
599
|
# @return [String]
|
594
600
|
#
|
601
|
+
# @!attribute [rw] output_tags
|
602
|
+
# The key-value pairs that can be used to tag and organize the output.
|
603
|
+
# @return [Hash<String,String>]
|
604
|
+
#
|
595
605
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/AddOutputRequest AWS API Documentation
|
596
606
|
#
|
597
607
|
class AddOutputRequest < Struct.new(
|
@@ -612,7 +622,8 @@ module Aws::MediaConnect
|
|
612
622
|
:vpc_interface_attachment,
|
613
623
|
:output_status,
|
614
624
|
:ndi_speed_hq_quality,
|
615
|
-
:ndi_program_name
|
625
|
+
:ndi_program_name,
|
626
|
+
:output_tags)
|
616
627
|
SENSITIVE = []
|
617
628
|
include Aws::Structure
|
618
629
|
end
|
@@ -1073,6 +1084,10 @@ module Aws::MediaConnect
|
|
1073
1084
|
# the flow includes NDI outputs.
|
1074
1085
|
# @return [Types::NdiConfig]
|
1075
1086
|
#
|
1087
|
+
# @!attribute [rw] flow_tags
|
1088
|
+
# The key-value pairs that can be used to tag and organize the flow.
|
1089
|
+
# @return [Hash<String,String>]
|
1090
|
+
#
|
1076
1091
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/CreateFlowRequest AWS API Documentation
|
1077
1092
|
#
|
1078
1093
|
class CreateFlowRequest < Struct.new(
|
@@ -1088,7 +1103,8 @@ module Aws::MediaConnect
|
|
1088
1103
|
:maintenance,
|
1089
1104
|
:source_monitoring_config,
|
1090
1105
|
:flow_size,
|
1091
|
-
:ndi_config
|
1106
|
+
:ndi_config,
|
1107
|
+
:flow_tags)
|
1092
1108
|
SENSITIVE = []
|
1093
1109
|
include Aws::Structure
|
1094
1110
|
end
|
@@ -2220,6 +2236,11 @@ module Aws::MediaConnect
|
|
2220
2236
|
# to create their own flows using your content as the source.
|
2221
2237
|
# @return [Array<String>]
|
2222
2238
|
#
|
2239
|
+
# @!attribute [rw] entitlement_tags
|
2240
|
+
# The key-value pairs that can be used to tag and organize the
|
2241
|
+
# entitlement.
|
2242
|
+
# @return [Hash<String,String>]
|
2243
|
+
#
|
2223
2244
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/GrantEntitlementRequest AWS API Documentation
|
2224
2245
|
#
|
2225
2246
|
class GrantEntitlementRequest < Struct.new(
|
@@ -2228,7 +2249,8 @@ module Aws::MediaConnect
|
|
2228
2249
|
:encryption,
|
2229
2250
|
:entitlement_status,
|
2230
2251
|
:name,
|
2231
|
-
:subscribers
|
2252
|
+
:subscribers,
|
2253
|
+
:entitlement_tags)
|
2232
2254
|
SENSITIVE = []
|
2233
2255
|
include Aws::Structure
|
2234
2256
|
end
|
@@ -4132,6 +4154,10 @@ module Aws::MediaConnect
|
|
4132
4154
|
# bridge.
|
4133
4155
|
# @return [Types::SetGatewayBridgeSourceRequest]
|
4134
4156
|
#
|
4157
|
+
# @!attribute [rw] source_tags
|
4158
|
+
# The key-value pairs that can be used to tag and organize the source.
|
4159
|
+
# @return [Hash<String,String>]
|
4160
|
+
#
|
4135
4161
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/SetSourceRequest AWS API Documentation
|
4136
4162
|
#
|
4137
4163
|
class SetSourceRequest < Struct.new(
|
@@ -4153,7 +4179,8 @@ module Aws::MediaConnect
|
|
4153
4179
|
:stream_id,
|
4154
4180
|
:vpc_interface_name,
|
4155
4181
|
:whitelist_cidr,
|
4156
|
-
:gateway_bridge_source
|
4182
|
+
:gateway_bridge_source,
|
4183
|
+
:source_tags)
|
4157
4184
|
SENSITIVE = []
|
4158
4185
|
include Aws::Structure
|
4159
4186
|
end
|
@@ -5343,6 +5370,10 @@ module Aws::MediaConnect
|
|
5343
5370
|
# the flow includes NDI outputs.
|
5344
5371
|
# @return [Types::NdiConfig]
|
5345
5372
|
#
|
5373
|
+
# @!attribute [rw] flow_size
|
5374
|
+
# Determines the processing capacity and feature set of the flow.
|
5375
|
+
# @return [String]
|
5376
|
+
#
|
5346
5377
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/UpdateFlowRequest AWS API Documentation
|
5347
5378
|
#
|
5348
5379
|
class UpdateFlowRequest < Struct.new(
|
@@ -5350,7 +5381,8 @@ module Aws::MediaConnect
|
|
5350
5381
|
:source_failover_config,
|
5351
5382
|
:maintenance,
|
5352
5383
|
:source_monitoring_config,
|
5353
|
-
:ndi_config
|
5384
|
+
:ndi_config,
|
5385
|
+
:flow_size)
|
5354
5386
|
SENSITIVE = []
|
5355
5387
|
include Aws::Structure
|
5356
5388
|
end
|
@@ -5724,6 +5756,11 @@ module Aws::MediaConnect
|
|
5724
5756
|
# the flow.
|
5725
5757
|
# @return [String]
|
5726
5758
|
#
|
5759
|
+
# @!attribute [rw] vpc_interface_tags
|
5760
|
+
# The key-value pairs that can be used to tag and organize the VPC
|
5761
|
+
# network interface.
|
5762
|
+
# @return [Hash<String,String>]
|
5763
|
+
#
|
5727
5764
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mediaconnect-2018-11-14/VpcInterfaceRequest AWS API Documentation
|
5728
5765
|
#
|
5729
5766
|
class VpcInterfaceRequest < Struct.new(
|
@@ -5731,7 +5768,8 @@ module Aws::MediaConnect
|
|
5731
5768
|
:network_interface_type,
|
5732
5769
|
:role_arn,
|
5733
5770
|
:security_group_ids,
|
5734
|
-
:subnet_id
|
5771
|
+
:subnet_id,
|
5772
|
+
:vpc_interface_tags)
|
5735
5773
|
SENSITIVE = []
|
5736
5774
|
include Aws::Structure
|
5737
5775
|
end
|
data/lib/aws-sdk-mediaconnect.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -160,7 +160,8 @@ module Aws
|
|
160
160
|
media_stream_id: ::Integer,
|
161
161
|
media_stream_name: ::String,
|
162
162
|
media_stream_type: ("video" | "audio" | "ancillary-data"),
|
163
|
-
video_format: ::String
|
163
|
+
video_format: ::String?,
|
164
|
+
media_stream_tags: Hash[::String, ::String]?
|
164
165
|
},
|
165
166
|
]
|
166
167
|
) -> _AddFlowMediaStreamsResponseSuccess
|
@@ -213,7 +214,7 @@ module Aws
|
|
213
214
|
min_latency: ::Integer?,
|
214
215
|
name: ::String?,
|
215
216
|
port: ::Integer?,
|
216
|
-
protocol: ("zixi-push" | "rtp-fec" | "rtp" | "zixi-pull" | "rist" | "st2110-jpegxs" | "cdi" | "srt-listener" | "srt-caller" | "fujitsu-qos" | "udp" | "ndi-speed-hq")
|
217
|
+
protocol: ("zixi-push" | "rtp-fec" | "rtp" | "zixi-pull" | "rist" | "st2110-jpegxs" | "cdi" | "srt-listener" | "srt-caller" | "fujitsu-qos" | "udp" | "ndi-speed-hq")?,
|
217
218
|
remote_id: ::String?,
|
218
219
|
sender_control_port: ::Integer?,
|
219
220
|
smoothing_latency: ::Integer?,
|
@@ -223,7 +224,8 @@ module Aws
|
|
223
224
|
}?,
|
224
225
|
output_status: ("ENABLED" | "DISABLED")?,
|
225
226
|
ndi_speed_hq_quality: ::Integer?,
|
226
|
-
ndi_program_name: ::String
|
227
|
+
ndi_program_name: ::String?,
|
228
|
+
output_tags: Hash[::String, ::String]?
|
227
229
|
},
|
228
230
|
]
|
229
231
|
) -> _AddFlowOutputsResponseSuccess
|
@@ -285,7 +287,8 @@ module Aws
|
|
285
287
|
vpc_interface_attachment: {
|
286
288
|
vpc_interface_name: ::String?
|
287
289
|
}?
|
288
|
-
}
|
290
|
+
}?,
|
291
|
+
source_tags: Hash[::String, ::String]?
|
289
292
|
},
|
290
293
|
]
|
291
294
|
) -> _AddFlowSourcesResponseSuccess
|
@@ -305,7 +308,8 @@ module Aws
|
|
305
308
|
network_interface_type: ("ena" | "efa")?,
|
306
309
|
role_arn: ::String,
|
307
310
|
security_group_ids: Array[::String],
|
308
|
-
subnet_id: ::String
|
311
|
+
subnet_id: ::String,
|
312
|
+
vpc_interface_tags: Hash[::String, ::String]?
|
309
313
|
},
|
310
314
|
]
|
311
315
|
) -> _AddFlowVpcInterfacesResponseSuccess
|
@@ -394,7 +398,8 @@ module Aws
|
|
394
398
|
}?,
|
395
399
|
entitlement_status: ("ENABLED" | "DISABLED")?,
|
396
400
|
name: ::String?,
|
397
|
-
subscribers: Array[::String]
|
401
|
+
subscribers: Array[::String],
|
402
|
+
entitlement_tags: Hash[::String, ::String]?
|
398
403
|
},
|
399
404
|
],
|
400
405
|
?media_streams: Array[
|
@@ -416,7 +421,8 @@ module Aws
|
|
416
421
|
media_stream_id: ::Integer,
|
417
422
|
media_stream_name: ::String,
|
418
423
|
media_stream_type: ("video" | "audio" | "ancillary-data"),
|
419
|
-
video_format: ::String
|
424
|
+
video_format: ::String?,
|
425
|
+
media_stream_tags: Hash[::String, ::String]?
|
420
426
|
},
|
421
427
|
],
|
422
428
|
name: ::String,
|
@@ -459,7 +465,7 @@ module Aws
|
|
459
465
|
min_latency: ::Integer?,
|
460
466
|
name: ::String?,
|
461
467
|
port: ::Integer?,
|
462
|
-
protocol: ("zixi-push" | "rtp-fec" | "rtp" | "zixi-pull" | "rist" | "st2110-jpegxs" | "cdi" | "srt-listener" | "srt-caller" | "fujitsu-qos" | "udp" | "ndi-speed-hq")
|
468
|
+
protocol: ("zixi-push" | "rtp-fec" | "rtp" | "zixi-pull" | "rist" | "st2110-jpegxs" | "cdi" | "srt-listener" | "srt-caller" | "fujitsu-qos" | "udp" | "ndi-speed-hq")?,
|
463
469
|
remote_id: ::String?,
|
464
470
|
sender_control_port: ::Integer?,
|
465
471
|
smoothing_latency: ::Integer?,
|
@@ -469,7 +475,8 @@ module Aws
|
|
469
475
|
}?,
|
470
476
|
output_status: ("ENABLED" | "DISABLED")?,
|
471
477
|
ndi_speed_hq_quality: ::Integer?,
|
472
|
-
ndi_program_name: ::String
|
478
|
+
ndi_program_name: ::String?,
|
479
|
+
output_tags: Hash[::String, ::String]?
|
473
480
|
},
|
474
481
|
],
|
475
482
|
?source: {
|
@@ -519,7 +526,8 @@ module Aws
|
|
519
526
|
vpc_interface_attachment: {
|
520
527
|
vpc_interface_name: ::String?
|
521
528
|
}?
|
522
|
-
}
|
529
|
+
}?,
|
530
|
+
source_tags: Hash[::String, ::String]?
|
523
531
|
},
|
524
532
|
?source_failover_config: {
|
525
533
|
failover_mode: ("MERGE" | "FAILOVER")?,
|
@@ -577,7 +585,8 @@ module Aws
|
|
577
585
|
vpc_interface_attachment: {
|
578
586
|
vpc_interface_name: ::String?
|
579
587
|
}?
|
580
|
-
}
|
588
|
+
}?,
|
589
|
+
source_tags: Hash[::String, ::String]?
|
581
590
|
},
|
582
591
|
],
|
583
592
|
?vpc_interfaces: Array[
|
@@ -586,7 +595,8 @@ module Aws
|
|
586
595
|
network_interface_type: ("ena" | "efa")?,
|
587
596
|
role_arn: ::String,
|
588
597
|
security_group_ids: Array[::String],
|
589
|
-
subnet_id: ::String
|
598
|
+
subnet_id: ::String,
|
599
|
+
vpc_interface_tags: Hash[::String, ::String]?
|
590
600
|
},
|
591
601
|
],
|
592
602
|
?maintenance: {
|
@@ -628,7 +638,8 @@ module Aws
|
|
628
638
|
vpc_interface_adapter: ::String
|
629
639
|
},
|
630
640
|
]?
|
631
|
-
}
|
641
|
+
},
|
642
|
+
?flow_tags: Hash[::String, ::String]
|
632
643
|
) -> _CreateFlowResponseSuccess
|
633
644
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateFlowResponseSuccess
|
634
645
|
|
@@ -800,7 +811,8 @@ module Aws
|
|
800
811
|
}?,
|
801
812
|
entitlement_status: ("ENABLED" | "DISABLED")?,
|
802
813
|
name: ::String?,
|
803
|
-
subscribers: Array[::String]
|
814
|
+
subscribers: Array[::String],
|
815
|
+
entitlement_tags: Hash[::String, ::String]?
|
804
816
|
},
|
805
817
|
],
|
806
818
|
flow_arn: ::String
|
@@ -1173,7 +1185,8 @@ module Aws
|
|
1173
1185
|
vpc_interface_adapter: ::String
|
1174
1186
|
},
|
1175
1187
|
]?
|
1176
|
-
}
|
1188
|
+
},
|
1189
|
+
?flow_size: ("MEDIUM" | "LARGE")
|
1177
1190
|
) -> _UpdateFlowResponseSuccess
|
1178
1191
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateFlowResponseSuccess
|
1179
1192
|
|
data/sig/types.rbs
CHANGED
@@ -148,6 +148,7 @@ module Aws::MediaConnect
|
|
148
148
|
attr_accessor media_stream_name: ::String
|
149
149
|
attr_accessor media_stream_type: ("video" | "audio" | "ancillary-data")
|
150
150
|
attr_accessor video_format: ::String
|
151
|
+
attr_accessor media_stream_tags: ::Hash[::String, ::String]
|
151
152
|
SENSITIVE: []
|
152
153
|
end
|
153
154
|
|
@@ -170,6 +171,7 @@ module Aws::MediaConnect
|
|
170
171
|
attr_accessor output_status: ("ENABLED" | "DISABLED")
|
171
172
|
attr_accessor ndi_speed_hq_quality: ::Integer
|
172
173
|
attr_accessor ndi_program_name: ::String
|
174
|
+
attr_accessor output_tags: ::Hash[::String, ::String]
|
173
175
|
SENSITIVE: []
|
174
176
|
end
|
175
177
|
|
@@ -295,6 +297,7 @@ module Aws::MediaConnect
|
|
295
297
|
attr_accessor source_monitoring_config: Types::MonitoringConfig
|
296
298
|
attr_accessor flow_size: ("MEDIUM" | "LARGE")
|
297
299
|
attr_accessor ndi_config: Types::NdiConfig
|
300
|
+
attr_accessor flow_tags: ::Hash[::String, ::String]
|
298
301
|
SENSITIVE: []
|
299
302
|
end
|
300
303
|
|
@@ -613,6 +616,7 @@ module Aws::MediaConnect
|
|
613
616
|
attr_accessor entitlement_status: ("ENABLED" | "DISABLED")
|
614
617
|
attr_accessor name: ::String
|
615
618
|
attr_accessor subscribers: ::Array[::String]
|
619
|
+
attr_accessor entitlement_tags: ::Hash[::String, ::String]
|
616
620
|
SENSITIVE: []
|
617
621
|
end
|
618
622
|
|
@@ -1096,6 +1100,7 @@ module Aws::MediaConnect
|
|
1096
1100
|
attr_accessor vpc_interface_name: ::String
|
1097
1101
|
attr_accessor whitelist_cidr: ::String
|
1098
1102
|
attr_accessor gateway_bridge_source: Types::SetGatewayBridgeSourceRequest
|
1103
|
+
attr_accessor source_tags: ::Hash[::String, ::String]
|
1099
1104
|
SENSITIVE: []
|
1100
1105
|
end
|
1101
1106
|
|
@@ -1394,6 +1399,7 @@ module Aws::MediaConnect
|
|
1394
1399
|
attr_accessor maintenance: Types::UpdateMaintenance
|
1395
1400
|
attr_accessor source_monitoring_config: Types::MonitoringConfig
|
1396
1401
|
attr_accessor ndi_config: Types::NdiConfig
|
1402
|
+
attr_accessor flow_size: ("MEDIUM" | "LARGE")
|
1397
1403
|
SENSITIVE: []
|
1398
1404
|
end
|
1399
1405
|
|
@@ -1490,6 +1496,7 @@ module Aws::MediaConnect
|
|
1490
1496
|
attr_accessor role_arn: ::String
|
1491
1497
|
attr_accessor security_group_ids: ::Array[::String]
|
1492
1498
|
attr_accessor subnet_id: ::String
|
1499
|
+
attr_accessor vpc_interface_tags: ::Hash[::String, ::String]
|
1493
1500
|
SENSITIVE: []
|
1494
1501
|
end
|
1495
1502
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-mediaconnect
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.88.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
@@ -18,7 +18,7 @@ dependencies:
|
|
18
18
|
version: '3'
|
19
19
|
- - ">="
|
20
20
|
- !ruby/object:Gem::Version
|
21
|
-
version: 3.
|
21
|
+
version: 3.231.0
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -28,7 +28,7 @@ dependencies:
|
|
28
28
|
version: '3'
|
29
29
|
- - ">="
|
30
30
|
- !ruby/object:Gem::Version
|
31
|
-
version: 3.
|
31
|
+
version: 3.231.0
|
32
32
|
- !ruby/object:Gem::Dependency
|
33
33
|
name: aws-sigv4
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|