pub struct LabelParameterVersionInput {
pub name: String,
pub parameter_version: Option<i64>,
pub labels: Vec<String>,
}Expand description
Input for the LabelParameterVersion operation.
Fields§
§name: StringThe parameter name.
parameter_version: Option<i64>The specific version to label. If omitted, the latest version is used.
labels: Vec<String>The labels to attach.
Trait Implementations§
Source§impl Clone for LabelParameterVersionInput
impl Clone for LabelParameterVersionInput
Source§fn clone(&self) -> LabelParameterVersionInput
fn clone(&self) -> LabelParameterVersionInput
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 LabelParameterVersionInput
impl Debug for LabelParameterVersionInput
Source§impl Default for LabelParameterVersionInput
impl Default for LabelParameterVersionInput
Source§fn default() -> LabelParameterVersionInput
fn default() -> LabelParameterVersionInput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LabelParameterVersionInput
impl<'de> Deserialize<'de> for LabelParameterVersionInput
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 LabelParameterVersionInput
impl RefUnwindSafe for LabelParameterVersionInput
impl Send for LabelParameterVersionInput
impl Sync for LabelParameterVersionInput
impl Unpin for LabelParameterVersionInput
impl UnsafeUnpin for LabelParameterVersionInput
impl UnwindSafe for LabelParameterVersionInput
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