#[non_exhaustive]pub struct UpdateDestinationInput {
pub id: Option<String>,
pub name: Option<String>,
pub state: Option<DestinationState>,
pub additional_fixed_properties: 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.id: Option<String>Destination ARN.
name: Option<String>Human friendly name of the resource.
state: Option<DestinationState>State of the destination.
additional_fixed_properties: Option<String>JSON document containing additional fixed properties regarding the destination
Implementations§
source§impl UpdateDestinationInput
impl UpdateDestinationInput
sourcepub fn state(&self) -> Option<&DestinationState>
pub fn state(&self) -> Option<&DestinationState>
State of the destination.
sourcepub fn additional_fixed_properties(&self) -> Option<&str>
pub fn additional_fixed_properties(&self) -> Option<&str>
JSON document containing additional fixed properties regarding the destination
source§impl UpdateDestinationInput
impl UpdateDestinationInput
sourcepub fn builder() -> UpdateDestinationInputBuilder
pub fn builder() -> UpdateDestinationInputBuilder
Creates a new builder-style object to manufacture UpdateDestinationInput.
Trait Implementations§
source§impl Clone for UpdateDestinationInput
impl Clone for UpdateDestinationInput
source§fn clone(&self) -> UpdateDestinationInput
fn clone(&self) -> UpdateDestinationInput
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 UpdateDestinationInput
impl Debug for UpdateDestinationInput
source§impl PartialEq<UpdateDestinationInput> for UpdateDestinationInput
impl PartialEq<UpdateDestinationInput> for UpdateDestinationInput
source§fn eq(&self, other: &UpdateDestinationInput) -> bool
fn eq(&self, other: &UpdateDestinationInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for UpdateDestinationInput
Auto Trait Implementations§
impl RefUnwindSafe for UpdateDestinationInput
impl Send for UpdateDestinationInput
impl Sync for UpdateDestinationInput
impl Unpin for UpdateDestinationInput
impl UnwindSafe for UpdateDestinationInput
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