pub struct ParameterGroup {
pub name: String,
pub family: String,
pub description: String,
pub arn: String,
pub parameters: BTreeMap<String, String>,
}Fields§
§name: String§family: String§description: String§arn: String§parameters: BTreeMap<String, String>Explicitly set (name -> value) parameter overrides.
Trait Implementations§
Source§impl Clone for ParameterGroup
impl Clone for ParameterGroup
Source§fn clone(&self) -> ParameterGroup
fn clone(&self) -> ParameterGroup
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 ParameterGroup
impl Debug for ParameterGroup
Source§impl<'de> Deserialize<'de> for ParameterGroup
impl<'de> Deserialize<'de> for ParameterGroup
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 ParameterGroup
impl RefUnwindSafe for ParameterGroup
impl Send for ParameterGroup
impl Sync for ParameterGroup
impl Unpin for ParameterGroup
impl UnsafeUnpin for ParameterGroup
impl UnwindSafe for ParameterGroup
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