Class: Aws::MediaLive::Types::Input
- Inherits:
-
Struct
- Object
- Struct
- Aws::MediaLive::Types::Input
- Defined in:
- gems/aws-sdk-medialive/lib/aws-sdk-medialive/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#arn ⇒ String
The Unique ARN of the input (generated, immutable).
-
#attached_channels ⇒ Array<String>
A list of channel IDs that that input is attached to (currently an input can only be attached to one channel).
-
#destinations ⇒ Array<Types::InputDestination>
A list of the destinations of the input (PUSH-type).
-
#id ⇒ String
The generated ID of the input (unique for user account, immutable).
-
#input_class ⇒ String
STANDARD - MediaLive expects two sources to be connected to this input.
-
#input_devices ⇒ Array<Types::InputDeviceSettings>
Settings for the input devices.
-
#input_network_location ⇒ String
The location of this input.
-
#input_partner_ids ⇒ Array<String>
A list of IDs for all Inputs which are partners of this one.
-
#input_source_type ⇒ String
Certain pull input sources can be dynamic, meaning that they can have their URL's dynamically changes during input switch actions.
-
#media_connect_flows ⇒ Array<Types::MediaConnectFlow>
A list of MediaConnect Flows for this input.
-
#multicast_settings ⇒ Types::MulticastSettings
Multicast Input settings.
-
#name ⇒ String
The user-assigned name (This is a mutable value).
-
#role_arn ⇒ String
The Amazon Resource Name (ARN) of the role this input assumes during and after creation.
-
#router_settings ⇒ Types::RouterInputSettings
Information about any MediaConnect router association with this input.
-
#sdi_sources ⇒ Array<String>
SDI Sources for this Input.
-
#security_groups ⇒ Array<String>
A list of IDs for all the Input Security Groups attached to the input.
-
#smpte_2110_receiver_group_settings ⇒ Types::Smpte2110ReceiverGroupSettings
Include this parameter if the input is a SMPTE 2110 input, to identify the stream sources for this input.
-
#sources ⇒ Array<Types::InputSource>
A list of the sources of the input (PULL-type).
-
#srt_settings ⇒ Types::SrtSettings
The settings associated with an SRT input.
-
#state ⇒ String
-
#tags ⇒ Hash<String,String>
A collection of key-value pairs.
-
#type ⇒ String
The different types of inputs that AWS Elemental MediaLive supports.
Instance Attribute Details
#arn ⇒ String
The Unique ARN of the input (generated, immutable).
6766 6767 6768 6769 6770 6771 6772 6773 6774 6775 6776 6777 6778 6779 6780 6781 6782 6783 6784 6785 6786 6787 6788 6789 6790 6791 |
# File 'gems/aws-sdk-medialive/lib/aws-sdk-medialive/types.rb', line 6766 class Input < Struct.new( :arn, :attached_channels, :destinations, :id, :input_class, :input_devices, :input_partner_ids, :input_source_type, :media_connect_flows, :name, :role_arn, :security_groups, :sources, :state, :tags, :type, :srt_settings, :input_network_location, :multicast_settings, :smpte_2110_receiver_group_settings, :sdi_sources, :router_settings) SENSITIVE = [] include Aws::Structure end |
#attached_channels ⇒ Array<String>
A list of channel IDs that that input is attached to (currently an input can only be attached to one channel).
6766 6767 6768 6769 6770 6771 6772 6773 6774 6775 6776 6777 6778 6779 6780 6781 6782 6783 6784 6785 6786 6787 6788 6789 6790 6791 |
# File 'gems/aws-sdk-medialive/lib/aws-sdk-medialive/types.rb', line 6766 class Input < Struct.new( :arn, :attached_channels, :destinations, :id, :input_class, :input_devices, :input_partner_ids, :input_source_type, :media_connect_flows, :name, :role_arn, :security_groups, :sources, :state, :tags, :type, :srt_settings, :input_network_location, :multicast_settings, :smpte_2110_receiver_group_settings, :sdi_sources, :router_settings) SENSITIVE = [] include Aws::Structure end |
#destinations ⇒ Array<Types::InputDestination>
A list of the destinations of the input (PUSH-type).
6766 6767 6768 6769 6770 6771 6772 6773 6774 6775 6776 6777 6778 6779 6780 6781 6782 6783 6784 6785 6786 6787 6788 6789 6790 6791 |
# File 'gems/aws-sdk-medialive/lib/aws-sdk-medialive/types.rb', line 6766 class Input < Struct.new( :arn, :attached_channels, :destinations, :id, :input_class, :input_devices, :input_partner_ids, :input_source_type, :media_connect_flows, :name, :role_arn, :security_groups, :sources, :state, :tags, :type, :srt_settings, :input_network_location, :multicast_settings, :smpte_2110_receiver_group_settings, :sdi_sources, :router_settings) SENSITIVE = [] include Aws::Structure end |
#id ⇒ String
The generated ID of the input (unique for user account, immutable).
6766 6767 6768 6769 6770 6771 6772 6773 6774 6775 6776 6777 6778 6779 6780 6781 6782 6783 6784 6785 6786 6787 6788 6789 6790 6791 |
# File 'gems/aws-sdk-medialive/lib/aws-sdk-medialive/types.rb', line 6766 class Input < Struct.new( :arn, :attached_channels, :destinations, :id, :input_class, :input_devices, :input_partner_ids, :input_source_type, :media_connect_flows, :name, :role_arn, :security_groups, :sources, :state, :tags, :type, :srt_settings, :input_network_location, :multicast_settings, :smpte_2110_receiver_group_settings, :sdi_sources, :router_settings) SENSITIVE = [] include Aws::Structure end |
#input_class ⇒ String
STANDARD - MediaLive expects two sources to be connected to this input. If the channel is also STANDARD, both sources will be ingested. If the channel is SINGLE_PIPELINE, only the first source will be ingested; the second source will always be ignored, even if the first source fails. SINGLE_PIPELINE - You can connect only one source to this input. If the ChannelClass is also SINGLE_PIPELINE, this value is valid. If the ChannelClass is STANDARD, this value is not valid because the channel requires two sources in the input.
6766 6767 6768 6769 6770 6771 6772 6773 6774 6775 6776 6777 6778 6779 6780 6781 6782 6783 6784 6785 6786 6787 6788 6789 6790 6791 |
# File 'gems/aws-sdk-medialive/lib/aws-sdk-medialive/types.rb', line 6766 class Input < Struct.new( :arn, :attached_channels, :destinations, :id, :input_class, :input_devices, :input_partner_ids, :input_source_type, :media_connect_flows, :name, :role_arn, :security_groups, :sources, :state, :tags, :type, :srt_settings, :input_network_location, :multicast_settings, :smpte_2110_receiver_group_settings, :sdi_sources, :router_settings) SENSITIVE = [] include Aws::Structure end |
#input_devices ⇒ Array<Types::InputDeviceSettings>
Settings for the input devices.
6766 6767 6768 6769 6770 6771 6772 6773 6774 6775 6776 6777 6778 6779 6780 6781 6782 6783 6784 6785 6786 6787 6788 6789 6790 6791 |
# File 'gems/aws-sdk-medialive/lib/aws-sdk-medialive/types.rb', line 6766 class Input < Struct.new( :arn, :attached_channels, :destinations, :id, :input_class, :input_devices, :input_partner_ids, :input_source_type, :media_connect_flows, :name, :role_arn, :security_groups, :sources, :state, :tags, :type, :srt_settings, :input_network_location, :multicast_settings, :smpte_2110_receiver_group_settings, :sdi_sources, :router_settings) SENSITIVE = [] include Aws::Structure end |
#input_network_location ⇒ String
The location of this input. AWS, for an input existing in the AWS Cloud, On-Prem for an input in a customer network.
6766 6767 6768 6769 6770 6771 6772 6773 6774 6775 6776 6777 6778 6779 6780 6781 6782 6783 6784 6785 6786 6787 6788 6789 6790 6791 |
# File 'gems/aws-sdk-medialive/lib/aws-sdk-medialive/types.rb', line 6766 class Input < Struct.new( :arn, :attached_channels, :destinations, :id, :input_class, :input_devices, :input_partner_ids, :input_source_type, :media_connect_flows, :name, :role_arn, :security_groups, :sources, :state, :tags, :type, :srt_settings, :input_network_location, :multicast_settings, :smpte_2110_receiver_group_settings, :sdi_sources, :router_settings) SENSITIVE = [] include Aws::Structure end |
#input_partner_ids ⇒ Array<String>
A list of IDs for all Inputs which are partners of this one.
6766 6767 6768 6769 6770 6771 6772 6773 6774 6775 6776 6777 6778 6779 6780 6781 6782 6783 6784 6785 6786 6787 6788 6789 6790 6791 |
# File 'gems/aws-sdk-medialive/lib/aws-sdk-medialive/types.rb', line 6766 class Input < Struct.new( :arn, :attached_channels, :destinations, :id, :input_class, :input_devices, :input_partner_ids, :input_source_type, :media_connect_flows, :name, :role_arn, :security_groups, :sources, :state, :tags, :type, :srt_settings, :input_network_location, :multicast_settings, :smpte_2110_receiver_group_settings, :sdi_sources, :router_settings) SENSITIVE = [] include Aws::Structure end |
#input_source_type ⇒ String
Certain pull input sources can be dynamic, meaning that they can have their URL's dynamically changes during input switch actions. Presently, this functionality only works with MP4_FILE and TS_FILE inputs.
6766 6767 6768 6769 6770 6771 6772 6773 6774 6775 6776 6777 6778 6779 6780 6781 6782 6783 6784 6785 6786 6787 6788 6789 6790 6791 |
# File 'gems/aws-sdk-medialive/lib/aws-sdk-medialive/types.rb', line 6766 class Input < Struct.new( :arn, :attached_channels, :destinations, :id, :input_class, :input_devices, :input_partner_ids, :input_source_type, :media_connect_flows, :name, :role_arn, :security_groups, :sources, :state, :tags, :type, :srt_settings, :input_network_location, :multicast_settings, :smpte_2110_receiver_group_settings, :sdi_sources, :router_settings) SENSITIVE = [] include Aws::Structure end |
#media_connect_flows ⇒ Array<Types::MediaConnectFlow>
A list of MediaConnect Flows for this input.
6766 6767 6768 6769 6770 6771 6772 6773 6774 6775 6776 6777 6778 6779 6780 6781 6782 6783 6784 6785 6786 6787 6788 6789 6790 6791 |
# File 'gems/aws-sdk-medialive/lib/aws-sdk-medialive/types.rb', line 6766 class Input < Struct.new( :arn, :attached_channels, :destinations, :id, :input_class, :input_devices, :input_partner_ids, :input_source_type, :media_connect_flows, :name, :role_arn, :security_groups, :sources, :state, :tags, :type, :srt_settings, :input_network_location, :multicast_settings, :smpte_2110_receiver_group_settings, :sdi_sources, :router_settings) SENSITIVE = [] include Aws::Structure end |
#multicast_settings ⇒ Types::MulticastSettings
Multicast Input settings.
6766 6767 6768 6769 6770 6771 6772 6773 6774 6775 6776 6777 6778 6779 6780 6781 6782 6783 6784 6785 6786 6787 6788 6789 6790 6791 |
# File 'gems/aws-sdk-medialive/lib/aws-sdk-medialive/types.rb', line 6766 class Input < Struct.new( :arn, :attached_channels, :destinations, :id, :input_class, :input_devices, :input_partner_ids, :input_source_type, :media_connect_flows, :name, :role_arn, :security_groups, :sources, :state, :tags, :type, :srt_settings, :input_network_location, :multicast_settings, :smpte_2110_receiver_group_settings, :sdi_sources, :router_settings) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The user-assigned name (This is a mutable value).
6766 6767 6768 6769 6770 6771 6772 6773 6774 6775 6776 6777 6778 6779 6780 6781 6782 6783 6784 6785 6786 6787 6788 6789 6790 6791 |
# File 'gems/aws-sdk-medialive/lib/aws-sdk-medialive/types.rb', line 6766 class Input < Struct.new( :arn, :attached_channels, :destinations, :id, :input_class, :input_devices, :input_partner_ids, :input_source_type, :media_connect_flows, :name, :role_arn, :security_groups, :sources, :state, :tags, :type, :srt_settings, :input_network_location, :multicast_settings, :smpte_2110_receiver_group_settings, :sdi_sources, :router_settings) SENSITIVE = [] include Aws::Structure end |
#role_arn ⇒ String
The Amazon Resource Name (ARN) of the role this input assumes during and after creation.
6766 6767 6768 6769 6770 6771 6772 6773 6774 6775 6776 6777 6778 6779 6780 6781 6782 6783 6784 6785 6786 6787 6788 6789 6790 6791 |
# File 'gems/aws-sdk-medialive/lib/aws-sdk-medialive/types.rb', line 6766 class Input < Struct.new( :arn, :attached_channels, :destinations, :id, :input_class, :input_devices, :input_partner_ids, :input_source_type, :media_connect_flows, :name, :role_arn, :security_groups, :sources, :state, :tags, :type, :srt_settings, :input_network_location, :multicast_settings, :smpte_2110_receiver_group_settings, :sdi_sources, :router_settings) SENSITIVE = [] include Aws::Structure end |
#router_settings ⇒ Types::RouterInputSettings
Information about any MediaConnect router association with this input.
6766 6767 6768 6769 6770 6771 6772 6773 6774 6775 6776 6777 6778 6779 6780 6781 6782 6783 6784 6785 6786 6787 6788 6789 6790 6791 |
# File 'gems/aws-sdk-medialive/lib/aws-sdk-medialive/types.rb', line 6766 class Input < Struct.new( :arn, :attached_channels, :destinations, :id, :input_class, :input_devices, :input_partner_ids, :input_source_type, :media_connect_flows, :name, :role_arn, :security_groups, :sources, :state, :tags, :type, :srt_settings, :input_network_location, :multicast_settings, :smpte_2110_receiver_group_settings, :sdi_sources, :router_settings) SENSITIVE = [] include Aws::Structure end |
#sdi_sources ⇒ Array<String>
SDI Sources for this Input.
6766 6767 6768 6769 6770 6771 6772 6773 6774 6775 6776 6777 6778 6779 6780 6781 6782 6783 6784 6785 6786 6787 6788 6789 6790 6791 |
# File 'gems/aws-sdk-medialive/lib/aws-sdk-medialive/types.rb', line 6766 class Input < Struct.new( :arn, :attached_channels, :destinations, :id, :input_class, :input_devices, :input_partner_ids, :input_source_type, :media_connect_flows, :name, :role_arn, :security_groups, :sources, :state, :tags, :type, :srt_settings, :input_network_location, :multicast_settings, :smpte_2110_receiver_group_settings, :sdi_sources, :router_settings) SENSITIVE = [] include Aws::Structure end |
#security_groups ⇒ Array<String>
A list of IDs for all the Input Security Groups attached to the input.
6766 6767 6768 6769 6770 6771 6772 6773 6774 6775 6776 6777 6778 6779 6780 6781 6782 6783 6784 6785 6786 6787 6788 6789 6790 6791 |
# File 'gems/aws-sdk-medialive/lib/aws-sdk-medialive/types.rb', line 6766 class Input < Struct.new( :arn, :attached_channels, :destinations, :id, :input_class, :input_devices, :input_partner_ids, :input_source_type, :media_connect_flows, :name, :role_arn, :security_groups, :sources, :state, :tags, :type, :srt_settings, :input_network_location, :multicast_settings, :smpte_2110_receiver_group_settings, :sdi_sources, :router_settings) SENSITIVE = [] include Aws::Structure end |
#smpte_2110_receiver_group_settings ⇒ Types::Smpte2110ReceiverGroupSettings
Include this parameter if the input is a SMPTE 2110 input, to identify the stream sources for this input.
6766 6767 6768 6769 6770 6771 6772 6773 6774 6775 6776 6777 6778 6779 6780 6781 6782 6783 6784 6785 6786 6787 6788 6789 6790 6791 |
# File 'gems/aws-sdk-medialive/lib/aws-sdk-medialive/types.rb', line 6766 class Input < Struct.new( :arn, :attached_channels, :destinations, :id, :input_class, :input_devices, :input_partner_ids, :input_source_type, :media_connect_flows, :name, :role_arn, :security_groups, :sources, :state, :tags, :type, :srt_settings, :input_network_location, :multicast_settings, :smpte_2110_receiver_group_settings, :sdi_sources, :router_settings) SENSITIVE = [] include Aws::Structure end |
#sources ⇒ Array<Types::InputSource>
A list of the sources of the input (PULL-type).
6766 6767 6768 6769 6770 6771 6772 6773 6774 6775 6776 6777 6778 6779 6780 6781 6782 6783 6784 6785 6786 6787 6788 6789 6790 6791 |
# File 'gems/aws-sdk-medialive/lib/aws-sdk-medialive/types.rb', line 6766 class Input < Struct.new( :arn, :attached_channels, :destinations, :id, :input_class, :input_devices, :input_partner_ids, :input_source_type, :media_connect_flows, :name, :role_arn, :security_groups, :sources, :state, :tags, :type, :srt_settings, :input_network_location, :multicast_settings, :smpte_2110_receiver_group_settings, :sdi_sources, :router_settings) SENSITIVE = [] include Aws::Structure end |
#srt_settings ⇒ Types::SrtSettings
The settings associated with an SRT input.
6766 6767 6768 6769 6770 6771 6772 6773 6774 6775 6776 6777 6778 6779 6780 6781 6782 6783 6784 6785 6786 6787 6788 6789 6790 6791 |
# File 'gems/aws-sdk-medialive/lib/aws-sdk-medialive/types.rb', line 6766 class Input < Struct.new( :arn, :attached_channels, :destinations, :id, :input_class, :input_devices, :input_partner_ids, :input_source_type, :media_connect_flows, :name, :role_arn, :security_groups, :sources, :state, :tags, :type, :srt_settings, :input_network_location, :multicast_settings, :smpte_2110_receiver_group_settings, :sdi_sources, :router_settings) SENSITIVE = [] include Aws::Structure end |
#state ⇒ String
6766 6767 6768 6769 6770 6771 6772 6773 6774 6775 6776 6777 6778 6779 6780 6781 6782 6783 6784 6785 6786 6787 6788 6789 6790 6791 |
# File 'gems/aws-sdk-medialive/lib/aws-sdk-medialive/types.rb', line 6766 class Input < Struct.new( :arn, :attached_channels, :destinations, :id, :input_class, :input_devices, :input_partner_ids, :input_source_type, :media_connect_flows, :name, :role_arn, :security_groups, :sources, :state, :tags, :type, :srt_settings, :input_network_location, :multicast_settings, :smpte_2110_receiver_group_settings, :sdi_sources, :router_settings) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Hash<String,String>
A collection of key-value pairs.
6766 6767 6768 6769 6770 6771 6772 6773 6774 6775 6776 6777 6778 6779 6780 6781 6782 6783 6784 6785 6786 6787 6788 6789 6790 6791 |
# File 'gems/aws-sdk-medialive/lib/aws-sdk-medialive/types.rb', line 6766 class Input < Struct.new( :arn, :attached_channels, :destinations, :id, :input_class, :input_devices, :input_partner_ids, :input_source_type, :media_connect_flows, :name, :role_arn, :security_groups, :sources, :state, :tags, :type, :srt_settings, :input_network_location, :multicast_settings, :smpte_2110_receiver_group_settings, :sdi_sources, :router_settings) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
The different types of inputs that AWS Elemental MediaLive supports.
6766 6767 6768 6769 6770 6771 6772 6773 6774 6775 6776 6777 6778 6779 6780 6781 6782 6783 6784 6785 6786 6787 6788 6789 6790 6791 |
# File 'gems/aws-sdk-medialive/lib/aws-sdk-medialive/types.rb', line 6766 class Input < Struct.new( :arn, :attached_channels, :destinations, :id, :input_class, :input_devices, :input_partner_ids, :input_source_type, :media_connect_flows, :name, :role_arn, :security_groups, :sources, :state, :tags, :type, :srt_settings, :input_network_location, :multicast_settings, :smpte_2110_receiver_group_settings, :sdi_sources, :router_settings) SENSITIVE = [] include Aws::Structure end |