aws-sdk-medialive 1.149.0 → 1.151.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-medialive/client.rb +346 -7
- data/lib/aws-sdk-medialive/client_api.rb +207 -0
- data/lib/aws-sdk-medialive/types.rb +497 -17
- data/lib/aws-sdk-medialive.rb +1 -1
- data/sig/client.rbs +103 -9
- data/sig/types.rbs +125 -4
- metadata +2 -2
@@ -2392,6 +2392,10 @@ module Aws::MediaLive
|
|
2392
2392
|
# identify the stream sources for this input.
|
2393
2393
|
# @return [Types::Smpte2110ReceiverGroupSettings]
|
2394
2394
|
#
|
2395
|
+
# @!attribute [rw] sdi_sources
|
2396
|
+
# SDI Sources for this Input.
|
2397
|
+
# @return [Array<String>]
|
2398
|
+
#
|
2395
2399
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CreateInput AWS API Documentation
|
2396
2400
|
#
|
2397
2401
|
class CreateInput < Struct.new(
|
@@ -2409,7 +2413,8 @@ module Aws::MediaLive
|
|
2409
2413
|
:srt_settings,
|
2410
2414
|
:input_network_location,
|
2411
2415
|
:multicast_settings,
|
2412
|
-
:smpte_2110_receiver_group_settings
|
2416
|
+
:smpte_2110_receiver_group_settings,
|
2417
|
+
:sdi_sources)
|
2413
2418
|
SENSITIVE = []
|
2414
2419
|
include Aws::Structure
|
2415
2420
|
end
|
@@ -2476,6 +2481,10 @@ module Aws::MediaLive
|
|
2476
2481
|
# Configures the sources for the SMPTE 2110 Receiver Group input.
|
2477
2482
|
# @return [Types::Smpte2110ReceiverGroupSettings]
|
2478
2483
|
#
|
2484
|
+
# @!attribute [rw] sdi_sources
|
2485
|
+
# SDI Sources for this Input.
|
2486
|
+
# @return [Array<String>]
|
2487
|
+
#
|
2479
2488
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CreateInputRequest AWS API Documentation
|
2480
2489
|
#
|
2481
2490
|
class CreateInputRequest < Struct.new(
|
@@ -2493,7 +2502,8 @@ module Aws::MediaLive
|
|
2493
2502
|
:srt_settings,
|
2494
2503
|
:input_network_location,
|
2495
2504
|
:multicast_settings,
|
2496
|
-
:smpte_2110_receiver_group_settings
|
2505
|
+
:smpte_2110_receiver_group_settings,
|
2506
|
+
:sdi_sources)
|
2497
2507
|
SENSITIVE = []
|
2498
2508
|
include Aws::Structure
|
2499
2509
|
end
|
@@ -3529,6 +3539,10 @@ module Aws::MediaLive
|
|
3529
3539
|
# Configures the sources for the SMPTE 2110 Receiver Group input.
|
3530
3540
|
# @return [Types::Smpte2110ReceiverGroupSettings]
|
3531
3541
|
#
|
3542
|
+
# @!attribute [rw] sdi_sources
|
3543
|
+
# SDI Sources for this Input.
|
3544
|
+
# @return [Array<String>]
|
3545
|
+
#
|
3532
3546
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DescribeInputResponse AWS API Documentation
|
3533
3547
|
#
|
3534
3548
|
class DescribeInputResponse < Struct.new(
|
@@ -3551,7 +3565,8 @@ module Aws::MediaLive
|
|
3551
3565
|
:srt_settings,
|
3552
3566
|
:input_network_location,
|
3553
3567
|
:multicast_settings,
|
3554
|
-
:smpte_2110_receiver_group_settings
|
3568
|
+
:smpte_2110_receiver_group_settings,
|
3569
|
+
:sdi_sources)
|
3555
3570
|
SENSITIVE = []
|
3556
3571
|
include Aws::Structure
|
3557
3572
|
end
|
@@ -6599,6 +6614,10 @@ module Aws::MediaLive
|
|
6599
6614
|
# identify the stream sources for this input.
|
6600
6615
|
# @return [Types::Smpte2110ReceiverGroupSettings]
|
6601
6616
|
#
|
6617
|
+
# @!attribute [rw] sdi_sources
|
6618
|
+
# SDI Sources for this Input.
|
6619
|
+
# @return [Array<String>]
|
6620
|
+
#
|
6602
6621
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/Input AWS API Documentation
|
6603
6622
|
#
|
6604
6623
|
class Input < Struct.new(
|
@@ -6621,7 +6640,8 @@ module Aws::MediaLive
|
|
6621
6640
|
:srt_settings,
|
6622
6641
|
:input_network_location,
|
6623
6642
|
:multicast_settings,
|
6624
|
-
:smpte_2110_receiver_group_settings
|
6643
|
+
:smpte_2110_receiver_group_settings,
|
6644
|
+
:sdi_sources)
|
6625
6645
|
SENSITIVE = []
|
6626
6646
|
include Aws::Structure
|
6627
6647
|
end
|
@@ -6940,6 +6960,13 @@ module Aws::MediaLive
|
|
6940
6960
|
# channel configuration.
|
6941
6961
|
# @return [Array<Types::InputDeviceConfigurableAudioChannelPairConfig>]
|
6942
6962
|
#
|
6963
|
+
# @!attribute [rw] input_resolution
|
6964
|
+
# Choose the resolution of the Link device's source (HD or UHD). Make
|
6965
|
+
# sure the resolution matches the current source from the device. This
|
6966
|
+
# value determines MediaLive resource allocation and billing for this
|
6967
|
+
# input. Only UHD devices can specify this parameter.
|
6968
|
+
# @return [String]
|
6969
|
+
#
|
6943
6970
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/InputDeviceConfigurableSettings AWS API Documentation
|
6944
6971
|
#
|
6945
6972
|
class InputDeviceConfigurableSettings < Struct.new(
|
@@ -6948,7 +6975,8 @@ module Aws::MediaLive
|
|
6948
6975
|
:latency_ms,
|
6949
6976
|
:codec,
|
6950
6977
|
:mediaconnect_settings,
|
6951
|
-
:audio_channel_pairs
|
6978
|
+
:audio_channel_pairs,
|
6979
|
+
:input_resolution)
|
6952
6980
|
SENSITIVE = []
|
6953
6981
|
include Aws::Structure
|
6954
6982
|
end
|
@@ -7313,6 +7341,11 @@ module Aws::MediaLive
|
|
7313
7341
|
# a MediaConnect flow.
|
7314
7342
|
# @return [Array<Types::InputDeviceUhdAudioChannelPairConfig>]
|
7315
7343
|
#
|
7344
|
+
# @!attribute [rw] input_resolution
|
7345
|
+
# The resolution of the Link device's source (HD or UHD). This value
|
7346
|
+
# determines MediaLive resource allocation and billing for this input.
|
7347
|
+
# @return [String]
|
7348
|
+
#
|
7316
7349
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/InputDeviceUhdSettings AWS API Documentation
|
7317
7350
|
#
|
7318
7351
|
class InputDeviceUhdSettings < Struct.new(
|
@@ -7327,7 +7360,8 @@ module Aws::MediaLive
|
|
7327
7360
|
:latency_ms,
|
7328
7361
|
:codec,
|
7329
7362
|
:mediaconnect_settings,
|
7330
|
-
:audio_channel_pairs
|
7363
|
+
:audio_channel_pairs,
|
7364
|
+
:input_resolution)
|
7331
7365
|
SENSITIVE = []
|
7332
7366
|
include Aws::Structure
|
7333
7367
|
end
|
@@ -12898,6 +12932,10 @@ module Aws::MediaLive
|
|
12898
12932
|
# identify the stream sources for this input.
|
12899
12933
|
# @return [Types::Smpte2110ReceiverGroupSettings]
|
12900
12934
|
#
|
12935
|
+
# @!attribute [rw] sdi_sources
|
12936
|
+
# SDI Sources for this Input.
|
12937
|
+
# @return [Array<String>]
|
12938
|
+
#
|
12901
12939
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateInput AWS API Documentation
|
12902
12940
|
#
|
12903
12941
|
class UpdateInput < Struct.new(
|
@@ -12910,7 +12948,8 @@ module Aws::MediaLive
|
|
12910
12948
|
:sources,
|
12911
12949
|
:srt_settings,
|
12912
12950
|
:multicast_settings,
|
12913
|
-
:smpte_2110_receiver_group_settings
|
12951
|
+
:smpte_2110_receiver_group_settings,
|
12952
|
+
:sdi_sources)
|
12914
12953
|
SENSITIVE = []
|
12915
12954
|
include Aws::Structure
|
12916
12955
|
end
|
@@ -13099,6 +13138,10 @@ module Aws::MediaLive
|
|
13099
13138
|
# Configures the sources for the SMPTE 2110 Receiver Group input.
|
13100
13139
|
# @return [Types::Smpte2110ReceiverGroupSettings]
|
13101
13140
|
#
|
13141
|
+
# @!attribute [rw] sdi_sources
|
13142
|
+
# SDI Sources for this Input.
|
13143
|
+
# @return [Array<String>]
|
13144
|
+
#
|
13102
13145
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateInputRequest AWS API Documentation
|
13103
13146
|
#
|
13104
13147
|
class UpdateInputRequest < Struct.new(
|
@@ -13112,7 +13155,8 @@ module Aws::MediaLive
|
|
13112
13155
|
:sources,
|
13113
13156
|
:srt_settings,
|
13114
13157
|
:multicast_settings,
|
13115
|
-
:smpte_2110_receiver_group_settings
|
13158
|
+
:smpte_2110_receiver_group_settings,
|
13159
|
+
:sdi_sources)
|
13116
13160
|
SENSITIVE = []
|
13117
13161
|
include Aws::Structure
|
13118
13162
|
end
|
@@ -13975,6 +14019,25 @@ module Aws::MediaLive
|
|
13975
14019
|
# and period (.) and has a maximum length of 100 characters.
|
13976
14020
|
# @return [String]
|
13977
14021
|
#
|
14022
|
+
# @!attribute [rw] caption_language_mappings
|
14023
|
+
# An array that identifies the languages in the four caption channels
|
14024
|
+
# in the embedded captions.
|
14025
|
+
# @return [Array<Types::CmafIngestCaptionLanguageMapping>]
|
14026
|
+
#
|
14027
|
+
# @!attribute [rw] timed_metadata_id_3_frame
|
14028
|
+
# Set to none if you don't want to insert a timecode in the output.
|
14029
|
+
# Otherwise choose the frame type for the timecode.
|
14030
|
+
# @return [String]
|
14031
|
+
#
|
14032
|
+
# @!attribute [rw] timed_metadata_id_3_period
|
14033
|
+
# If you set up to insert a timecode in the output, specify the
|
14034
|
+
# frequency for the frame, in seconds.
|
14035
|
+
# @return [Integer]
|
14036
|
+
#
|
14037
|
+
# @!attribute [rw] timed_metadata_passthrough
|
14038
|
+
# Set to enabled to pass through ID3 metadata from the input sources.
|
14039
|
+
# @return [String]
|
14040
|
+
#
|
13978
14041
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CmafIngestGroupSettings AWS API Documentation
|
13979
14042
|
#
|
13980
14043
|
class CmafIngestGroupSettings < Struct.new(
|
@@ -13989,7 +14052,11 @@ module Aws::MediaLive
|
|
13989
14052
|
:nielsen_id_3_name_modifier,
|
13990
14053
|
:scte_35_name_modifier,
|
13991
14054
|
:id_3_behavior,
|
13992
|
-
:id_3_name_modifier
|
14055
|
+
:id_3_name_modifier,
|
14056
|
+
:caption_language_mappings,
|
14057
|
+
:timed_metadata_id_3_frame,
|
14058
|
+
:timed_metadata_id_3_period,
|
14059
|
+
:timed_metadata_passthrough)
|
13993
14060
|
SENSITIVE = []
|
13994
14061
|
include Aws::Structure
|
13995
14062
|
end
|
@@ -18784,6 +18851,10 @@ module Aws::MediaLive
|
|
18784
18851
|
# Used in DescribeNodeSummary.
|
18785
18852
|
# @return [String]
|
18786
18853
|
#
|
18854
|
+
# @!attribute [rw] sdi_source_mappings
|
18855
|
+
# Used in SdiSourceMappings.
|
18856
|
+
# @return [Array<Types::SdiSourceMapping>]
|
18857
|
+
#
|
18787
18858
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CreateNodeResponse AWS API Documentation
|
18788
18859
|
#
|
18789
18860
|
class CreateNodeResponse < Struct.new(
|
@@ -18796,7 +18867,8 @@ module Aws::MediaLive
|
|
18796
18867
|
:name,
|
18797
18868
|
:node_interface_mappings,
|
18798
18869
|
:role,
|
18799
|
-
:state
|
18870
|
+
:state,
|
18871
|
+
:sdi_source_mappings)
|
18800
18872
|
SENSITIVE = []
|
18801
18873
|
include Aws::Structure
|
18802
18874
|
end
|
@@ -19005,6 +19077,10 @@ module Aws::MediaLive
|
|
19005
19077
|
# Used in DescribeNodeSummary.
|
19006
19078
|
# @return [String]
|
19007
19079
|
#
|
19080
|
+
# @!attribute [rw] sdi_source_mappings
|
19081
|
+
# Used in SdiSourceMappings.
|
19082
|
+
# @return [Array<Types::SdiSourceMapping>]
|
19083
|
+
#
|
19008
19084
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DeleteNodeResponse AWS API Documentation
|
19009
19085
|
#
|
19010
19086
|
class DeleteNodeResponse < Struct.new(
|
@@ -19017,7 +19093,8 @@ module Aws::MediaLive
|
|
19017
19093
|
:name,
|
19018
19094
|
:node_interface_mappings,
|
19019
19095
|
:role,
|
19020
|
-
:state
|
19096
|
+
:state,
|
19097
|
+
:sdi_source_mappings)
|
19021
19098
|
SENSITIVE = []
|
19022
19099
|
include Aws::Structure
|
19023
19100
|
end
|
@@ -19557,6 +19634,10 @@ module Aws::MediaLive
|
|
19557
19634
|
# Used in DescribeNodeSummary.
|
19558
19635
|
# @return [String]
|
19559
19636
|
#
|
19637
|
+
# @!attribute [rw] sdi_source_mappings
|
19638
|
+
# Used in SdiSourceMappings.
|
19639
|
+
# @return [Array<Types::SdiSourceMapping>]
|
19640
|
+
#
|
19560
19641
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DescribeNodeResponse AWS API Documentation
|
19561
19642
|
#
|
19562
19643
|
class DescribeNodeResponse < Struct.new(
|
@@ -19569,7 +19650,8 @@ module Aws::MediaLive
|
|
19569
19650
|
:name,
|
19570
19651
|
:node_interface_mappings,
|
19571
19652
|
:role,
|
19572
|
-
:state
|
19653
|
+
:state,
|
19654
|
+
:sdi_source_mappings)
|
19573
19655
|
SENSITIVE = []
|
19574
19656
|
include Aws::Structure
|
19575
19657
|
end
|
@@ -19628,6 +19710,12 @@ module Aws::MediaLive
|
|
19628
19710
|
# The current state of the Node.
|
19629
19711
|
# @return [String]
|
19630
19712
|
#
|
19713
|
+
# @!attribute [rw] sdi_source_mappings
|
19714
|
+
# An array of SDI source mappings. Each mapping connects one logical
|
19715
|
+
# SdiSource to the physical SDI card and port that the physical SDI
|
19716
|
+
# source uses.
|
19717
|
+
# @return [Array<Types::SdiSourceMapping>]
|
19718
|
+
#
|
19631
19719
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DescribeNodeResult AWS API Documentation
|
19632
19720
|
#
|
19633
19721
|
class DescribeNodeResult < Struct.new(
|
@@ -19640,7 +19728,8 @@ module Aws::MediaLive
|
|
19640
19728
|
:name,
|
19641
19729
|
:node_interface_mappings,
|
19642
19730
|
:role,
|
19643
|
-
:state
|
19731
|
+
:state,
|
19732
|
+
:sdi_source_mappings)
|
19644
19733
|
SENSITIVE = []
|
19645
19734
|
include Aws::Structure
|
19646
19735
|
end
|
@@ -19701,6 +19790,12 @@ module Aws::MediaLive
|
|
19701
19790
|
# The current state of the Node.
|
19702
19791
|
# @return [String]
|
19703
19792
|
#
|
19793
|
+
# @!attribute [rw] sdi_source_mappings
|
19794
|
+
# An array of SDI source mappings. Each mapping connects one logical
|
19795
|
+
# SdiSource to the physical SDI card and port that the physical SDI
|
19796
|
+
# source uses.
|
19797
|
+
# @return [Array<Types::SdiSourceMapping>]
|
19798
|
+
#
|
19704
19799
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DescribeNodeSummary AWS API Documentation
|
19705
19800
|
#
|
19706
19801
|
class DescribeNodeSummary < Struct.new(
|
@@ -19714,7 +19809,8 @@ module Aws::MediaLive
|
|
19714
19809
|
:name,
|
19715
19810
|
:node_interface_mappings,
|
19716
19811
|
:role,
|
19717
|
-
:state
|
19812
|
+
:state,
|
19813
|
+
:sdi_source_mappings)
|
19718
19814
|
SENSITIVE = []
|
19719
19815
|
include Aws::Structure
|
19720
19816
|
end
|
@@ -20749,13 +20845,18 @@ module Aws::MediaLive
|
|
20749
20845
|
# and might get used if an ACTIVE Node fails.
|
20750
20846
|
# @return [String]
|
20751
20847
|
#
|
20848
|
+
# @!attribute [rw] sdi_source_mappings
|
20849
|
+
# The mappings of a SDI capture card port to a logical SDI data stream
|
20850
|
+
# @return [Array<Types::SdiSourceMappingUpdateRequest>]
|
20851
|
+
#
|
20752
20852
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateNodeRequest AWS API Documentation
|
20753
20853
|
#
|
20754
20854
|
class UpdateNodeRequest < Struct.new(
|
20755
20855
|
:cluster_id,
|
20756
20856
|
:name,
|
20757
20857
|
:node_id,
|
20758
|
-
:role
|
20858
|
+
:role,
|
20859
|
+
:sdi_source_mappings)
|
20759
20860
|
SENSITIVE = []
|
20760
20861
|
include Aws::Structure
|
20761
20862
|
end
|
@@ -20794,6 +20895,10 @@ module Aws::MediaLive
|
|
20794
20895
|
# Used in DescribeNodeSummary.
|
20795
20896
|
# @return [String]
|
20796
20897
|
#
|
20898
|
+
# @!attribute [rw] sdi_source_mappings
|
20899
|
+
# Used in SdiSourceMappings.
|
20900
|
+
# @return [Array<Types::SdiSourceMapping>]
|
20901
|
+
#
|
20797
20902
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateNodeResponse AWS API Documentation
|
20798
20903
|
#
|
20799
20904
|
class UpdateNodeResponse < Struct.new(
|
@@ -20806,7 +20911,8 @@ module Aws::MediaLive
|
|
20806
20911
|
:name,
|
20807
20912
|
:node_interface_mappings,
|
20808
20913
|
:role,
|
20809
|
-
:state
|
20914
|
+
:state,
|
20915
|
+
:sdi_source_mappings)
|
20810
20916
|
SENSITIVE = []
|
20811
20917
|
include Aws::Structure
|
20812
20918
|
end
|
@@ -20872,6 +20978,10 @@ module Aws::MediaLive
|
|
20872
20978
|
# Used in DescribeNodeSummary.
|
20873
20979
|
# @return [String]
|
20874
20980
|
#
|
20981
|
+
# @!attribute [rw] sdi_source_mappings
|
20982
|
+
# Used in SdiSourceMappings.
|
20983
|
+
# @return [Array<Types::SdiSourceMapping>]
|
20984
|
+
#
|
20875
20985
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateNodeStateResponse AWS API Documentation
|
20876
20986
|
#
|
20877
20987
|
class UpdateNodeStateResponse < Struct.new(
|
@@ -20884,7 +20994,8 @@ module Aws::MediaLive
|
|
20884
20994
|
:name,
|
20885
20995
|
:node_interface_mappings,
|
20886
20996
|
:role,
|
20887
|
-
:state
|
20997
|
+
:state,
|
20998
|
+
:sdi_source_mappings)
|
20888
20999
|
SENSITIVE = []
|
20889
21000
|
include Aws::Structure
|
20890
21001
|
end
|
@@ -21199,6 +21310,375 @@ module Aws::MediaLive
|
|
21199
21310
|
include Aws::Structure
|
21200
21311
|
end
|
21201
21312
|
|
21313
|
+
# Used in the CreateSdiSource operation.
|
21314
|
+
#
|
21315
|
+
# @!attribute [rw] mode
|
21316
|
+
# Applies only if the type is QUAD. Specify the mode for handling the
|
21317
|
+
# quad-link signal: QUADRANT or INTERLEAVE.
|
21318
|
+
# @return [String]
|
21319
|
+
#
|
21320
|
+
# @!attribute [rw] name
|
21321
|
+
# Specify a name that is unique in the AWS account. We recommend you
|
21322
|
+
# assign a name that describes the source, for example
|
21323
|
+
# curling-cameraA. Names are case-sensitive.
|
21324
|
+
# @return [String]
|
21325
|
+
#
|
21326
|
+
# @!attribute [rw] request_id
|
21327
|
+
# An ID that you assign to a create request. This ID ensures idempotency when creating resources.**A suitable default value is auto-generated.** You should normally
|
21328
|
+
# not need to pass this option.
|
21329
|
+
# @return [String]
|
21330
|
+
#
|
21331
|
+
# @!attribute [rw] tags
|
21332
|
+
# A collection of key-value pairs.
|
21333
|
+
# @return [Hash<String,String>]
|
21334
|
+
#
|
21335
|
+
# @!attribute [rw] type
|
21336
|
+
# Specify the type of the SDI source: SINGLE: The source is a
|
21337
|
+
# single-link source. QUAD: The source is one part of a quad-link
|
21338
|
+
# source.
|
21339
|
+
# @return [String]
|
21340
|
+
#
|
21341
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CreateSdiSourceRequest AWS API Documentation
|
21342
|
+
#
|
21343
|
+
class CreateSdiSourceRequest < Struct.new(
|
21344
|
+
:mode,
|
21345
|
+
:name,
|
21346
|
+
:request_id,
|
21347
|
+
:tags,
|
21348
|
+
:type)
|
21349
|
+
SENSITIVE = []
|
21350
|
+
include Aws::Structure
|
21351
|
+
end
|
21352
|
+
|
21353
|
+
# Used in CreateSdiSourceResponse.
|
21354
|
+
#
|
21355
|
+
# @!attribute [rw] sdi_source
|
21356
|
+
# Settings for the SDI source.
|
21357
|
+
# @return [Types::SdiSource]
|
21358
|
+
#
|
21359
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CreateSdiSourceResponse AWS API Documentation
|
21360
|
+
#
|
21361
|
+
class CreateSdiSourceResponse < Struct.new(
|
21362
|
+
:sdi_source)
|
21363
|
+
SENSITIVE = []
|
21364
|
+
include Aws::Structure
|
21365
|
+
end
|
21366
|
+
|
21367
|
+
# @!attribute [rw] sdi_source_id
|
21368
|
+
# @return [String]
|
21369
|
+
#
|
21370
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DeleteSdiSourceRequest AWS API Documentation
|
21371
|
+
#
|
21372
|
+
class DeleteSdiSourceRequest < Struct.new(
|
21373
|
+
:sdi_source_id)
|
21374
|
+
SENSITIVE = []
|
21375
|
+
include Aws::Structure
|
21376
|
+
end
|
21377
|
+
|
21378
|
+
# Used in DeleteSdiSourceResponse.
|
21379
|
+
#
|
21380
|
+
# @!attribute [rw] sdi_source
|
21381
|
+
# Settings for the SDI source.
|
21382
|
+
# @return [Types::SdiSource]
|
21383
|
+
#
|
21384
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DeleteSdiSourceResponse AWS API Documentation
|
21385
|
+
#
|
21386
|
+
class DeleteSdiSourceResponse < Struct.new(
|
21387
|
+
:sdi_source)
|
21388
|
+
SENSITIVE = []
|
21389
|
+
include Aws::Structure
|
21390
|
+
end
|
21391
|
+
|
21392
|
+
# @!attribute [rw] sdi_source_id
|
21393
|
+
# @return [String]
|
21394
|
+
#
|
21395
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DescribeSdiSourceRequest AWS API Documentation
|
21396
|
+
#
|
21397
|
+
class DescribeSdiSourceRequest < Struct.new(
|
21398
|
+
:sdi_source_id)
|
21399
|
+
SENSITIVE = []
|
21400
|
+
include Aws::Structure
|
21401
|
+
end
|
21402
|
+
|
21403
|
+
# Used in DescribeSdiSourceResponse.
|
21404
|
+
#
|
21405
|
+
# @!attribute [rw] sdi_source
|
21406
|
+
# Settings for the SDI source.
|
21407
|
+
# @return [Types::SdiSource]
|
21408
|
+
#
|
21409
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DescribeSdiSourceResponse AWS API Documentation
|
21410
|
+
#
|
21411
|
+
class DescribeSdiSourceResponse < Struct.new(
|
21412
|
+
:sdi_source)
|
21413
|
+
SENSITIVE = []
|
21414
|
+
include Aws::Structure
|
21415
|
+
end
|
21416
|
+
|
21417
|
+
# @!attribute [rw] max_results
|
21418
|
+
# @return [Integer]
|
21419
|
+
#
|
21420
|
+
# @!attribute [rw] next_token
|
21421
|
+
# @return [String]
|
21422
|
+
#
|
21423
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ListSdiSourcesRequest AWS API Documentation
|
21424
|
+
#
|
21425
|
+
class ListSdiSourcesRequest < Struct.new(
|
21426
|
+
:max_results,
|
21427
|
+
:next_token)
|
21428
|
+
SENSITIVE = []
|
21429
|
+
include Aws::Structure
|
21430
|
+
end
|
21431
|
+
|
21432
|
+
# Response for the ListSdiSources operation.
|
21433
|
+
#
|
21434
|
+
# @!attribute [rw] next_token
|
21435
|
+
# @return [String]
|
21436
|
+
#
|
21437
|
+
# @!attribute [rw] sdi_sources
|
21438
|
+
# @return [Array<Types::SdiSourceSummary>]
|
21439
|
+
#
|
21440
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ListSdiSourcesResponse AWS API Documentation
|
21441
|
+
#
|
21442
|
+
class ListSdiSourcesResponse < Struct.new(
|
21443
|
+
:next_token,
|
21444
|
+
:sdi_sources)
|
21445
|
+
SENSITIVE = []
|
21446
|
+
include Aws::Structure
|
21447
|
+
end
|
21448
|
+
|
21449
|
+
# Used in CreateSdiSourceResponse, DeleteSdiSourceResponse,
|
21450
|
+
# DescribeSdiSourceResponse, ListSdiSourcesResponse,
|
21451
|
+
# UpdateSdiSourceResponse
|
21452
|
+
#
|
21453
|
+
# @!attribute [rw] arn
|
21454
|
+
# The ARN of this SdiSource. It is automatically assigned when the
|
21455
|
+
# SdiSource is created.
|
21456
|
+
# @return [String]
|
21457
|
+
#
|
21458
|
+
# @!attribute [rw] id
|
21459
|
+
# The ID of the SdiSource. Unique in the AWS account.The ID is the
|
21460
|
+
# resource-id portion of the ARN.
|
21461
|
+
# @return [String]
|
21462
|
+
#
|
21463
|
+
# @!attribute [rw] inputs
|
21464
|
+
# The list of inputs that are currently using this SDI source. This
|
21465
|
+
# list will be empty if the SdiSource has just been deleted.
|
21466
|
+
# @return [Array<String>]
|
21467
|
+
#
|
21468
|
+
# @!attribute [rw] mode
|
21469
|
+
# Applies only if the type is QUAD. The mode for handling the
|
21470
|
+
# quad-link signal QUADRANT or INTERLEAVE.
|
21471
|
+
# @return [String]
|
21472
|
+
#
|
21473
|
+
# @!attribute [rw] name
|
21474
|
+
# The name of the SdiSource.
|
21475
|
+
# @return [String]
|
21476
|
+
#
|
21477
|
+
# @!attribute [rw] state
|
21478
|
+
# Specifies whether the SDI source is attached to an SDI input
|
21479
|
+
# (IN\_USE) or not (IDLE).
|
21480
|
+
# @return [String]
|
21481
|
+
#
|
21482
|
+
# @!attribute [rw] type
|
21483
|
+
# Used in SdiSource, CreateSdiSourceRequest, UpdateSdiSourceRequest.
|
21484
|
+
# @return [String]
|
21485
|
+
#
|
21486
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/SdiSource AWS API Documentation
|
21487
|
+
#
|
21488
|
+
class SdiSource < Struct.new(
|
21489
|
+
:arn,
|
21490
|
+
:id,
|
21491
|
+
:inputs,
|
21492
|
+
:mode,
|
21493
|
+
:name,
|
21494
|
+
:state,
|
21495
|
+
:type)
|
21496
|
+
SENSITIVE = []
|
21497
|
+
include Aws::Structure
|
21498
|
+
end
|
21499
|
+
|
21500
|
+
# Used in DescribeNodeSummary, DescribeNodeResult.
|
21501
|
+
#
|
21502
|
+
# @!attribute [rw] card_number
|
21503
|
+
# A number that uniquely identifies the SDI card on the node hardware.
|
21504
|
+
# @return [Integer]
|
21505
|
+
#
|
21506
|
+
# @!attribute [rw] channel_number
|
21507
|
+
# A number that uniquely identifies a port on the SDI card.
|
21508
|
+
# @return [Integer]
|
21509
|
+
#
|
21510
|
+
# @!attribute [rw] sdi_source
|
21511
|
+
# The ID of the SdiSource to associate with this port on this card.
|
21512
|
+
# You can use the ListSdiSources operation to discover all the IDs.
|
21513
|
+
# @return [String]
|
21514
|
+
#
|
21515
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/SdiSourceMapping AWS API Documentation
|
21516
|
+
#
|
21517
|
+
class SdiSourceMapping < Struct.new(
|
21518
|
+
:card_number,
|
21519
|
+
:channel_number,
|
21520
|
+
:sdi_source)
|
21521
|
+
SENSITIVE = []
|
21522
|
+
include Aws::Structure
|
21523
|
+
end
|
21524
|
+
|
21525
|
+
# Used in SdiSourceMappingsUpdateRequest. One SDI source mapping. It
|
21526
|
+
# connects one logical SdiSource to the physical SDI card and port that
|
21527
|
+
# the physical SDI source uses. You must specify all three parameters in
|
21528
|
+
# this object.
|
21529
|
+
#
|
21530
|
+
# @!attribute [rw] card_number
|
21531
|
+
# A number that uniquely identifies the SDI card on the node hardware.
|
21532
|
+
# For information about how physical cards are identified on your node
|
21533
|
+
# hardware, see the documentation for your node hardware. The
|
21534
|
+
# numbering always starts at 1.
|
21535
|
+
# @return [Integer]
|
21536
|
+
#
|
21537
|
+
# @!attribute [rw] channel_number
|
21538
|
+
# A number that uniquely identifies a port on the card. This must be
|
21539
|
+
# an SDI port (not a timecode port, for example). For information
|
21540
|
+
# about how ports are identified on physical cards, see the
|
21541
|
+
# documentation for your node hardware.
|
21542
|
+
# @return [Integer]
|
21543
|
+
#
|
21544
|
+
# @!attribute [rw] sdi_source
|
21545
|
+
# The ID of a SDI source streaming on the given SDI capture card port.
|
21546
|
+
# @return [String]
|
21547
|
+
#
|
21548
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/SdiSourceMappingUpdateRequest AWS API Documentation
|
21549
|
+
#
|
21550
|
+
class SdiSourceMappingUpdateRequest < Struct.new(
|
21551
|
+
:card_number,
|
21552
|
+
:channel_number,
|
21553
|
+
:sdi_source)
|
21554
|
+
SENSITIVE = []
|
21555
|
+
include Aws::Structure
|
21556
|
+
end
|
21557
|
+
|
21558
|
+
# Used in CreateSdiSourceResponse, DeleteSdiSourceResponse,
|
21559
|
+
# DescribeSdiSourceResponse, ListSdiSourcesResponse,
|
21560
|
+
# UpdateSdiSourceResponse
|
21561
|
+
#
|
21562
|
+
# @!attribute [rw] arn
|
21563
|
+
# The ARN of this SdiSource. It is automatically assigned when the
|
21564
|
+
# SdiSource is created.
|
21565
|
+
# @return [String]
|
21566
|
+
#
|
21567
|
+
# @!attribute [rw] id
|
21568
|
+
# The ID of the SdiSource. Unique in the AWS account.The ID is the
|
21569
|
+
# resource-id portion of the ARN.
|
21570
|
+
# @return [String]
|
21571
|
+
#
|
21572
|
+
# @!attribute [rw] inputs
|
21573
|
+
# The list of inputs that are currently using this SDI source. This
|
21574
|
+
# list will be empty if the SdiSource has just been deleted.
|
21575
|
+
# @return [Array<String>]
|
21576
|
+
#
|
21577
|
+
# @!attribute [rw] mode
|
21578
|
+
# Applies only if the type is QUAD. The mode for handling the
|
21579
|
+
# quad-link signal QUADRANT or INTERLEAVE.
|
21580
|
+
# @return [String]
|
21581
|
+
#
|
21582
|
+
# @!attribute [rw] name
|
21583
|
+
# The name of the SdiSource.
|
21584
|
+
# @return [String]
|
21585
|
+
#
|
21586
|
+
# @!attribute [rw] state
|
21587
|
+
# Specifies whether the SDI source is attached to an SDI input
|
21588
|
+
# (IN\_USE) or not (IDLE).
|
21589
|
+
# @return [String]
|
21590
|
+
#
|
21591
|
+
# @!attribute [rw] type
|
21592
|
+
# Used in SdiSource, CreateSdiSourceRequest, UpdateSdiSourceRequest.
|
21593
|
+
# @return [String]
|
21594
|
+
#
|
21595
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/SdiSourceSummary AWS API Documentation
|
21596
|
+
#
|
21597
|
+
class SdiSourceSummary < Struct.new(
|
21598
|
+
:arn,
|
21599
|
+
:id,
|
21600
|
+
:inputs,
|
21601
|
+
:mode,
|
21602
|
+
:name,
|
21603
|
+
:state,
|
21604
|
+
:type)
|
21605
|
+
SENSITIVE = []
|
21606
|
+
include Aws::Structure
|
21607
|
+
end
|
21608
|
+
|
21609
|
+
# Used in UpdateSdiSourceRequest.
|
21610
|
+
#
|
21611
|
+
# @!attribute [rw] mode
|
21612
|
+
# Include this parameter only if you want to change the name of the
|
21613
|
+
# SdiSource. Specify a name that is unique in the AWS account. We
|
21614
|
+
# recommend you assign a name that describes the source, for example
|
21615
|
+
# curling-cameraA. Names are case-sensitive.
|
21616
|
+
# @return [String]
|
21617
|
+
#
|
21618
|
+
# @!attribute [rw] name
|
21619
|
+
# Include this parameter only if you want to change the name of the
|
21620
|
+
# SdiSource. Specify a name that is unique in the AWS account. We
|
21621
|
+
# recommend you assign a name that describes the source, for example
|
21622
|
+
# curling-cameraA. Names are case-sensitive.
|
21623
|
+
# @return [String]
|
21624
|
+
#
|
21625
|
+
# @!attribute [rw] sdi_source_id
|
21626
|
+
# @return [String]
|
21627
|
+
#
|
21628
|
+
# @!attribute [rw] type
|
21629
|
+
# Include this parameter only if you want to change the mode. Specify
|
21630
|
+
# the type of the SDI source: SINGLE: The source is a single-link
|
21631
|
+
# source. QUAD: The source is one part of a quad-link source.
|
21632
|
+
# @return [String]
|
21633
|
+
#
|
21634
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateSdiSourceRequest AWS API Documentation
|
21635
|
+
#
|
21636
|
+
class UpdateSdiSourceRequest < Struct.new(
|
21637
|
+
:mode,
|
21638
|
+
:name,
|
21639
|
+
:sdi_source_id,
|
21640
|
+
:type)
|
21641
|
+
SENSITIVE = []
|
21642
|
+
include Aws::Structure
|
21643
|
+
end
|
21644
|
+
|
21645
|
+
# Used in UpdateSdiSourceResponse.
|
21646
|
+
#
|
21647
|
+
# @!attribute [rw] sdi_source
|
21648
|
+
# Settings for the SDI source.
|
21649
|
+
# @return [Types::SdiSource]
|
21650
|
+
#
|
21651
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateSdiSourceResponse AWS API Documentation
|
21652
|
+
#
|
21653
|
+
class UpdateSdiSourceResponse < Struct.new(
|
21654
|
+
:sdi_source)
|
21655
|
+
SENSITIVE = []
|
21656
|
+
include Aws::Structure
|
21657
|
+
end
|
21658
|
+
|
21659
|
+
# Add an array item for each language. Follow the order of the caption
|
21660
|
+
# descriptions. For example, if the first caption description is for
|
21661
|
+
# German, then the first array item must be for German, and its caption
|
21662
|
+
# channel must be set to 1. The second array item must be 2, and so on.
|
21663
|
+
#
|
21664
|
+
# @!attribute [rw] caption_channel
|
21665
|
+
# A number for the channel for this caption, 1 to 4.
|
21666
|
+
# @return [Integer]
|
21667
|
+
#
|
21668
|
+
# @!attribute [rw] language_code
|
21669
|
+
# Language code for the language of the caption in this channel. For
|
21670
|
+
# example, ger/deu. See http://www.loc.gov/standards/iso639-2
|
21671
|
+
# @return [String]
|
21672
|
+
#
|
21673
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CmafIngestCaptionLanguageMapping AWS API Documentation
|
21674
|
+
#
|
21675
|
+
class CmafIngestCaptionLanguageMapping < Struct.new(
|
21676
|
+
:caption_channel,
|
21677
|
+
:language_code)
|
21678
|
+
SENSITIVE = []
|
21679
|
+
include Aws::Structure
|
21680
|
+
end
|
21681
|
+
|
21202
21682
|
end
|
21203
21683
|
end
|
21204
21684
|
|