Struct aws_sdk_timestreaminfluxdb::operation::create_db_parameter_group::CreateDbParameterGroupInput
source · #[non_exhaustive]pub struct CreateDbParameterGroupInput {
pub name: Option<String>,
pub description: Option<String>,
pub parameters: Option<Parameters>,
pub tags: Option<HashMap<String, String>>,
}
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.name: Option<String>
The name of the DB parameter group. The name must be unique per customer and per region.
description: Option<String>
A description of the DB parameter group.
parameters: Option<Parameters>
A list of the parameters that comprise the DB parameter group.
A list of key-value pairs to associate with the DB parameter group.
Implementations§
source§impl CreateDbParameterGroupInput
impl CreateDbParameterGroupInput
sourcepub fn name(&self) -> Option<&str>
pub fn name(&self) -> Option<&str>
The name of the DB parameter group. The name must be unique per customer and per region.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
A description of the DB parameter group.
sourcepub fn parameters(&self) -> Option<&Parameters>
pub fn parameters(&self) -> Option<&Parameters>
A list of the parameters that comprise the DB parameter group.
A list of key-value pairs to associate with the DB parameter group.
source§impl CreateDbParameterGroupInput
impl CreateDbParameterGroupInput
sourcepub fn builder() -> CreateDbParameterGroupInputBuilder
pub fn builder() -> CreateDbParameterGroupInputBuilder
Creates a new builder-style object to manufacture CreateDbParameterGroupInput
.
Trait Implementations§
source§impl Clone for CreateDbParameterGroupInput
impl Clone for CreateDbParameterGroupInput
source§fn clone(&self) -> CreateDbParameterGroupInput
fn clone(&self) -> CreateDbParameterGroupInput
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 CreateDbParameterGroupInput
impl Debug for CreateDbParameterGroupInput
source§impl PartialEq for CreateDbParameterGroupInput
impl PartialEq for CreateDbParameterGroupInput
source§fn eq(&self, other: &CreateDbParameterGroupInput) -> bool
fn eq(&self, other: &CreateDbParameterGroupInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for CreateDbParameterGroupInput
Auto Trait Implementations§
impl Freeze for CreateDbParameterGroupInput
impl RefUnwindSafe for CreateDbParameterGroupInput
impl Send for CreateDbParameterGroupInput
impl Sync for CreateDbParameterGroupInput
impl Unpin for CreateDbParameterGroupInput
impl UnwindSafe for CreateDbParameterGroupInput
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.