Class: Aws::MediaLive::Types::SdiSourceMappingUpdateRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::MediaLive::Types::SdiSourceMappingUpdateRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-medialive/types.rb
Overview
Used in SdiSourceMappingsUpdateRequest. One SDI source mapping. It connects one logical SdiSource to the physical SDI card and port that the physical SDI source uses. You must specify all three parameters in this object.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#card_number ⇒ Integer
A number that uniquely identifies the SDI card on the node hardware.
-
#channel_number ⇒ Integer
A number that uniquely identifies a port on the card.
-
#sdi_source ⇒ String
The ID of a SDI source streaming on the given SDI capture card port.
Instance Attribute Details
#card_number ⇒ Integer
A number that uniquely identifies the SDI card on the node hardware. For information about how physical cards are identified on your node hardware, see the documentation for your node hardware. The numbering always starts at 1.
21560 21561 21562 21563 21564 21565 21566 |
# File 'lib/aws-sdk-medialive/types.rb', line 21560 class SdiSourceMappingUpdateRequest < Struct.new( :card_number, :channel_number, :sdi_source) SENSITIVE = [] include Aws::Structure end |
#channel_number ⇒ Integer
A number that uniquely identifies a port on the card. This must be an SDI port (not a timecode port, for example). For information about how ports are identified on physical cards, see the documentation for your node hardware.
21560 21561 21562 21563 21564 21565 21566 |
# File 'lib/aws-sdk-medialive/types.rb', line 21560 class SdiSourceMappingUpdateRequest < Struct.new( :card_number, :channel_number, :sdi_source) SENSITIVE = [] include Aws::Structure end |
#sdi_source ⇒ String
The ID of a SDI source streaming on the given SDI capture card port.
21560 21561 21562 21563 21564 21565 21566 |
# File 'lib/aws-sdk-medialive/types.rb', line 21560 class SdiSourceMappingUpdateRequest < Struct.new( :card_number, :channel_number, :sdi_source) SENSITIVE = [] include Aws::Structure end |