#[non_exhaustive]pub struct DbParameterGroupSummary {
pub id: String,
pub name: String,
pub arn: String,
pub description: Option<String>,
}
Expand description
Contains a summary of a DB parameter group.
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.id: String
A service-generated unique identifier.
name: String
This customer-supplied name uniquely identifies the parameter group.
arn: String
The Amazon Resource Name (ARN) of the DB parameter group.
description: Option<String>
A description of the DB parameter group.
Implementations§
source§impl DbParameterGroupSummary
impl DbParameterGroupSummary
source§impl DbParameterGroupSummary
impl DbParameterGroupSummary
sourcepub fn builder() -> DbParameterGroupSummaryBuilder
pub fn builder() -> DbParameterGroupSummaryBuilder
Creates a new builder-style object to manufacture DbParameterGroupSummary
.
Trait Implementations§
source§impl Clone for DbParameterGroupSummary
impl Clone for DbParameterGroupSummary
source§fn clone(&self) -> DbParameterGroupSummary
fn clone(&self) -> DbParameterGroupSummary
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 DbParameterGroupSummary
impl Debug for DbParameterGroupSummary
source§impl PartialEq for DbParameterGroupSummary
impl PartialEq for DbParameterGroupSummary
source§fn eq(&self, other: &DbParameterGroupSummary) -> bool
fn eq(&self, other: &DbParameterGroupSummary) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for DbParameterGroupSummary
Auto Trait Implementations§
impl Freeze for DbParameterGroupSummary
impl RefUnwindSafe for DbParameterGroupSummary
impl Send for DbParameterGroupSummary
impl Sync for DbParameterGroupSummary
impl Unpin for DbParameterGroupSummary
impl UnwindSafe for DbParameterGroupSummary
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.