#[non_exhaustive]pub struct DestinationConfigurationRequest {
pub destination_ip: Option<String>,
pub destination_port: Option<i32>,
pub interface: Option<InterfaceRequest>,
}Expand description
The transport parameters that you want to associate with an outbound media stream.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.destination_ip: Option<String>The IP address where you want MediaConnect to send contents of the media stream.
destination_port: Option<i32>The port that you want MediaConnect to use when it distributes the media stream to the output.
interface: Option<InterfaceRequest>The VPC interface that you want to use for the media stream associated with the output.
Implementations§
source§impl DestinationConfigurationRequest
impl DestinationConfigurationRequest
sourcepub fn destination_ip(&self) -> Option<&str>
pub fn destination_ip(&self) -> Option<&str>
The IP address where you want MediaConnect to send contents of the media stream.
sourcepub fn destination_port(&self) -> Option<i32>
pub fn destination_port(&self) -> Option<i32>
The port that you want MediaConnect to use when it distributes the media stream to the output.
sourcepub fn interface(&self) -> Option<&InterfaceRequest>
pub fn interface(&self) -> Option<&InterfaceRequest>
The VPC interface that you want to use for the media stream associated with the output.
source§impl DestinationConfigurationRequest
impl DestinationConfigurationRequest
sourcepub fn builder() -> DestinationConfigurationRequestBuilder
pub fn builder() -> DestinationConfigurationRequestBuilder
Creates a new builder-style object to manufacture DestinationConfigurationRequest.
Trait Implementations§
source§impl Clone for DestinationConfigurationRequest
impl Clone for DestinationConfigurationRequest
source§fn clone(&self) -> DestinationConfigurationRequest
fn clone(&self) -> DestinationConfigurationRequest
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl PartialEq for DestinationConfigurationRequest
impl PartialEq for DestinationConfigurationRequest
source§fn eq(&self, other: &DestinationConfigurationRequest) -> bool
fn eq(&self, other: &DestinationConfigurationRequest) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DestinationConfigurationRequest
Auto Trait Implementations§
impl RefUnwindSafe for DestinationConfigurationRequest
impl Send for DestinationConfigurationRequest
impl Sync for DestinationConfigurationRequest
impl Unpin for DestinationConfigurationRequest
impl UnwindSafe for DestinationConfigurationRequest
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.