#[non_exhaustive]pub struct UnlabelParameterVersionInput {
pub name: Option<String>,
pub parameter_version: Option<i64>,
pub labels: Option<Vec<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.name: Option<String>
The name of the parameter from which you want to delete one or more labels.
You can't enter the Amazon Resource Name (ARN) for a parameter, only the parameter name itself.
parameter_version: Option<i64>
The specific version of the parameter which you want to delete one or more labels from. If it isn't present, the call will fail.
labels: Option<Vec<String>>
One or more labels to delete from the specified parameter version.
Implementations§
source§impl UnlabelParameterVersionInput
impl UnlabelParameterVersionInput
sourcepub fn name(&self) -> Option<&str>
pub fn name(&self) -> Option<&str>
The name of the parameter from which you want to delete one or more labels.
You can't enter the Amazon Resource Name (ARN) for a parameter, only the parameter name itself.
sourcepub fn parameter_version(&self) -> Option<i64>
pub fn parameter_version(&self) -> Option<i64>
The specific version of the parameter which you want to delete one or more labels from. If it isn't present, the call will fail.
source§impl UnlabelParameterVersionInput
impl UnlabelParameterVersionInput
sourcepub fn builder() -> UnlabelParameterVersionInputBuilder
pub fn builder() -> UnlabelParameterVersionInputBuilder
Creates a new builder-style object to manufacture UnlabelParameterVersionInput
.
Trait Implementations§
source§impl Clone for UnlabelParameterVersionInput
impl Clone for UnlabelParameterVersionInput
source§fn clone(&self) -> UnlabelParameterVersionInput
fn clone(&self) -> UnlabelParameterVersionInput
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 UnlabelParameterVersionInput
impl Debug for UnlabelParameterVersionInput
source§impl PartialEq for UnlabelParameterVersionInput
impl PartialEq for UnlabelParameterVersionInput
source§fn eq(&self, other: &UnlabelParameterVersionInput) -> bool
fn eq(&self, other: &UnlabelParameterVersionInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for UnlabelParameterVersionInput
Auto Trait Implementations§
impl Freeze for UnlabelParameterVersionInput
impl RefUnwindSafe for UnlabelParameterVersionInput
impl Send for UnlabelParameterVersionInput
impl Sync for UnlabelParameterVersionInput
impl Unpin for UnlabelParameterVersionInput
impl UnwindSafe for UnlabelParameterVersionInput
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.