#[non_exhaustive]pub struct DeleteRouteSettingsInput {
pub api_id: Option<String>,
pub route_key: Option<String>,
pub stage_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.api_id: Option<String>The API identifier.
route_key: Option<String>The route key.
stage_name: Option<String>The stage name. Stage names can only contain alphanumeric characters, hyphens, and underscores. Maximum length is 128 characters.
Implementations§
source§impl DeleteRouteSettingsInput
impl DeleteRouteSettingsInput
sourcepub fn builder() -> DeleteRouteSettingsInputBuilder
pub fn builder() -> DeleteRouteSettingsInputBuilder
Creates a new builder-style object to manufacture DeleteRouteSettingsInput.
Trait Implementations§
source§impl Clone for DeleteRouteSettingsInput
impl Clone for DeleteRouteSettingsInput
source§fn clone(&self) -> DeleteRouteSettingsInput
fn clone(&self) -> DeleteRouteSettingsInput
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 DeleteRouteSettingsInput
impl Debug for DeleteRouteSettingsInput
source§impl PartialEq for DeleteRouteSettingsInput
impl PartialEq for DeleteRouteSettingsInput
source§fn eq(&self, other: &DeleteRouteSettingsInput) -> bool
fn eq(&self, other: &DeleteRouteSettingsInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DeleteRouteSettingsInput
Auto Trait Implementations§
impl Freeze for DeleteRouteSettingsInput
impl RefUnwindSafe for DeleteRouteSettingsInput
impl Send for DeleteRouteSettingsInput
impl Sync for DeleteRouteSettingsInput
impl Unpin for DeleteRouteSettingsInput
impl UnwindSafe for DeleteRouteSettingsInput
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.