#[non_exhaustive]pub struct InputConfigurationRequest {
pub input_port: Option<i32>,
pub interface: Option<InterfaceRequest>,
}
Expand description
The transport parameters that you want to associate with an incoming 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.input_port: Option<i32>
The port that you want the flow to listen on for an incoming media stream.
interface: Option<InterfaceRequest>
The VPC interface that you want to use for the incoming media stream.
Implementations§
source§impl InputConfigurationRequest
impl InputConfigurationRequest
sourcepub fn input_port(&self) -> Option<i32>
pub fn input_port(&self) -> Option<i32>
The port that you want the flow to listen on for an incoming media stream.
sourcepub fn interface(&self) -> Option<&InterfaceRequest>
pub fn interface(&self) -> Option<&InterfaceRequest>
The VPC interface that you want to use for the incoming media stream.
source§impl InputConfigurationRequest
impl InputConfigurationRequest
sourcepub fn builder() -> InputConfigurationRequestBuilder
pub fn builder() -> InputConfigurationRequestBuilder
Creates a new builder-style object to manufacture InputConfigurationRequest
.
Trait Implementations§
source§impl Clone for InputConfigurationRequest
impl Clone for InputConfigurationRequest
source§fn clone(&self) -> InputConfigurationRequest
fn clone(&self) -> InputConfigurationRequest
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 Debug for InputConfigurationRequest
impl Debug for InputConfigurationRequest
source§impl PartialEq for InputConfigurationRequest
impl PartialEq for InputConfigurationRequest
source§fn eq(&self, other: &InputConfigurationRequest) -> bool
fn eq(&self, other: &InputConfigurationRequest) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for InputConfigurationRequest
Auto Trait Implementations§
impl RefUnwindSafe for InputConfigurationRequest
impl Send for InputConfigurationRequest
impl Sync for InputConfigurationRequest
impl Unpin for InputConfigurationRequest
impl UnwindSafe for InputConfigurationRequest
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