#[non_exhaustive]pub struct UpdateBridgeOutputInput {
pub bridge_arn: Option<String>,
pub network_output: Option<UpdateBridgeNetworkOutputRequest>,
pub output_name: Option<String>,
}Expand description
The fields that you want to update in the bridge output.
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.bridge_arn: Option<String>The ARN of the bridge that you want to update.
network_output: Option<UpdateBridgeNetworkOutputRequest>Update an existing network output.
output_name: Option<String>The name of the bridge output that you want to update.
Implementations§
source§impl UpdateBridgeOutputInput
impl UpdateBridgeOutputInput
sourcepub fn bridge_arn(&self) -> Option<&str>
pub fn bridge_arn(&self) -> Option<&str>
The ARN of the bridge that you want to update.
sourcepub fn network_output(&self) -> Option<&UpdateBridgeNetworkOutputRequest>
pub fn network_output(&self) -> Option<&UpdateBridgeNetworkOutputRequest>
Update an existing network output.
sourcepub fn output_name(&self) -> Option<&str>
pub fn output_name(&self) -> Option<&str>
The name of the bridge output that you want to update.
source§impl UpdateBridgeOutputInput
impl UpdateBridgeOutputInput
sourcepub fn builder() -> UpdateBridgeOutputInputBuilder
pub fn builder() -> UpdateBridgeOutputInputBuilder
Creates a new builder-style object to manufacture UpdateBridgeOutputInput.
Trait Implementations§
source§impl Clone for UpdateBridgeOutputInput
impl Clone for UpdateBridgeOutputInput
source§fn clone(&self) -> UpdateBridgeOutputInput
fn clone(&self) -> UpdateBridgeOutputInput
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 UpdateBridgeOutputInput
impl Debug for UpdateBridgeOutputInput
source§impl PartialEq for UpdateBridgeOutputInput
impl PartialEq for UpdateBridgeOutputInput
source§fn eq(&self, other: &UpdateBridgeOutputInput) -> bool
fn eq(&self, other: &UpdateBridgeOutputInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for UpdateBridgeOutputInput
Auto Trait Implementations§
impl RefUnwindSafe for UpdateBridgeOutputInput
impl Send for UpdateBridgeOutputInput
impl Sync for UpdateBridgeOutputInput
impl Unpin for UpdateBridgeOutputInput
impl UnwindSafe for UpdateBridgeOutputInput
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.