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
data/lib/aws-sdk-medialive.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -823,7 +823,16 @@ module Aws
|
|
823
823
|
nielsen_id_3_name_modifier: ::String?,
|
824
824
|
scte_35_name_modifier: ::String?,
|
825
825
|
id_3_behavior: ("DISABLED" | "ENABLED")?,
|
826
|
-
id_3_name_modifier: ::String
|
826
|
+
id_3_name_modifier: ::String?,
|
827
|
+
caption_language_mappings: Array[
|
828
|
+
{
|
829
|
+
caption_channel: ::Integer,
|
830
|
+
language_code: ::String
|
831
|
+
},
|
832
|
+
]?,
|
833
|
+
timed_metadata_id_3_frame: ("NONE" | "PRIV" | "TDRL")?,
|
834
|
+
timed_metadata_id_3_period: ::Integer?,
|
835
|
+
timed_metadata_passthrough: ("DISABLED" | "ENABLED")?
|
827
836
|
}?,
|
828
837
|
srt_group_settings: {
|
829
838
|
input_loss_action: ("DROP_PROGRAM" | "DROP_TS" | "EMIT_PROGRAM")?
|
@@ -1586,7 +1595,7 @@ module Aws
|
|
1586
1595
|
},
|
1587
1596
|
],
|
1588
1597
|
?tags: Hash[::String, ::String],
|
1589
|
-
?type: ("UDP_PUSH" | "RTP_PUSH" | "RTMP_PUSH" | "RTMP_PULL" | "URL_PULL" | "MP4_FILE" | "MEDIACONNECT" | "INPUT_DEVICE" | "AWS_CDI" | "TS_FILE" | "SRT_CALLER" | "MULTICAST" | "SMPTE_2110_RECEIVER_GROUP"),
|
1598
|
+
?type: ("UDP_PUSH" | "RTP_PUSH" | "RTMP_PUSH" | "RTMP_PULL" | "URL_PULL" | "MP4_FILE" | "MEDIACONNECT" | "INPUT_DEVICE" | "AWS_CDI" | "TS_FILE" | "SRT_CALLER" | "MULTICAST" | "SMPTE_2110_RECEIVER_GROUP" | "SDI"),
|
1590
1599
|
?vpc: {
|
1591
1600
|
security_group_ids: Array[::String]?,
|
1592
1601
|
subnet_ids: Array[::String]
|
@@ -1637,7 +1646,8 @@ module Aws
|
|
1637
1646
|
}?
|
1638
1647
|
},
|
1639
1648
|
]?
|
1640
|
-
}
|
1649
|
+
},
|
1650
|
+
?sdi_sources: Array[::String]
|
1641
1651
|
) -> _CreateInputResponseSuccess
|
1642
1652
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateInputResponseSuccess
|
1643
1653
|
|
@@ -1902,11 +1912,12 @@ module Aws
|
|
1902
1912
|
def sources: () -> ::Array[Types::InputSource]
|
1903
1913
|
def state: () -> ("CREATING" | "DETACHED" | "ATTACHED" | "DELETING" | "DELETED")
|
1904
1914
|
def tags: () -> ::Hash[::String, ::String]
|
1905
|
-
def type: () -> ("UDP_PUSH" | "RTP_PUSH" | "RTMP_PUSH" | "RTMP_PULL" | "URL_PULL" | "MP4_FILE" | "MEDIACONNECT" | "INPUT_DEVICE" | "AWS_CDI" | "TS_FILE" | "SRT_CALLER" | "MULTICAST" | "SMPTE_2110_RECEIVER_GROUP")
|
1915
|
+
def type: () -> ("UDP_PUSH" | "RTP_PUSH" | "RTMP_PUSH" | "RTMP_PULL" | "URL_PULL" | "MP4_FILE" | "MEDIACONNECT" | "INPUT_DEVICE" | "AWS_CDI" | "TS_FILE" | "SRT_CALLER" | "MULTICAST" | "SMPTE_2110_RECEIVER_GROUP" | "SDI")
|
1906
1916
|
def srt_settings: () -> Types::SrtSettings
|
1907
1917
|
def input_network_location: () -> ("AWS" | "ON_PREMISES")
|
1908
1918
|
def multicast_settings: () -> Types::MulticastSettings
|
1909
1919
|
def smpte_2110_receiver_group_settings: () -> Types::Smpte2110ReceiverGroupSettings
|
1920
|
+
def sdi_sources: () -> ::Array[::String]
|
1910
1921
|
end
|
1911
1922
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaLive/Client.html#describe_input-instance_method
|
1912
1923
|
def describe_input: (
|
@@ -2910,7 +2921,16 @@ module Aws
|
|
2910
2921
|
nielsen_id_3_name_modifier: ::String?,
|
2911
2922
|
scte_35_name_modifier: ::String?,
|
2912
2923
|
id_3_behavior: ("DISABLED" | "ENABLED")?,
|
2913
|
-
id_3_name_modifier: ::String
|
2924
|
+
id_3_name_modifier: ::String?,
|
2925
|
+
caption_language_mappings: Array[
|
2926
|
+
{
|
2927
|
+
caption_channel: ::Integer,
|
2928
|
+
language_code: ::String
|
2929
|
+
},
|
2930
|
+
]?,
|
2931
|
+
timed_metadata_id_3_frame: ("NONE" | "PRIV" | "TDRL")?,
|
2932
|
+
timed_metadata_id_3_period: ::Integer?,
|
2933
|
+
timed_metadata_passthrough: ("DISABLED" | "ENABLED")?
|
2914
2934
|
}?,
|
2915
2935
|
srt_group_settings: {
|
2916
2936
|
input_loss_action: ("DROP_PROGRAM" | "DROP_TS" | "EMIT_PROGRAM")?
|
@@ -3748,7 +3768,8 @@ module Aws
|
|
3748
3768
|
}?
|
3749
3769
|
},
|
3750
3770
|
]?
|
3751
|
-
}
|
3771
|
+
},
|
3772
|
+
?sdi_sources: Array[::String]
|
3752
3773
|
) -> _UpdateInputResponseSuccess
|
3753
3774
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateInputResponseSuccess
|
3754
3775
|
|
@@ -3789,7 +3810,8 @@ module Aws
|
|
3789
3810
|
id: ::Integer?,
|
3790
3811
|
profile: ("DISABLED" | "VBR-AAC_HHE-16000" | "VBR-AAC_HE-64000" | "VBR-AAC_LC-128000" | "CBR-AAC_HQ-192000" | "CBR-AAC_HQ-256000" | "CBR-AAC_HQ-384000" | "CBR-AAC_HQ-512000")?
|
3791
3812
|
},
|
3792
|
-
]
|
3813
|
+
]?,
|
3814
|
+
input_resolution: ::String?
|
3793
3815
|
},
|
3794
3816
|
input_device_id: ::String,
|
3795
3817
|
?name: ::String,
|
@@ -3809,7 +3831,8 @@ module Aws
|
|
3809
3831
|
id: ::Integer?,
|
3810
3832
|
profile: ("DISABLED" | "VBR-AAC_HHE-16000" | "VBR-AAC_HE-64000" | "VBR-AAC_LC-128000" | "CBR-AAC_HQ-192000" | "CBR-AAC_HQ-256000" | "CBR-AAC_HQ-384000" | "CBR-AAC_HQ-512000")?
|
3811
3833
|
},
|
3812
|
-
]
|
3834
|
+
]?,
|
3835
|
+
input_resolution: ::String?
|
3813
3836
|
},
|
3814
3837
|
?availability_zone: ::String
|
3815
3838
|
) -> _UpdateInputDeviceResponseSuccess
|
@@ -4562,6 +4585,7 @@ module Aws
|
|
4562
4585
|
def node_interface_mappings: () -> ::Array[Types::NodeInterfaceMapping]
|
4563
4586
|
def role: () -> ("BACKUP" | "ACTIVE")
|
4564
4587
|
def state: () -> ("CREATED" | "REGISTERING" | "READY_TO_ACTIVATE" | "REGISTRATION_FAILED" | "ACTIVATION_FAILED" | "ACTIVE" | "READY" | "IN_USE" | "DEREGISTERING" | "DRAINING" | "DEREGISTRATION_FAILED" | "DEREGISTERED")
|
4588
|
+
def sdi_source_mappings: () -> ::Array[Types::SdiSourceMapping]
|
4565
4589
|
end
|
4566
4590
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaLive/Client.html#create_node-instance_method
|
4567
4591
|
def create_node: (
|
@@ -4663,6 +4687,7 @@ module Aws
|
|
4663
4687
|
def node_interface_mappings: () -> ::Array[Types::NodeInterfaceMapping]
|
4664
4688
|
def role: () -> ("BACKUP" | "ACTIVE")
|
4665
4689
|
def state: () -> ("CREATED" | "REGISTERING" | "READY_TO_ACTIVATE" | "REGISTRATION_FAILED" | "ACTIVATION_FAILED" | "ACTIVE" | "READY" | "IN_USE" | "DEREGISTERING" | "DRAINING" | "DEREGISTRATION_FAILED" | "DEREGISTERED")
|
4690
|
+
def sdi_source_mappings: () -> ::Array[Types::SdiSourceMapping]
|
4666
4691
|
end
|
4667
4692
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaLive/Client.html#delete_node-instance_method
|
4668
4693
|
def delete_node: (
|
@@ -4733,6 +4758,7 @@ module Aws
|
|
4733
4758
|
def node_interface_mappings: () -> ::Array[Types::NodeInterfaceMapping]
|
4734
4759
|
def role: () -> ("BACKUP" | "ACTIVE")
|
4735
4760
|
def state: () -> ("CREATED" | "REGISTERING" | "READY_TO_ACTIVATE" | "REGISTRATION_FAILED" | "ACTIVATION_FAILED" | "ACTIVE" | "READY" | "IN_USE" | "DEREGISTERING" | "DRAINING" | "DEREGISTRATION_FAILED" | "DEREGISTERED")
|
4761
|
+
def sdi_source_mappings: () -> ::Array[Types::SdiSourceMapping]
|
4736
4762
|
end
|
4737
4763
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaLive/Client.html#describe_node-instance_method
|
4738
4764
|
def describe_node: (
|
@@ -4876,13 +4902,21 @@ module Aws
|
|
4876
4902
|
def node_interface_mappings: () -> ::Array[Types::NodeInterfaceMapping]
|
4877
4903
|
def role: () -> ("BACKUP" | "ACTIVE")
|
4878
4904
|
def state: () -> ("CREATED" | "REGISTERING" | "READY_TO_ACTIVATE" | "REGISTRATION_FAILED" | "ACTIVATION_FAILED" | "ACTIVE" | "READY" | "IN_USE" | "DEREGISTERING" | "DRAINING" | "DEREGISTRATION_FAILED" | "DEREGISTERED")
|
4905
|
+
def sdi_source_mappings: () -> ::Array[Types::SdiSourceMapping]
|
4879
4906
|
end
|
4880
4907
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaLive/Client.html#update_node-instance_method
|
4881
4908
|
def update_node: (
|
4882
4909
|
cluster_id: ::String,
|
4883
4910
|
?name: ::String,
|
4884
4911
|
node_id: ::String,
|
4885
|
-
?role: ("BACKUP" | "ACTIVE")
|
4912
|
+
?role: ("BACKUP" | "ACTIVE"),
|
4913
|
+
?sdi_source_mappings: Array[
|
4914
|
+
{
|
4915
|
+
card_number: ::Integer?,
|
4916
|
+
channel_number: ::Integer?,
|
4917
|
+
sdi_source: ::String?
|
4918
|
+
},
|
4919
|
+
]
|
4886
4920
|
) -> _UpdateNodeResponseSuccess
|
4887
4921
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateNodeResponseSuccess
|
4888
4922
|
|
@@ -4898,6 +4932,7 @@ module Aws
|
|
4898
4932
|
def node_interface_mappings: () -> ::Array[Types::NodeInterfaceMapping]
|
4899
4933
|
def role: () -> ("BACKUP" | "ACTIVE")
|
4900
4934
|
def state: () -> ("CREATED" | "REGISTERING" | "READY_TO_ACTIVATE" | "REGISTRATION_FAILED" | "ACTIVATION_FAILED" | "ACTIVE" | "READY" | "IN_USE" | "DEREGISTERING" | "DRAINING" | "DEREGISTRATION_FAILED" | "DEREGISTERED")
|
4935
|
+
def sdi_source_mappings: () -> ::Array[Types::SdiSourceMapping]
|
4901
4936
|
end
|
4902
4937
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaLive/Client.html#update_node_state-instance_method
|
4903
4938
|
def update_node_state: (
|
@@ -4916,6 +4951,65 @@ module Aws
|
|
4916
4951
|
) -> _ListVersionsResponseSuccess
|
4917
4952
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListVersionsResponseSuccess
|
4918
4953
|
|
4954
|
+
interface _CreateSdiSourceResponseSuccess
|
4955
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateSdiSourceResponse]
|
4956
|
+
def sdi_source: () -> Types::SdiSource
|
4957
|
+
end
|
4958
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaLive/Client.html#create_sdi_source-instance_method
|
4959
|
+
def create_sdi_source: (
|
4960
|
+
?mode: ("QUADRANT" | "INTERLEAVE"),
|
4961
|
+
?name: ::String,
|
4962
|
+
?request_id: ::String,
|
4963
|
+
?tags: Hash[::String, ::String],
|
4964
|
+
?type: ("SINGLE" | "QUAD")
|
4965
|
+
) -> _CreateSdiSourceResponseSuccess
|
4966
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateSdiSourceResponseSuccess
|
4967
|
+
|
4968
|
+
interface _DeleteSdiSourceResponseSuccess
|
4969
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteSdiSourceResponse]
|
4970
|
+
def sdi_source: () -> Types::SdiSource
|
4971
|
+
end
|
4972
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaLive/Client.html#delete_sdi_source-instance_method
|
4973
|
+
def delete_sdi_source: (
|
4974
|
+
sdi_source_id: ::String
|
4975
|
+
) -> _DeleteSdiSourceResponseSuccess
|
4976
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteSdiSourceResponseSuccess
|
4977
|
+
|
4978
|
+
interface _DescribeSdiSourceResponseSuccess
|
4979
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeSdiSourceResponse]
|
4980
|
+
def sdi_source: () -> Types::SdiSource
|
4981
|
+
end
|
4982
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaLive/Client.html#describe_sdi_source-instance_method
|
4983
|
+
def describe_sdi_source: (
|
4984
|
+
sdi_source_id: ::String
|
4985
|
+
) -> _DescribeSdiSourceResponseSuccess
|
4986
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeSdiSourceResponseSuccess
|
4987
|
+
|
4988
|
+
interface _ListSdiSourcesResponseSuccess
|
4989
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListSdiSourcesResponse]
|
4990
|
+
def next_token: () -> ::String
|
4991
|
+
def sdi_sources: () -> ::Array[Types::SdiSourceSummary]
|
4992
|
+
end
|
4993
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaLive/Client.html#list_sdi_sources-instance_method
|
4994
|
+
def list_sdi_sources: (
|
4995
|
+
?max_results: ::Integer,
|
4996
|
+
?next_token: ::String
|
4997
|
+
) -> _ListSdiSourcesResponseSuccess
|
4998
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListSdiSourcesResponseSuccess
|
4999
|
+
|
5000
|
+
interface _UpdateSdiSourceResponseSuccess
|
5001
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateSdiSourceResponse]
|
5002
|
+
def sdi_source: () -> Types::SdiSource
|
5003
|
+
end
|
5004
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaLive/Client.html#update_sdi_source-instance_method
|
5005
|
+
def update_sdi_source: (
|
5006
|
+
?mode: ("QUADRANT" | "INTERLEAVE"),
|
5007
|
+
?name: ::String,
|
5008
|
+
sdi_source_id: ::String,
|
5009
|
+
?type: ("SINGLE" | "QUAD")
|
5010
|
+
) -> _UpdateSdiSourceResponseSuccess
|
5011
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateSdiSourceResponseSuccess
|
5012
|
+
|
4919
5013
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MediaLive/Client.html#wait_until-instance_method
|
4920
5014
|
def wait_until: (:channel_created waiter_name,
|
4921
5015
|
channel_id: ::String
|
data/sig/types.rbs
CHANGED
@@ -619,12 +619,13 @@ module Aws::MediaLive
|
|
619
619
|
attr_accessor role_arn: ::String
|
620
620
|
attr_accessor sources: ::Array[Types::InputSourceRequest]
|
621
621
|
attr_accessor tags: ::Hash[::String, ::String]
|
622
|
-
attr_accessor type: ("UDP_PUSH" | "RTP_PUSH" | "RTMP_PUSH" | "RTMP_PULL" | "URL_PULL" | "MP4_FILE" | "MEDIACONNECT" | "INPUT_DEVICE" | "AWS_CDI" | "TS_FILE" | "SRT_CALLER" | "MULTICAST" | "SMPTE_2110_RECEIVER_GROUP")
|
622
|
+
attr_accessor type: ("UDP_PUSH" | "RTP_PUSH" | "RTMP_PUSH" | "RTMP_PULL" | "URL_PULL" | "MP4_FILE" | "MEDIACONNECT" | "INPUT_DEVICE" | "AWS_CDI" | "TS_FILE" | "SRT_CALLER" | "MULTICAST" | "SMPTE_2110_RECEIVER_GROUP" | "SDI")
|
623
623
|
attr_accessor vpc: Types::InputVpcRequest
|
624
624
|
attr_accessor srt_settings: Types::SrtSettingsRequest
|
625
625
|
attr_accessor input_network_location: ("AWS" | "ON_PREMISES")
|
626
626
|
attr_accessor multicast_settings: Types::MulticastSettingsCreateRequest
|
627
627
|
attr_accessor smpte_2110_receiver_group_settings: Types::Smpte2110ReceiverGroupSettings
|
628
|
+
attr_accessor sdi_sources: ::Array[::String]
|
628
629
|
SENSITIVE: []
|
629
630
|
end
|
630
631
|
|
@@ -638,12 +639,13 @@ module Aws::MediaLive
|
|
638
639
|
attr_accessor role_arn: ::String
|
639
640
|
attr_accessor sources: ::Array[Types::InputSourceRequest]
|
640
641
|
attr_accessor tags: ::Hash[::String, ::String]
|
641
|
-
attr_accessor type: ("UDP_PUSH" | "RTP_PUSH" | "RTMP_PUSH" | "RTMP_PULL" | "URL_PULL" | "MP4_FILE" | "MEDIACONNECT" | "INPUT_DEVICE" | "AWS_CDI" | "TS_FILE" | "SRT_CALLER" | "MULTICAST" | "SMPTE_2110_RECEIVER_GROUP")
|
642
|
+
attr_accessor type: ("UDP_PUSH" | "RTP_PUSH" | "RTMP_PUSH" | "RTMP_PULL" | "URL_PULL" | "MP4_FILE" | "MEDIACONNECT" | "INPUT_DEVICE" | "AWS_CDI" | "TS_FILE" | "SRT_CALLER" | "MULTICAST" | "SMPTE_2110_RECEIVER_GROUP" | "SDI")
|
642
643
|
attr_accessor vpc: Types::InputVpcRequest
|
643
644
|
attr_accessor srt_settings: Types::SrtSettingsRequest
|
644
645
|
attr_accessor input_network_location: ("AWS" | "ON_PREMISES")
|
645
646
|
attr_accessor multicast_settings: Types::MulticastSettingsCreateRequest
|
646
647
|
attr_accessor smpte_2110_receiver_group_settings: Types::Smpte2110ReceiverGroupSettings
|
648
|
+
attr_accessor sdi_sources: ::Array[::String]
|
647
649
|
SENSITIVE: []
|
648
650
|
end
|
649
651
|
|
@@ -979,11 +981,12 @@ module Aws::MediaLive
|
|
979
981
|
attr_accessor sources: ::Array[Types::InputSource]
|
980
982
|
attr_accessor state: ("CREATING" | "DETACHED" | "ATTACHED" | "DELETING" | "DELETED")
|
981
983
|
attr_accessor tags: ::Hash[::String, ::String]
|
982
|
-
attr_accessor type: ("UDP_PUSH" | "RTP_PUSH" | "RTMP_PUSH" | "RTMP_PULL" | "URL_PULL" | "MP4_FILE" | "MEDIACONNECT" | "INPUT_DEVICE" | "AWS_CDI" | "TS_FILE" | "SRT_CALLER" | "MULTICAST" | "SMPTE_2110_RECEIVER_GROUP")
|
984
|
+
attr_accessor type: ("UDP_PUSH" | "RTP_PUSH" | "RTMP_PUSH" | "RTMP_PULL" | "URL_PULL" | "MP4_FILE" | "MEDIACONNECT" | "INPUT_DEVICE" | "AWS_CDI" | "TS_FILE" | "SRT_CALLER" | "MULTICAST" | "SMPTE_2110_RECEIVER_GROUP" | "SDI")
|
983
985
|
attr_accessor srt_settings: Types::SrtSettings
|
984
986
|
attr_accessor input_network_location: ("AWS" | "ON_PREMISES")
|
985
987
|
attr_accessor multicast_settings: Types::MulticastSettings
|
986
988
|
attr_accessor smpte_2110_receiver_group_settings: Types::Smpte2110ReceiverGroupSettings
|
989
|
+
attr_accessor sdi_sources: ::Array[::String]
|
987
990
|
SENSITIVE: []
|
988
991
|
end
|
989
992
|
|
@@ -1634,11 +1637,12 @@ module Aws::MediaLive
|
|
1634
1637
|
attr_accessor sources: ::Array[Types::InputSource]
|
1635
1638
|
attr_accessor state: ("CREATING" | "DETACHED" | "ATTACHED" | "DELETING" | "DELETED")
|
1636
1639
|
attr_accessor tags: ::Hash[::String, ::String]
|
1637
|
-
attr_accessor type: ("UDP_PUSH" | "RTP_PUSH" | "RTMP_PUSH" | "RTMP_PULL" | "URL_PULL" | "MP4_FILE" | "MEDIACONNECT" | "INPUT_DEVICE" | "AWS_CDI" | "TS_FILE" | "SRT_CALLER" | "MULTICAST" | "SMPTE_2110_RECEIVER_GROUP")
|
1640
|
+
attr_accessor type: ("UDP_PUSH" | "RTP_PUSH" | "RTMP_PUSH" | "RTMP_PULL" | "URL_PULL" | "MP4_FILE" | "MEDIACONNECT" | "INPUT_DEVICE" | "AWS_CDI" | "TS_FILE" | "SRT_CALLER" | "MULTICAST" | "SMPTE_2110_RECEIVER_GROUP" | "SDI")
|
1638
1641
|
attr_accessor srt_settings: Types::SrtSettings
|
1639
1642
|
attr_accessor input_network_location: ("AWS" | "ON_PREMISES")
|
1640
1643
|
attr_accessor multicast_settings: Types::MulticastSettings
|
1641
1644
|
attr_accessor smpte_2110_receiver_group_settings: Types::Smpte2110ReceiverGroupSettings
|
1645
|
+
attr_accessor sdi_sources: ::Array[::String]
|
1642
1646
|
SENSITIVE: []
|
1643
1647
|
end
|
1644
1648
|
|
@@ -1715,6 +1719,7 @@ module Aws::MediaLive
|
|
1715
1719
|
attr_accessor codec: ("HEVC" | "AVC")
|
1716
1720
|
attr_accessor mediaconnect_settings: Types::InputDeviceMediaConnectConfigurableSettings
|
1717
1721
|
attr_accessor audio_channel_pairs: ::Array[Types::InputDeviceConfigurableAudioChannelPairConfig]
|
1722
|
+
attr_accessor input_resolution: ::String
|
1718
1723
|
SENSITIVE: []
|
1719
1724
|
end
|
1720
1725
|
|
@@ -1805,6 +1810,7 @@ module Aws::MediaLive
|
|
1805
1810
|
attr_accessor codec: ("HEVC" | "AVC")
|
1806
1811
|
attr_accessor mediaconnect_settings: Types::InputDeviceMediaConnectSettings
|
1807
1812
|
attr_accessor audio_channel_pairs: ::Array[Types::InputDeviceUhdAudioChannelPairConfig]
|
1813
|
+
attr_accessor input_resolution: ::String
|
1808
1814
|
SENSITIVE: []
|
1809
1815
|
end
|
1810
1816
|
|
@@ -3299,6 +3305,7 @@ module Aws::MediaLive
|
|
3299
3305
|
attr_accessor srt_settings: Types::SrtSettingsRequest
|
3300
3306
|
attr_accessor multicast_settings: Types::MulticastSettingsUpdateRequest
|
3301
3307
|
attr_accessor smpte_2110_receiver_group_settings: Types::Smpte2110ReceiverGroupSettings
|
3308
|
+
attr_accessor sdi_sources: ::Array[::String]
|
3302
3309
|
SENSITIVE: []
|
3303
3310
|
end
|
3304
3311
|
|
@@ -3351,6 +3358,7 @@ module Aws::MediaLive
|
|
3351
3358
|
attr_accessor srt_settings: Types::SrtSettingsRequest
|
3352
3359
|
attr_accessor multicast_settings: Types::MulticastSettingsUpdateRequest
|
3353
3360
|
attr_accessor smpte_2110_receiver_group_settings: Types::Smpte2110ReceiverGroupSettings
|
3361
|
+
attr_accessor sdi_sources: ::Array[::String]
|
3354
3362
|
SENSITIVE: []
|
3355
3363
|
end
|
3356
3364
|
|
@@ -3595,6 +3603,10 @@ module Aws::MediaLive
|
|
3595
3603
|
attr_accessor scte_35_name_modifier: ::String
|
3596
3604
|
attr_accessor id_3_behavior: ("DISABLED" | "ENABLED")
|
3597
3605
|
attr_accessor id_3_name_modifier: ::String
|
3606
|
+
attr_accessor caption_language_mappings: ::Array[Types::CmafIngestCaptionLanguageMapping]
|
3607
|
+
attr_accessor timed_metadata_id_3_frame: ("NONE" | "PRIV" | "TDRL")
|
3608
|
+
attr_accessor timed_metadata_id_3_period: ::Integer
|
3609
|
+
attr_accessor timed_metadata_passthrough: ("DISABLED" | "ENABLED")
|
3598
3610
|
SENSITIVE: []
|
3599
3611
|
end
|
3600
3612
|
|
@@ -4867,6 +4879,7 @@ module Aws::MediaLive
|
|
4867
4879
|
attr_accessor node_interface_mappings: ::Array[Types::NodeInterfaceMapping]
|
4868
4880
|
attr_accessor role: ("BACKUP" | "ACTIVE")
|
4869
4881
|
attr_accessor state: ("CREATED" | "REGISTERING" | "READY_TO_ACTIVATE" | "REGISTRATION_FAILED" | "ACTIVATION_FAILED" | "ACTIVE" | "READY" | "IN_USE" | "DEREGISTERING" | "DRAINING" | "DEREGISTRATION_FAILED" | "DEREGISTERED")
|
4882
|
+
attr_accessor sdi_source_mappings: ::Array[Types::SdiSourceMapping]
|
4870
4883
|
SENSITIVE: []
|
4871
4884
|
end
|
4872
4885
|
|
@@ -4937,6 +4950,7 @@ module Aws::MediaLive
|
|
4937
4950
|
attr_accessor node_interface_mappings: ::Array[Types::NodeInterfaceMapping]
|
4938
4951
|
attr_accessor role: ("BACKUP" | "ACTIVE")
|
4939
4952
|
attr_accessor state: ("CREATED" | "REGISTERING" | "READY_TO_ACTIVATE" | "REGISTRATION_FAILED" | "ACTIVATION_FAILED" | "ACTIVE" | "READY" | "IN_USE" | "DEREGISTERING" | "DRAINING" | "DEREGISTRATION_FAILED" | "DEREGISTERED")
|
4953
|
+
attr_accessor sdi_source_mappings: ::Array[Types::SdiSourceMapping]
|
4940
4954
|
SENSITIVE: []
|
4941
4955
|
end
|
4942
4956
|
|
@@ -5081,6 +5095,7 @@ module Aws::MediaLive
|
|
5081
5095
|
attr_accessor node_interface_mappings: ::Array[Types::NodeInterfaceMapping]
|
5082
5096
|
attr_accessor role: ("BACKUP" | "ACTIVE")
|
5083
5097
|
attr_accessor state: ("CREATED" | "REGISTERING" | "READY_TO_ACTIVATE" | "REGISTRATION_FAILED" | "ACTIVATION_FAILED" | "ACTIVE" | "READY" | "IN_USE" | "DEREGISTERING" | "DRAINING" | "DEREGISTRATION_FAILED" | "DEREGISTERED")
|
5098
|
+
attr_accessor sdi_source_mappings: ::Array[Types::SdiSourceMapping]
|
5084
5099
|
SENSITIVE: []
|
5085
5100
|
end
|
5086
5101
|
|
@@ -5095,6 +5110,7 @@ module Aws::MediaLive
|
|
5095
5110
|
attr_accessor node_interface_mappings: ::Array[Types::NodeInterfaceMapping]
|
5096
5111
|
attr_accessor role: ("BACKUP" | "ACTIVE")
|
5097
5112
|
attr_accessor state: ("CREATED" | "REGISTERING" | "READY_TO_ACTIVATE" | "REGISTRATION_FAILED" | "ACTIVATION_FAILED" | "ACTIVE" | "READY" | "IN_USE" | "DEREGISTERING" | "DRAINING" | "DEREGISTRATION_FAILED" | "DEREGISTERED")
|
5113
|
+
attr_accessor sdi_source_mappings: ::Array[Types::SdiSourceMapping]
|
5098
5114
|
SENSITIVE: []
|
5099
5115
|
end
|
5100
5116
|
|
@@ -5110,6 +5126,7 @@ module Aws::MediaLive
|
|
5110
5126
|
attr_accessor node_interface_mappings: ::Array[Types::NodeInterfaceMapping]
|
5111
5127
|
attr_accessor role: ("BACKUP" | "ACTIVE")
|
5112
5128
|
attr_accessor state: ("CREATED" | "REGISTERING" | "READY_TO_ACTIVATE" | "REGISTRATION_FAILED" | "ACTIVATION_FAILED" | "ACTIVE" | "READY" | "IN_USE" | "DEREGISTERING" | "DRAINING" | "DEREGISTRATION_FAILED" | "DEREGISTERED")
|
5129
|
+
attr_accessor sdi_source_mappings: ::Array[Types::SdiSourceMapping]
|
5113
5130
|
SENSITIVE: []
|
5114
5131
|
end
|
5115
5132
|
|
@@ -5412,6 +5429,7 @@ module Aws::MediaLive
|
|
5412
5429
|
attr_accessor name: ::String
|
5413
5430
|
attr_accessor node_id: ::String
|
5414
5431
|
attr_accessor role: ("BACKUP" | "ACTIVE")
|
5432
|
+
attr_accessor sdi_source_mappings: ::Array[Types::SdiSourceMappingUpdateRequest]
|
5415
5433
|
SENSITIVE: []
|
5416
5434
|
end
|
5417
5435
|
|
@@ -5426,6 +5444,7 @@ module Aws::MediaLive
|
|
5426
5444
|
attr_accessor node_interface_mappings: ::Array[Types::NodeInterfaceMapping]
|
5427
5445
|
attr_accessor role: ("BACKUP" | "ACTIVE")
|
5428
5446
|
attr_accessor state: ("CREATED" | "REGISTERING" | "READY_TO_ACTIVATE" | "REGISTRATION_FAILED" | "ACTIVATION_FAILED" | "ACTIVE" | "READY" | "IN_USE" | "DEREGISTERING" | "DRAINING" | "DEREGISTRATION_FAILED" | "DEREGISTERED")
|
5447
|
+
attr_accessor sdi_source_mappings: ::Array[Types::SdiSourceMapping]
|
5429
5448
|
SENSITIVE: []
|
5430
5449
|
end
|
5431
5450
|
|
@@ -5447,6 +5466,7 @@ module Aws::MediaLive
|
|
5447
5466
|
attr_accessor node_interface_mappings: ::Array[Types::NodeInterfaceMapping]
|
5448
5467
|
attr_accessor role: ("BACKUP" | "ACTIVE")
|
5449
5468
|
attr_accessor state: ("CREATED" | "REGISTERING" | "READY_TO_ACTIVATE" | "REGISTRATION_FAILED" | "ACTIVATION_FAILED" | "ACTIVE" | "READY" | "IN_USE" | "DEREGISTERING" | "DRAINING" | "DEREGISTRATION_FAILED" | "DEREGISTERED")
|
5469
|
+
attr_accessor sdi_source_mappings: ::Array[Types::SdiSourceMapping]
|
5450
5470
|
SENSITIVE: []
|
5451
5471
|
end
|
5452
5472
|
|
@@ -5531,5 +5551,106 @@ module Aws::MediaLive
|
|
5531
5551
|
attr_accessor smpte_2110_receiver_groups: ::Array[Types::Smpte2110ReceiverGroup]
|
5532
5552
|
SENSITIVE: []
|
5533
5553
|
end
|
5554
|
+
|
5555
|
+
class CreateSdiSourceRequest
|
5556
|
+
attr_accessor mode: ("QUADRANT" | "INTERLEAVE")
|
5557
|
+
attr_accessor name: ::String
|
5558
|
+
attr_accessor request_id: ::String
|
5559
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
5560
|
+
attr_accessor type: ("SINGLE" | "QUAD")
|
5561
|
+
SENSITIVE: []
|
5562
|
+
end
|
5563
|
+
|
5564
|
+
class CreateSdiSourceResponse
|
5565
|
+
attr_accessor sdi_source: Types::SdiSource
|
5566
|
+
SENSITIVE: []
|
5567
|
+
end
|
5568
|
+
|
5569
|
+
class DeleteSdiSourceRequest
|
5570
|
+
attr_accessor sdi_source_id: ::String
|
5571
|
+
SENSITIVE: []
|
5572
|
+
end
|
5573
|
+
|
5574
|
+
class DeleteSdiSourceResponse
|
5575
|
+
attr_accessor sdi_source: Types::SdiSource
|
5576
|
+
SENSITIVE: []
|
5577
|
+
end
|
5578
|
+
|
5579
|
+
class DescribeSdiSourceRequest
|
5580
|
+
attr_accessor sdi_source_id: ::String
|
5581
|
+
SENSITIVE: []
|
5582
|
+
end
|
5583
|
+
|
5584
|
+
class DescribeSdiSourceResponse
|
5585
|
+
attr_accessor sdi_source: Types::SdiSource
|
5586
|
+
SENSITIVE: []
|
5587
|
+
end
|
5588
|
+
|
5589
|
+
class ListSdiSourcesRequest
|
5590
|
+
attr_accessor max_results: ::Integer
|
5591
|
+
attr_accessor next_token: ::String
|
5592
|
+
SENSITIVE: []
|
5593
|
+
end
|
5594
|
+
|
5595
|
+
class ListSdiSourcesResponse
|
5596
|
+
attr_accessor next_token: ::String
|
5597
|
+
attr_accessor sdi_sources: ::Array[Types::SdiSourceSummary]
|
5598
|
+
SENSITIVE: []
|
5599
|
+
end
|
5600
|
+
|
5601
|
+
class SdiSource
|
5602
|
+
attr_accessor arn: ::String
|
5603
|
+
attr_accessor id: ::String
|
5604
|
+
attr_accessor inputs: ::Array[::String]
|
5605
|
+
attr_accessor mode: ("QUADRANT" | "INTERLEAVE")
|
5606
|
+
attr_accessor name: ::String
|
5607
|
+
attr_accessor state: ("IDLE" | "IN_USE" | "DELETED")
|
5608
|
+
attr_accessor type: ("SINGLE" | "QUAD")
|
5609
|
+
SENSITIVE: []
|
5610
|
+
end
|
5611
|
+
|
5612
|
+
class SdiSourceMapping
|
5613
|
+
attr_accessor card_number: ::Integer
|
5614
|
+
attr_accessor channel_number: ::Integer
|
5615
|
+
attr_accessor sdi_source: ::String
|
5616
|
+
SENSITIVE: []
|
5617
|
+
end
|
5618
|
+
|
5619
|
+
class SdiSourceMappingUpdateRequest
|
5620
|
+
attr_accessor card_number: ::Integer
|
5621
|
+
attr_accessor channel_number: ::Integer
|
5622
|
+
attr_accessor sdi_source: ::String
|
5623
|
+
SENSITIVE: []
|
5624
|
+
end
|
5625
|
+
|
5626
|
+
class SdiSourceSummary
|
5627
|
+
attr_accessor arn: ::String
|
5628
|
+
attr_accessor id: ::String
|
5629
|
+
attr_accessor inputs: ::Array[::String]
|
5630
|
+
attr_accessor mode: ("QUADRANT" | "INTERLEAVE")
|
5631
|
+
attr_accessor name: ::String
|
5632
|
+
attr_accessor state: ("IDLE" | "IN_USE" | "DELETED")
|
5633
|
+
attr_accessor type: ("SINGLE" | "QUAD")
|
5634
|
+
SENSITIVE: []
|
5635
|
+
end
|
5636
|
+
|
5637
|
+
class UpdateSdiSourceRequest
|
5638
|
+
attr_accessor mode: ("QUADRANT" | "INTERLEAVE")
|
5639
|
+
attr_accessor name: ::String
|
5640
|
+
attr_accessor sdi_source_id: ::String
|
5641
|
+
attr_accessor type: ("SINGLE" | "QUAD")
|
5642
|
+
SENSITIVE: []
|
5643
|
+
end
|
5644
|
+
|
5645
|
+
class UpdateSdiSourceResponse
|
5646
|
+
attr_accessor sdi_source: Types::SdiSource
|
5647
|
+
SENSITIVE: []
|
5648
|
+
end
|
5649
|
+
|
5650
|
+
class CmafIngestCaptionLanguageMapping
|
5651
|
+
attr_accessor caption_channel: ::Integer
|
5652
|
+
attr_accessor language_code: ::String
|
5653
|
+
SENSITIVE: []
|
5654
|
+
end
|
5534
5655
|
end
|
5535
5656
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-medialive
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.151.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: 2025-04-
|
11
|
+
date: 2025-04-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|