Class: Aws::MediaConnect::Types::AddOutputRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::MediaConnect::Types::AddOutputRequest
- Defined in:
- gems/aws-sdk-mediaconnect/lib/aws-sdk-mediaconnect/types.rb
Overview
A request to add an output to a flow.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#cidr_allow_list ⇒ Array<String>
The range of IP addresses that should be allowed to initiate output requests to this flow.
-
#description ⇒ String
A description of the output.
-
#destination ⇒ String
The IP address from which video will be sent to output destinations.
-
#encryption ⇒ Types::Encryption
The type of key used for the encryption.
-
#max_latency ⇒ Integer
The maximum latency in milliseconds.
-
#media_stream_output_configurations ⇒ Array<Types::MediaStreamOutputConfigurationRequest>
The media streams that are associated with the output, and the parameters for those associations.
-
#min_latency ⇒ Integer
The minimum latency in milliseconds for SRT-based streams.
-
#name ⇒ String
The name of the output.
-
#ndi_program_name ⇒ String
A suffix for the names of the NDI sources that the flow creates.
-
#ndi_speed_hq_quality ⇒ Integer
A quality setting for the NDI Speed HQ encoder.
-
#output_status ⇒ String
An indication of whether the new output should be enabled or disabled as soon as it is created.
-
#output_tags ⇒ Hash<String,String>
The key-value pairs that can be used to tag and organize the output.
-
#port ⇒ Integer
The port to use when content is distributed to this output.
-
#protocol ⇒ String
The protocol to use for the output.
-
#remote_id ⇒ String
The remote ID for the Zixi-pull output stream.
-
#sender_control_port ⇒ Integer
The port that the flow uses to send outbound requests to initiate connection with the sender.
-
#smoothing_latency ⇒ Integer
The smoothing latency in milliseconds for RIST, RTP, and RTP-FEC streams.
-
#stream_id ⇒ String
The stream ID that you want to use for this transport.
-
#vpc_interface_attachment ⇒ Types::VpcInterfaceAttachment
The name of the VPC interface attachment to use for this output.
Instance Attribute Details
#cidr_allow_list ⇒ Array<String>
The range of IP addresses that should be allowed to initiate output requests to this flow. These IP addresses should be in the form of a Classless Inter-Domain Routing (CIDR) block; for example, 10.0.0.0/16.
607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 |
# File 'gems/aws-sdk-mediaconnect/lib/aws-sdk-mediaconnect/types.rb', line 607 class AddOutputRequest < Struct.new( :cidr_allow_list, :description, :destination, :encryption, :max_latency, :media_stream_output_configurations, :min_latency, :name, :port, :protocol, :remote_id, :sender_control_port, :smoothing_latency, :stream_id, :vpc_interface_attachment, :output_status, :ndi_speed_hq_quality, :ndi_program_name, :output_tags) SENSITIVE = [] include Aws::Structure end |
#description ⇒ String
A description of the output. This description appears only on the Audit Manager console and will not be seen by the end user.
607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 |
# File 'gems/aws-sdk-mediaconnect/lib/aws-sdk-mediaconnect/types.rb', line 607 class AddOutputRequest < Struct.new( :cidr_allow_list, :description, :destination, :encryption, :max_latency, :media_stream_output_configurations, :min_latency, :name, :port, :protocol, :remote_id, :sender_control_port, :smoothing_latency, :stream_id, :vpc_interface_attachment, :output_status, :ndi_speed_hq_quality, :ndi_program_name, :output_tags) SENSITIVE = [] include Aws::Structure end |
#destination ⇒ String
The IP address from which video will be sent to output destinations.
607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 |
# File 'gems/aws-sdk-mediaconnect/lib/aws-sdk-mediaconnect/types.rb', line 607 class AddOutputRequest < Struct.new( :cidr_allow_list, :description, :destination, :encryption, :max_latency, :media_stream_output_configurations, :min_latency, :name, :port, :protocol, :remote_id, :sender_control_port, :smoothing_latency, :stream_id, :vpc_interface_attachment, :output_status, :ndi_speed_hq_quality, :ndi_program_name, :output_tags) SENSITIVE = [] include Aws::Structure end |
#encryption ⇒ Types::Encryption
The type of key used for the encryption. If no keyType is provided, the service will use the default setting (static-key). Allowable encryption types: static-key.
607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 |
# File 'gems/aws-sdk-mediaconnect/lib/aws-sdk-mediaconnect/types.rb', line 607 class AddOutputRequest < Struct.new( :cidr_allow_list, :description, :destination, :encryption, :max_latency, :media_stream_output_configurations, :min_latency, :name, :port, :protocol, :remote_id, :sender_control_port, :smoothing_latency, :stream_id, :vpc_interface_attachment, :output_status, :ndi_speed_hq_quality, :ndi_program_name, :output_tags) SENSITIVE = [] include Aws::Structure end |
#max_latency ⇒ Integer
The maximum latency in milliseconds. This parameter applies only to RIST-based and Zixi-based streams.
607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 |
# File 'gems/aws-sdk-mediaconnect/lib/aws-sdk-mediaconnect/types.rb', line 607 class AddOutputRequest < Struct.new( :cidr_allow_list, :description, :destination, :encryption, :max_latency, :media_stream_output_configurations, :min_latency, :name, :port, :protocol, :remote_id, :sender_control_port, :smoothing_latency, :stream_id, :vpc_interface_attachment, :output_status, :ndi_speed_hq_quality, :ndi_program_name, :output_tags) SENSITIVE = [] include Aws::Structure end |
#media_stream_output_configurations ⇒ Array<Types::MediaStreamOutputConfigurationRequest>
The media streams that are associated with the output, and the parameters for those associations.
607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 |
# File 'gems/aws-sdk-mediaconnect/lib/aws-sdk-mediaconnect/types.rb', line 607 class AddOutputRequest < Struct.new( :cidr_allow_list, :description, :destination, :encryption, :max_latency, :media_stream_output_configurations, :min_latency, :name, :port, :protocol, :remote_id, :sender_control_port, :smoothing_latency, :stream_id, :vpc_interface_attachment, :output_status, :ndi_speed_hq_quality, :ndi_program_name, :output_tags) SENSITIVE = [] include Aws::Structure end |
#min_latency ⇒ Integer
The minimum latency in milliseconds for SRT-based streams. In streams that use the SRT protocol, this value that you set on your MediaConnect source or output represents the minimal potential latency of that connection. The latency of the stream is set to the highest number between the sender’s minimum latency and the receiver’s minimum latency.
607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 |
# File 'gems/aws-sdk-mediaconnect/lib/aws-sdk-mediaconnect/types.rb', line 607 class AddOutputRequest < Struct.new( :cidr_allow_list, :description, :destination, :encryption, :max_latency, :media_stream_output_configurations, :min_latency, :name, :port, :protocol, :remote_id, :sender_control_port, :smoothing_latency, :stream_id, :vpc_interface_attachment, :output_status, :ndi_speed_hq_quality, :ndi_program_name, :output_tags) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the output. This value must be unique within the current flow.
607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 |
# File 'gems/aws-sdk-mediaconnect/lib/aws-sdk-mediaconnect/types.rb', line 607 class AddOutputRequest < Struct.new( :cidr_allow_list, :description, :destination, :encryption, :max_latency, :media_stream_output_configurations, :min_latency, :name, :port, :protocol, :remote_id, :sender_control_port, :smoothing_latency, :stream_id, :vpc_interface_attachment, :output_status, :ndi_speed_hq_quality, :ndi_program_name, :output_tags) SENSITIVE = [] include Aws::Structure end |
#ndi_program_name ⇒ String
A suffix for the names of the NDI sources that the flow creates. If a custom name isn't specified, MediaConnect uses the output name.
607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 |
# File 'gems/aws-sdk-mediaconnect/lib/aws-sdk-mediaconnect/types.rb', line 607 class AddOutputRequest < Struct.new( :cidr_allow_list, :description, :destination, :encryption, :max_latency, :media_stream_output_configurations, :min_latency, :name, :port, :protocol, :remote_id, :sender_control_port, :smoothing_latency, :stream_id, :vpc_interface_attachment, :output_status, :ndi_speed_hq_quality, :ndi_program_name, :output_tags) SENSITIVE = [] include Aws::Structure end |
#ndi_speed_hq_quality ⇒ Integer
A quality setting for the NDI Speed HQ encoder.
607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 |
# File 'gems/aws-sdk-mediaconnect/lib/aws-sdk-mediaconnect/types.rb', line 607 class AddOutputRequest < Struct.new( :cidr_allow_list, :description, :destination, :encryption, :max_latency, :media_stream_output_configurations, :min_latency, :name, :port, :protocol, :remote_id, :sender_control_port, :smoothing_latency, :stream_id, :vpc_interface_attachment, :output_status, :ndi_speed_hq_quality, :ndi_program_name, :output_tags) SENSITIVE = [] include Aws::Structure end |
#output_status ⇒ String
An indication of whether the new output should be enabled or disabled as soon as it is created. If you don't specify the outputStatus field in your request, MediaConnect sets it to ENABLED.
607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 |
# File 'gems/aws-sdk-mediaconnect/lib/aws-sdk-mediaconnect/types.rb', line 607 class AddOutputRequest < Struct.new( :cidr_allow_list, :description, :destination, :encryption, :max_latency, :media_stream_output_configurations, :min_latency, :name, :port, :protocol, :remote_id, :sender_control_port, :smoothing_latency, :stream_id, :vpc_interface_attachment, :output_status, :ndi_speed_hq_quality, :ndi_program_name, :output_tags) SENSITIVE = [] include Aws::Structure end |
#output_tags ⇒ Hash<String,String>
The key-value pairs that can be used to tag and organize the output.
607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 |
# File 'gems/aws-sdk-mediaconnect/lib/aws-sdk-mediaconnect/types.rb', line 607 class AddOutputRequest < Struct.new( :cidr_allow_list, :description, :destination, :encryption, :max_latency, :media_stream_output_configurations, :min_latency, :name, :port, :protocol, :remote_id, :sender_control_port, :smoothing_latency, :stream_id, :vpc_interface_attachment, :output_status, :ndi_speed_hq_quality, :ndi_program_name, :output_tags) SENSITIVE = [] include Aws::Structure end |
#port ⇒ Integer
The port to use when content is distributed to this output.
607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 |
# File 'gems/aws-sdk-mediaconnect/lib/aws-sdk-mediaconnect/types.rb', line 607 class AddOutputRequest < Struct.new( :cidr_allow_list, :description, :destination, :encryption, :max_latency, :media_stream_output_configurations, :min_latency, :name, :port, :protocol, :remote_id, :sender_control_port, :smoothing_latency, :stream_id, :vpc_interface_attachment, :output_status, :ndi_speed_hq_quality, :ndi_program_name, :output_tags) SENSITIVE = [] include Aws::Structure end |
#protocol ⇒ String
The protocol to use for the output.
607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 |
# File 'gems/aws-sdk-mediaconnect/lib/aws-sdk-mediaconnect/types.rb', line 607 class AddOutputRequest < Struct.new( :cidr_allow_list, :description, :destination, :encryption, :max_latency, :media_stream_output_configurations, :min_latency, :name, :port, :protocol, :remote_id, :sender_control_port, :smoothing_latency, :stream_id, :vpc_interface_attachment, :output_status, :ndi_speed_hq_quality, :ndi_program_name, :output_tags) SENSITIVE = [] include Aws::Structure end |
#remote_id ⇒ String
The remote ID for the Zixi-pull output stream.
607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 |
# File 'gems/aws-sdk-mediaconnect/lib/aws-sdk-mediaconnect/types.rb', line 607 class AddOutputRequest < Struct.new( :cidr_allow_list, :description, :destination, :encryption, :max_latency, :media_stream_output_configurations, :min_latency, :name, :port, :protocol, :remote_id, :sender_control_port, :smoothing_latency, :stream_id, :vpc_interface_attachment, :output_status, :ndi_speed_hq_quality, :ndi_program_name, :output_tags) SENSITIVE = [] include Aws::Structure end |
#sender_control_port ⇒ Integer
The port that the flow uses to send outbound requests to initiate connection with the sender.
607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 |
# File 'gems/aws-sdk-mediaconnect/lib/aws-sdk-mediaconnect/types.rb', line 607 class AddOutputRequest < Struct.new( :cidr_allow_list, :description, :destination, :encryption, :max_latency, :media_stream_output_configurations, :min_latency, :name, :port, :protocol, :remote_id, :sender_control_port, :smoothing_latency, :stream_id, :vpc_interface_attachment, :output_status, :ndi_speed_hq_quality, :ndi_program_name, :output_tags) SENSITIVE = [] include Aws::Structure end |
#smoothing_latency ⇒ Integer
The smoothing latency in milliseconds for RIST, RTP, and RTP-FEC streams.
607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 |
# File 'gems/aws-sdk-mediaconnect/lib/aws-sdk-mediaconnect/types.rb', line 607 class AddOutputRequest < Struct.new( :cidr_allow_list, :description, :destination, :encryption, :max_latency, :media_stream_output_configurations, :min_latency, :name, :port, :protocol, :remote_id, :sender_control_port, :smoothing_latency, :stream_id, :vpc_interface_attachment, :output_status, :ndi_speed_hq_quality, :ndi_program_name, :output_tags) SENSITIVE = [] include Aws::Structure end |
#stream_id ⇒ String
The stream ID that you want to use for this transport. This parameter applies only to Zixi and SRT caller-based streams.
607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 |
# File 'gems/aws-sdk-mediaconnect/lib/aws-sdk-mediaconnect/types.rb', line 607 class AddOutputRequest < Struct.new( :cidr_allow_list, :description, :destination, :encryption, :max_latency, :media_stream_output_configurations, :min_latency, :name, :port, :protocol, :remote_id, :sender_control_port, :smoothing_latency, :stream_id, :vpc_interface_attachment, :output_status, :ndi_speed_hq_quality, :ndi_program_name, :output_tags) SENSITIVE = [] include Aws::Structure end |
#vpc_interface_attachment ⇒ Types::VpcInterfaceAttachment
The name of the VPC interface attachment to use for this output.
607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 |
# File 'gems/aws-sdk-mediaconnect/lib/aws-sdk-mediaconnect/types.rb', line 607 class AddOutputRequest < Struct.new( :cidr_allow_list, :description, :destination, :encryption, :max_latency, :media_stream_output_configurations, :min_latency, :name, :port, :protocol, :remote_id, :sender_control_port, :smoothing_latency, :stream_id, :vpc_interface_attachment, :output_status, :ndi_speed_hq_quality, :ndi_program_name, :output_tags) SENSITIVE = [] include Aws::Structure end |