#[non_exhaustive]pub struct UpdateLiveSourceInput {
pub http_package_configurations: Option<Vec<HttpPackageConfiguration>>,
pub live_source_name: Option<String>,
pub source_location_name: Option<String>,
}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.http_package_configurations: Option<Vec<HttpPackageConfiguration>>A list of HTTP package configurations for the live source on this account.
live_source_name: Option<String>The name of the live source.
source_location_name: Option<String>The name of the source location associated with this Live Source.
Implementations§
source§impl UpdateLiveSourceInput
impl UpdateLiveSourceInput
sourcepub fn http_package_configurations(&self) -> &[HttpPackageConfiguration]
pub fn http_package_configurations(&self) -> &[HttpPackageConfiguration]
A list of HTTP package configurations for the live source on this account.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .http_package_configurations.is_none().
sourcepub fn live_source_name(&self) -> Option<&str>
pub fn live_source_name(&self) -> Option<&str>
The name of the live source.
sourcepub fn source_location_name(&self) -> Option<&str>
pub fn source_location_name(&self) -> Option<&str>
The name of the source location associated with this Live Source.
source§impl UpdateLiveSourceInput
impl UpdateLiveSourceInput
sourcepub fn builder() -> UpdateLiveSourceInputBuilder
pub fn builder() -> UpdateLiveSourceInputBuilder
Creates a new builder-style object to manufacture UpdateLiveSourceInput.
Trait Implementations§
source§impl Clone for UpdateLiveSourceInput
impl Clone for UpdateLiveSourceInput
source§fn clone(&self) -> UpdateLiveSourceInput
fn clone(&self) -> UpdateLiveSourceInput
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 UpdateLiveSourceInput
impl Debug for UpdateLiveSourceInput
source§impl PartialEq for UpdateLiveSourceInput
impl PartialEq for UpdateLiveSourceInput
source§fn eq(&self, other: &UpdateLiveSourceInput) -> bool
fn eq(&self, other: &UpdateLiveSourceInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for UpdateLiveSourceInput
Auto Trait Implementations§
impl RefUnwindSafe for UpdateLiveSourceInput
impl Send for UpdateLiveSourceInput
impl Sync for UpdateLiveSourceInput
impl Unpin for UpdateLiveSourceInput
impl UnwindSafe for UpdateLiveSourceInput
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.