aws-sdk-medialive 1.149.0 → 1.150.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-medialive/client.rb +293 -7
- data/lib/aws-sdk-medialive/client_api.rb +191 -0
- data/lib/aws-sdk-medialive/types.rb +434 -14
- data/lib/aws-sdk-medialive.rb +1 -1
- data/sig/client.rbs +79 -5
- data/sig/types.rbs +113 -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
|
@@ -12898,6 +12918,10 @@ module Aws::MediaLive
|
|
12898
12918
|
# identify the stream sources for this input.
|
12899
12919
|
# @return [Types::Smpte2110ReceiverGroupSettings]
|
12900
12920
|
#
|
12921
|
+
# @!attribute [rw] sdi_sources
|
12922
|
+
# SDI Sources for this Input.
|
12923
|
+
# @return [Array<String>]
|
12924
|
+
#
|
12901
12925
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateInput AWS API Documentation
|
12902
12926
|
#
|
12903
12927
|
class UpdateInput < Struct.new(
|
@@ -12910,7 +12934,8 @@ module Aws::MediaLive
|
|
12910
12934
|
:sources,
|
12911
12935
|
:srt_settings,
|
12912
12936
|
:multicast_settings,
|
12913
|
-
:smpte_2110_receiver_group_settings
|
12937
|
+
:smpte_2110_receiver_group_settings,
|
12938
|
+
:sdi_sources)
|
12914
12939
|
SENSITIVE = []
|
12915
12940
|
include Aws::Structure
|
12916
12941
|
end
|
@@ -13099,6 +13124,10 @@ module Aws::MediaLive
|
|
13099
13124
|
# Configures the sources for the SMPTE 2110 Receiver Group input.
|
13100
13125
|
# @return [Types::Smpte2110ReceiverGroupSettings]
|
13101
13126
|
#
|
13127
|
+
# @!attribute [rw] sdi_sources
|
13128
|
+
# SDI Sources for this Input.
|
13129
|
+
# @return [Array<String>]
|
13130
|
+
#
|
13102
13131
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateInputRequest AWS API Documentation
|
13103
13132
|
#
|
13104
13133
|
class UpdateInputRequest < Struct.new(
|
@@ -13112,7 +13141,8 @@ module Aws::MediaLive
|
|
13112
13141
|
:sources,
|
13113
13142
|
:srt_settings,
|
13114
13143
|
:multicast_settings,
|
13115
|
-
:smpte_2110_receiver_group_settings
|
13144
|
+
:smpte_2110_receiver_group_settings,
|
13145
|
+
:sdi_sources)
|
13116
13146
|
SENSITIVE = []
|
13117
13147
|
include Aws::Structure
|
13118
13148
|
end
|
@@ -18784,6 +18814,10 @@ module Aws::MediaLive
|
|
18784
18814
|
# Used in DescribeNodeSummary.
|
18785
18815
|
# @return [String]
|
18786
18816
|
#
|
18817
|
+
# @!attribute [rw] sdi_source_mappings
|
18818
|
+
# Used in SdiSourceMappings.
|
18819
|
+
# @return [Array<Types::SdiSourceMapping>]
|
18820
|
+
#
|
18787
18821
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CreateNodeResponse AWS API Documentation
|
18788
18822
|
#
|
18789
18823
|
class CreateNodeResponse < Struct.new(
|
@@ -18796,7 +18830,8 @@ module Aws::MediaLive
|
|
18796
18830
|
:name,
|
18797
18831
|
:node_interface_mappings,
|
18798
18832
|
:role,
|
18799
|
-
:state
|
18833
|
+
:state,
|
18834
|
+
:sdi_source_mappings)
|
18800
18835
|
SENSITIVE = []
|
18801
18836
|
include Aws::Structure
|
18802
18837
|
end
|
@@ -19005,6 +19040,10 @@ module Aws::MediaLive
|
|
19005
19040
|
# Used in DescribeNodeSummary.
|
19006
19041
|
# @return [String]
|
19007
19042
|
#
|
19043
|
+
# @!attribute [rw] sdi_source_mappings
|
19044
|
+
# Used in SdiSourceMappings.
|
19045
|
+
# @return [Array<Types::SdiSourceMapping>]
|
19046
|
+
#
|
19008
19047
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DeleteNodeResponse AWS API Documentation
|
19009
19048
|
#
|
19010
19049
|
class DeleteNodeResponse < Struct.new(
|
@@ -19017,7 +19056,8 @@ module Aws::MediaLive
|
|
19017
19056
|
:name,
|
19018
19057
|
:node_interface_mappings,
|
19019
19058
|
:role,
|
19020
|
-
:state
|
19059
|
+
:state,
|
19060
|
+
:sdi_source_mappings)
|
19021
19061
|
SENSITIVE = []
|
19022
19062
|
include Aws::Structure
|
19023
19063
|
end
|
@@ -19557,6 +19597,10 @@ module Aws::MediaLive
|
|
19557
19597
|
# Used in DescribeNodeSummary.
|
19558
19598
|
# @return [String]
|
19559
19599
|
#
|
19600
|
+
# @!attribute [rw] sdi_source_mappings
|
19601
|
+
# Used in SdiSourceMappings.
|
19602
|
+
# @return [Array<Types::SdiSourceMapping>]
|
19603
|
+
#
|
19560
19604
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DescribeNodeResponse AWS API Documentation
|
19561
19605
|
#
|
19562
19606
|
class DescribeNodeResponse < Struct.new(
|
@@ -19569,7 +19613,8 @@ module Aws::MediaLive
|
|
19569
19613
|
:name,
|
19570
19614
|
:node_interface_mappings,
|
19571
19615
|
:role,
|
19572
|
-
:state
|
19616
|
+
:state,
|
19617
|
+
:sdi_source_mappings)
|
19573
19618
|
SENSITIVE = []
|
19574
19619
|
include Aws::Structure
|
19575
19620
|
end
|
@@ -19628,6 +19673,12 @@ module Aws::MediaLive
|
|
19628
19673
|
# The current state of the Node.
|
19629
19674
|
# @return [String]
|
19630
19675
|
#
|
19676
|
+
# @!attribute [rw] sdi_source_mappings
|
19677
|
+
# An array of SDI source mappings. Each mapping connects one logical
|
19678
|
+
# SdiSource to the physical SDI card and port that the physical SDI
|
19679
|
+
# source uses.
|
19680
|
+
# @return [Array<Types::SdiSourceMapping>]
|
19681
|
+
#
|
19631
19682
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DescribeNodeResult AWS API Documentation
|
19632
19683
|
#
|
19633
19684
|
class DescribeNodeResult < Struct.new(
|
@@ -19640,7 +19691,8 @@ module Aws::MediaLive
|
|
19640
19691
|
:name,
|
19641
19692
|
:node_interface_mappings,
|
19642
19693
|
:role,
|
19643
|
-
:state
|
19694
|
+
:state,
|
19695
|
+
:sdi_source_mappings)
|
19644
19696
|
SENSITIVE = []
|
19645
19697
|
include Aws::Structure
|
19646
19698
|
end
|
@@ -19701,6 +19753,12 @@ module Aws::MediaLive
|
|
19701
19753
|
# The current state of the Node.
|
19702
19754
|
# @return [String]
|
19703
19755
|
#
|
19756
|
+
# @!attribute [rw] sdi_source_mappings
|
19757
|
+
# An array of SDI source mappings. Each mapping connects one logical
|
19758
|
+
# SdiSource to the physical SDI card and port that the physical SDI
|
19759
|
+
# source uses.
|
19760
|
+
# @return [Array<Types::SdiSourceMapping>]
|
19761
|
+
#
|
19704
19762
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DescribeNodeSummary AWS API Documentation
|
19705
19763
|
#
|
19706
19764
|
class DescribeNodeSummary < Struct.new(
|
@@ -19714,7 +19772,8 @@ module Aws::MediaLive
|
|
19714
19772
|
:name,
|
19715
19773
|
:node_interface_mappings,
|
19716
19774
|
:role,
|
19717
|
-
:state
|
19775
|
+
:state,
|
19776
|
+
:sdi_source_mappings)
|
19718
19777
|
SENSITIVE = []
|
19719
19778
|
include Aws::Structure
|
19720
19779
|
end
|
@@ -20749,13 +20808,18 @@ module Aws::MediaLive
|
|
20749
20808
|
# and might get used if an ACTIVE Node fails.
|
20750
20809
|
# @return [String]
|
20751
20810
|
#
|
20811
|
+
# @!attribute [rw] sdi_source_mappings
|
20812
|
+
# The mappings of a SDI capture card port to a logical SDI data stream
|
20813
|
+
# @return [Array<Types::SdiSourceMappingUpdateRequest>]
|
20814
|
+
#
|
20752
20815
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateNodeRequest AWS API Documentation
|
20753
20816
|
#
|
20754
20817
|
class UpdateNodeRequest < Struct.new(
|
20755
20818
|
:cluster_id,
|
20756
20819
|
:name,
|
20757
20820
|
:node_id,
|
20758
|
-
:role
|
20821
|
+
:role,
|
20822
|
+
:sdi_source_mappings)
|
20759
20823
|
SENSITIVE = []
|
20760
20824
|
include Aws::Structure
|
20761
20825
|
end
|
@@ -20794,6 +20858,10 @@ module Aws::MediaLive
|
|
20794
20858
|
# Used in DescribeNodeSummary.
|
20795
20859
|
# @return [String]
|
20796
20860
|
#
|
20861
|
+
# @!attribute [rw] sdi_source_mappings
|
20862
|
+
# Used in SdiSourceMappings.
|
20863
|
+
# @return [Array<Types::SdiSourceMapping>]
|
20864
|
+
#
|
20797
20865
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateNodeResponse AWS API Documentation
|
20798
20866
|
#
|
20799
20867
|
class UpdateNodeResponse < Struct.new(
|
@@ -20806,7 +20874,8 @@ module Aws::MediaLive
|
|
20806
20874
|
:name,
|
20807
20875
|
:node_interface_mappings,
|
20808
20876
|
:role,
|
20809
|
-
:state
|
20877
|
+
:state,
|
20878
|
+
:sdi_source_mappings)
|
20810
20879
|
SENSITIVE = []
|
20811
20880
|
include Aws::Structure
|
20812
20881
|
end
|
@@ -20872,6 +20941,10 @@ module Aws::MediaLive
|
|
20872
20941
|
# Used in DescribeNodeSummary.
|
20873
20942
|
# @return [String]
|
20874
20943
|
#
|
20944
|
+
# @!attribute [rw] sdi_source_mappings
|
20945
|
+
# Used in SdiSourceMappings.
|
20946
|
+
# @return [Array<Types::SdiSourceMapping>]
|
20947
|
+
#
|
20875
20948
|
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateNodeStateResponse AWS API Documentation
|
20876
20949
|
#
|
20877
20950
|
class UpdateNodeStateResponse < Struct.new(
|
@@ -20884,7 +20957,8 @@ module Aws::MediaLive
|
|
20884
20957
|
:name,
|
20885
20958
|
:node_interface_mappings,
|
20886
20959
|
:role,
|
20887
|
-
:state
|
20960
|
+
:state,
|
20961
|
+
:sdi_source_mappings)
|
20888
20962
|
SENSITIVE = []
|
20889
20963
|
include Aws::Structure
|
20890
20964
|
end
|
@@ -21199,6 +21273,352 @@ module Aws::MediaLive
|
|
21199
21273
|
include Aws::Structure
|
21200
21274
|
end
|
21201
21275
|
|
21276
|
+
# Used in the CreateSdiSource operation.
|
21277
|
+
#
|
21278
|
+
# @!attribute [rw] mode
|
21279
|
+
# Applies only if the type is QUAD. Specify the mode for handling the
|
21280
|
+
# quad-link signal: QUADRANT or INTERLEAVE.
|
21281
|
+
# @return [String]
|
21282
|
+
#
|
21283
|
+
# @!attribute [rw] name
|
21284
|
+
# Specify a name that is unique in the AWS account. We recommend you
|
21285
|
+
# assign a name that describes the source, for example
|
21286
|
+
# curling-cameraA. Names are case-sensitive.
|
21287
|
+
# @return [String]
|
21288
|
+
#
|
21289
|
+
# @!attribute [rw] request_id
|
21290
|
+
# 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
|
21291
|
+
# not need to pass this option.
|
21292
|
+
# @return [String]
|
21293
|
+
#
|
21294
|
+
# @!attribute [rw] tags
|
21295
|
+
# A collection of key-value pairs.
|
21296
|
+
# @return [Hash<String,String>]
|
21297
|
+
#
|
21298
|
+
# @!attribute [rw] type
|
21299
|
+
# Specify the type of the SDI source: SINGLE: The source is a
|
21300
|
+
# single-link source. QUAD: The source is one part of a quad-link
|
21301
|
+
# source.
|
21302
|
+
# @return [String]
|
21303
|
+
#
|
21304
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CreateSdiSourceRequest AWS API Documentation
|
21305
|
+
#
|
21306
|
+
class CreateSdiSourceRequest < Struct.new(
|
21307
|
+
:mode,
|
21308
|
+
:name,
|
21309
|
+
:request_id,
|
21310
|
+
:tags,
|
21311
|
+
:type)
|
21312
|
+
SENSITIVE = []
|
21313
|
+
include Aws::Structure
|
21314
|
+
end
|
21315
|
+
|
21316
|
+
# Used in CreateSdiSourceResponse.
|
21317
|
+
#
|
21318
|
+
# @!attribute [rw] sdi_source
|
21319
|
+
# Settings for the SDI source.
|
21320
|
+
# @return [Types::SdiSource]
|
21321
|
+
#
|
21322
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CreateSdiSourceResponse AWS API Documentation
|
21323
|
+
#
|
21324
|
+
class CreateSdiSourceResponse < Struct.new(
|
21325
|
+
:sdi_source)
|
21326
|
+
SENSITIVE = []
|
21327
|
+
include Aws::Structure
|
21328
|
+
end
|
21329
|
+
|
21330
|
+
# @!attribute [rw] sdi_source_id
|
21331
|
+
# @return [String]
|
21332
|
+
#
|
21333
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DeleteSdiSourceRequest AWS API Documentation
|
21334
|
+
#
|
21335
|
+
class DeleteSdiSourceRequest < Struct.new(
|
21336
|
+
:sdi_source_id)
|
21337
|
+
SENSITIVE = []
|
21338
|
+
include Aws::Structure
|
21339
|
+
end
|
21340
|
+
|
21341
|
+
# Used in DeleteSdiSourceResponse.
|
21342
|
+
#
|
21343
|
+
# @!attribute [rw] sdi_source
|
21344
|
+
# Settings for the SDI source.
|
21345
|
+
# @return [Types::SdiSource]
|
21346
|
+
#
|
21347
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DeleteSdiSourceResponse AWS API Documentation
|
21348
|
+
#
|
21349
|
+
class DeleteSdiSourceResponse < Struct.new(
|
21350
|
+
:sdi_source)
|
21351
|
+
SENSITIVE = []
|
21352
|
+
include Aws::Structure
|
21353
|
+
end
|
21354
|
+
|
21355
|
+
# @!attribute [rw] sdi_source_id
|
21356
|
+
# @return [String]
|
21357
|
+
#
|
21358
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DescribeSdiSourceRequest AWS API Documentation
|
21359
|
+
#
|
21360
|
+
class DescribeSdiSourceRequest < Struct.new(
|
21361
|
+
:sdi_source_id)
|
21362
|
+
SENSITIVE = []
|
21363
|
+
include Aws::Structure
|
21364
|
+
end
|
21365
|
+
|
21366
|
+
# Used in DescribeSdiSourceResponse.
|
21367
|
+
#
|
21368
|
+
# @!attribute [rw] sdi_source
|
21369
|
+
# Settings for the SDI source.
|
21370
|
+
# @return [Types::SdiSource]
|
21371
|
+
#
|
21372
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DescribeSdiSourceResponse AWS API Documentation
|
21373
|
+
#
|
21374
|
+
class DescribeSdiSourceResponse < Struct.new(
|
21375
|
+
:sdi_source)
|
21376
|
+
SENSITIVE = []
|
21377
|
+
include Aws::Structure
|
21378
|
+
end
|
21379
|
+
|
21380
|
+
# @!attribute [rw] max_results
|
21381
|
+
# @return [Integer]
|
21382
|
+
#
|
21383
|
+
# @!attribute [rw] next_token
|
21384
|
+
# @return [String]
|
21385
|
+
#
|
21386
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ListSdiSourcesRequest AWS API Documentation
|
21387
|
+
#
|
21388
|
+
class ListSdiSourcesRequest < Struct.new(
|
21389
|
+
:max_results,
|
21390
|
+
:next_token)
|
21391
|
+
SENSITIVE = []
|
21392
|
+
include Aws::Structure
|
21393
|
+
end
|
21394
|
+
|
21395
|
+
# Response for the ListSdiSources operation.
|
21396
|
+
#
|
21397
|
+
# @!attribute [rw] next_token
|
21398
|
+
# @return [String]
|
21399
|
+
#
|
21400
|
+
# @!attribute [rw] sdi_sources
|
21401
|
+
# @return [Array<Types::SdiSourceSummary>]
|
21402
|
+
#
|
21403
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ListSdiSourcesResponse AWS API Documentation
|
21404
|
+
#
|
21405
|
+
class ListSdiSourcesResponse < Struct.new(
|
21406
|
+
:next_token,
|
21407
|
+
:sdi_sources)
|
21408
|
+
SENSITIVE = []
|
21409
|
+
include Aws::Structure
|
21410
|
+
end
|
21411
|
+
|
21412
|
+
# Used in CreateSdiSourceResponse, DeleteSdiSourceResponse,
|
21413
|
+
# DescribeSdiSourceResponse, ListSdiSourcesResponse,
|
21414
|
+
# UpdateSdiSourceResponse
|
21415
|
+
#
|
21416
|
+
# @!attribute [rw] arn
|
21417
|
+
# The ARN of this SdiSource. It is automatically assigned when the
|
21418
|
+
# SdiSource is created.
|
21419
|
+
# @return [String]
|
21420
|
+
#
|
21421
|
+
# @!attribute [rw] id
|
21422
|
+
# The ID of the SdiSource. Unique in the AWS account.The ID is the
|
21423
|
+
# resource-id portion of the ARN.
|
21424
|
+
# @return [String]
|
21425
|
+
#
|
21426
|
+
# @!attribute [rw] inputs
|
21427
|
+
# The list of inputs that are currently using this SDI source. This
|
21428
|
+
# list will be empty if the SdiSource has just been deleted.
|
21429
|
+
# @return [Array<String>]
|
21430
|
+
#
|
21431
|
+
# @!attribute [rw] mode
|
21432
|
+
# Applies only if the type is QUAD. The mode for handling the
|
21433
|
+
# quad-link signal QUADRANT or INTERLEAVE.
|
21434
|
+
# @return [String]
|
21435
|
+
#
|
21436
|
+
# @!attribute [rw] name
|
21437
|
+
# The name of the SdiSource.
|
21438
|
+
# @return [String]
|
21439
|
+
#
|
21440
|
+
# @!attribute [rw] state
|
21441
|
+
# Specifies whether the SDI source is attached to an SDI input
|
21442
|
+
# (IN\_USE) or not (IDLE).
|
21443
|
+
# @return [String]
|
21444
|
+
#
|
21445
|
+
# @!attribute [rw] type
|
21446
|
+
# Used in SdiSource, CreateSdiSourceRequest, UpdateSdiSourceRequest.
|
21447
|
+
# @return [String]
|
21448
|
+
#
|
21449
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/SdiSource AWS API Documentation
|
21450
|
+
#
|
21451
|
+
class SdiSource < Struct.new(
|
21452
|
+
:arn,
|
21453
|
+
:id,
|
21454
|
+
:inputs,
|
21455
|
+
:mode,
|
21456
|
+
:name,
|
21457
|
+
:state,
|
21458
|
+
:type)
|
21459
|
+
SENSITIVE = []
|
21460
|
+
include Aws::Structure
|
21461
|
+
end
|
21462
|
+
|
21463
|
+
# Used in DescribeNodeSummary, DescribeNodeResult.
|
21464
|
+
#
|
21465
|
+
# @!attribute [rw] card_number
|
21466
|
+
# A number that uniquely identifies the SDI card on the node hardware.
|
21467
|
+
# @return [Integer]
|
21468
|
+
#
|
21469
|
+
# @!attribute [rw] channel_number
|
21470
|
+
# A number that uniquely identifies a port on the SDI card.
|
21471
|
+
# @return [Integer]
|
21472
|
+
#
|
21473
|
+
# @!attribute [rw] sdi_source
|
21474
|
+
# The ID of the SdiSource to associate with this port on this card.
|
21475
|
+
# You can use the ListSdiSources operation to discover all the IDs.
|
21476
|
+
# @return [String]
|
21477
|
+
#
|
21478
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/SdiSourceMapping AWS API Documentation
|
21479
|
+
#
|
21480
|
+
class SdiSourceMapping < Struct.new(
|
21481
|
+
:card_number,
|
21482
|
+
:channel_number,
|
21483
|
+
:sdi_source)
|
21484
|
+
SENSITIVE = []
|
21485
|
+
include Aws::Structure
|
21486
|
+
end
|
21487
|
+
|
21488
|
+
# Used in SdiSourceMappingsUpdateRequest. One SDI source mapping. It
|
21489
|
+
# connects one logical SdiSource to the physical SDI card and port that
|
21490
|
+
# the physical SDI source uses. You must specify all three parameters in
|
21491
|
+
# this object.
|
21492
|
+
#
|
21493
|
+
# @!attribute [rw] card_number
|
21494
|
+
# A number that uniquely identifies the SDI card on the node hardware.
|
21495
|
+
# For information about how physical cards are identified on your node
|
21496
|
+
# hardware, see the documentation for your node hardware. The
|
21497
|
+
# numbering always starts at 1.
|
21498
|
+
# @return [Integer]
|
21499
|
+
#
|
21500
|
+
# @!attribute [rw] channel_number
|
21501
|
+
# A number that uniquely identifies a port on the card. This must be
|
21502
|
+
# an SDI port (not a timecode port, for example). For information
|
21503
|
+
# about how ports are identified on physical cards, see the
|
21504
|
+
# documentation for your node hardware.
|
21505
|
+
# @return [Integer]
|
21506
|
+
#
|
21507
|
+
# @!attribute [rw] sdi_source
|
21508
|
+
# The ID of a SDI source streaming on the given SDI capture card port.
|
21509
|
+
# @return [String]
|
21510
|
+
#
|
21511
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/SdiSourceMappingUpdateRequest AWS API Documentation
|
21512
|
+
#
|
21513
|
+
class SdiSourceMappingUpdateRequest < Struct.new(
|
21514
|
+
:card_number,
|
21515
|
+
:channel_number,
|
21516
|
+
:sdi_source)
|
21517
|
+
SENSITIVE = []
|
21518
|
+
include Aws::Structure
|
21519
|
+
end
|
21520
|
+
|
21521
|
+
# Used in CreateSdiSourceResponse, DeleteSdiSourceResponse,
|
21522
|
+
# DescribeSdiSourceResponse, ListSdiSourcesResponse,
|
21523
|
+
# UpdateSdiSourceResponse
|
21524
|
+
#
|
21525
|
+
# @!attribute [rw] arn
|
21526
|
+
# The ARN of this SdiSource. It is automatically assigned when the
|
21527
|
+
# SdiSource is created.
|
21528
|
+
# @return [String]
|
21529
|
+
#
|
21530
|
+
# @!attribute [rw] id
|
21531
|
+
# The ID of the SdiSource. Unique in the AWS account.The ID is the
|
21532
|
+
# resource-id portion of the ARN.
|
21533
|
+
# @return [String]
|
21534
|
+
#
|
21535
|
+
# @!attribute [rw] inputs
|
21536
|
+
# The list of inputs that are currently using this SDI source. This
|
21537
|
+
# list will be empty if the SdiSource has just been deleted.
|
21538
|
+
# @return [Array<String>]
|
21539
|
+
#
|
21540
|
+
# @!attribute [rw] mode
|
21541
|
+
# Applies only if the type is QUAD. The mode for handling the
|
21542
|
+
# quad-link signal QUADRANT or INTERLEAVE.
|
21543
|
+
# @return [String]
|
21544
|
+
#
|
21545
|
+
# @!attribute [rw] name
|
21546
|
+
# The name of the SdiSource.
|
21547
|
+
# @return [String]
|
21548
|
+
#
|
21549
|
+
# @!attribute [rw] state
|
21550
|
+
# Specifies whether the SDI source is attached to an SDI input
|
21551
|
+
# (IN\_USE) or not (IDLE).
|
21552
|
+
# @return [String]
|
21553
|
+
#
|
21554
|
+
# @!attribute [rw] type
|
21555
|
+
# Used in SdiSource, CreateSdiSourceRequest, UpdateSdiSourceRequest.
|
21556
|
+
# @return [String]
|
21557
|
+
#
|
21558
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/SdiSourceSummary AWS API Documentation
|
21559
|
+
#
|
21560
|
+
class SdiSourceSummary < Struct.new(
|
21561
|
+
:arn,
|
21562
|
+
:id,
|
21563
|
+
:inputs,
|
21564
|
+
:mode,
|
21565
|
+
:name,
|
21566
|
+
:state,
|
21567
|
+
:type)
|
21568
|
+
SENSITIVE = []
|
21569
|
+
include Aws::Structure
|
21570
|
+
end
|
21571
|
+
|
21572
|
+
# Used in UpdateSdiSourceRequest.
|
21573
|
+
#
|
21574
|
+
# @!attribute [rw] mode
|
21575
|
+
# Include this parameter only if you want to change the name of the
|
21576
|
+
# SdiSource. Specify a name that is unique in the AWS account. We
|
21577
|
+
# recommend you assign a name that describes the source, for example
|
21578
|
+
# curling-cameraA. Names are case-sensitive.
|
21579
|
+
# @return [String]
|
21580
|
+
#
|
21581
|
+
# @!attribute [rw] name
|
21582
|
+
# Include this parameter only if you want to change the name of the
|
21583
|
+
# SdiSource. Specify a name that is unique in the AWS account. We
|
21584
|
+
# recommend you assign a name that describes the source, for example
|
21585
|
+
# curling-cameraA. Names are case-sensitive.
|
21586
|
+
# @return [String]
|
21587
|
+
#
|
21588
|
+
# @!attribute [rw] sdi_source_id
|
21589
|
+
# @return [String]
|
21590
|
+
#
|
21591
|
+
# @!attribute [rw] type
|
21592
|
+
# Include this parameter only if you want to change the mode. Specify
|
21593
|
+
# the type of the SDI source: SINGLE: The source is a single-link
|
21594
|
+
# source. QUAD: The source is one part of a quad-link source.
|
21595
|
+
# @return [String]
|
21596
|
+
#
|
21597
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateSdiSourceRequest AWS API Documentation
|
21598
|
+
#
|
21599
|
+
class UpdateSdiSourceRequest < Struct.new(
|
21600
|
+
:mode,
|
21601
|
+
:name,
|
21602
|
+
:sdi_source_id,
|
21603
|
+
:type)
|
21604
|
+
SENSITIVE = []
|
21605
|
+
include Aws::Structure
|
21606
|
+
end
|
21607
|
+
|
21608
|
+
# Used in UpdateSdiSourceResponse.
|
21609
|
+
#
|
21610
|
+
# @!attribute [rw] sdi_source
|
21611
|
+
# Settings for the SDI source.
|
21612
|
+
# @return [Types::SdiSource]
|
21613
|
+
#
|
21614
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateSdiSourceResponse AWS API Documentation
|
21615
|
+
#
|
21616
|
+
class UpdateSdiSourceResponse < Struct.new(
|
21617
|
+
:sdi_source)
|
21618
|
+
SENSITIVE = []
|
21619
|
+
include Aws::Structure
|
21620
|
+
end
|
21621
|
+
|
21202
21622
|
end
|
21203
21623
|
end
|
21204
21624
|
|