pub struct DeleteParametersOutput {
pub deleted_parameters: Vec<String>,
pub invalid_parameters: Vec<String>,
}Expand description
Output for the DeleteParameters operation.
Fields§
§deleted_parameters: Vec<String>The names of parameters that were successfully deleted.
invalid_parameters: Vec<String>The names of parameters that could not be found.
Trait Implementations§
Source§impl Clone for DeleteParametersOutput
impl Clone for DeleteParametersOutput
Source§fn clone(&self) -> DeleteParametersOutput
fn clone(&self) -> DeleteParametersOutput
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 DeleteParametersOutput
impl Debug for DeleteParametersOutput
Source§impl Default for DeleteParametersOutput
impl Default for DeleteParametersOutput
Source§fn default() -> DeleteParametersOutput
fn default() -> DeleteParametersOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DeleteParametersOutput
impl<'de> Deserialize<'de> for DeleteParametersOutput
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 DeleteParametersOutput
impl RefUnwindSafe for DeleteParametersOutput
impl Send for DeleteParametersOutput
impl Sync for DeleteParametersOutput
impl Unpin for DeleteParametersOutput
impl UnsafeUnpin for DeleteParametersOutput
impl UnwindSafe for DeleteParametersOutput
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