pub struct UnlabelParameterVersionInput {
pub name: String,
pub parameter_version: i64,
pub labels: Vec<String>,
}Expand description
Input for the UnlabelParameterVersion operation.
Fields§
§name: StringThe parameter name.
parameter_version: i64The specific version to unlabel.
labels: Vec<String>The labels to remove.
Trait Implementations§
Source§impl Clone for UnlabelParameterVersionInput
impl Clone for UnlabelParameterVersionInput
Source§fn clone(&self) -> UnlabelParameterVersionInput
fn clone(&self) -> UnlabelParameterVersionInput
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 Default for UnlabelParameterVersionInput
impl Default for UnlabelParameterVersionInput
Source§fn default() -> UnlabelParameterVersionInput
fn default() -> UnlabelParameterVersionInput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UnlabelParameterVersionInput
impl<'de> Deserialize<'de> for UnlabelParameterVersionInput
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for UnlabelParameterVersionInput
impl RefUnwindSafe for UnlabelParameterVersionInput
impl Send for UnlabelParameterVersionInput
impl Sync for UnlabelParameterVersionInput
impl Unpin for UnlabelParameterVersionInput
impl UnsafeUnpin 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