logo
pub struct AddOutputRequest {
Show 14 fields pub cidr_allow_list: Option<Vec<String>>, pub description: Option<String>, pub destination: Option<String>, pub encryption: Option<Encryption>, pub max_latency: Option<i64>, pub media_stream_output_configurations: Option<Vec<MediaStreamOutputConfigurationRequest>>, pub min_latency: Option<i64>, pub name: Option<String>, pub port: Option<i64>, pub protocol: String, pub remote_id: Option<String>, pub smoothing_latency: Option<i64>, pub stream_id: Option<String>, pub vpc_interface_attachment: Option<VpcInterfaceAttachment>,
}
Expand description

The output that you want to add to this flow.

Fields

cidr_allow_list: Option<Vec<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.

description: Option<String>

A description of the output. This description appears only on the AWS Elemental MediaConnect console and will not be seen by the end user.

destination: Option<String>

The IP address from which video will be sent to output destinations.

encryption: Option<Encryption>

The type of key used for the encryption. If no keyType is provided, the service will use the default setting (static-key).

max_latency: Option<i64>

The maximum latency in milliseconds for Zixi-based streams.

media_stream_output_configurations: Option<Vec<MediaStreamOutputConfigurationRequest>>

The media streams that are associated with the output, and the parameters for those associations.

min_latency: Option<i64>

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.

name: Option<String>

The name of the output. This value must be unique within the current flow.

port: Option<i64>

The port to use when content is distributed to this output.

protocol: String

The protocol to use for the output.

remote_id: Option<String>

The remote ID for the Zixi-pull output stream.

smoothing_latency: Option<i64>

The smoothing latency in milliseconds for RIST, RTP, and RTP-FEC streams.

stream_id: Option<String>

The stream ID that you want to use for this transport. This parameter applies only to Zixi-based streams.

vpc_interface_attachment: Option<VpcInterfaceAttachment>

The name of the VPC interface attachment to use for this output.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more