#[non_exhaustive]pub struct CopyDbParameterGroupInput {
pub source_db_parameter_group_identifier: Option<String>,
pub target_db_parameter_group_identifier: Option<String>,
pub target_db_parameter_group_description: Option<String>,
pub tags: Option<Vec<Tag>>,
}Expand description
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.source_db_parameter_group_identifier: Option<String>The identifier or ARN for the source DB parameter group. For information about creating an ARN, see Constructing an ARN for Amazon RDS in the Amazon RDS User Guide.
Constraints:
-
Must specify a valid DB parameter group.
target_db_parameter_group_identifier: Option<String>The identifier for the copied DB parameter group.
Constraints:
-
Can't be null, empty, or blank
-
Must contain from 1 to 255 letters, numbers, or hyphens
-
First character must be a letter
-
Can't end with a hyphen or contain two consecutive hyphens
Example: my-db-parameter-group
target_db_parameter_group_description: Option<String>A description for the copied DB parameter group.
A list of tags. For more information, see Tagging Amazon RDS Resources in the Amazon RDS User Guide.
Implementations§
source§impl CopyDbParameterGroupInput
impl CopyDbParameterGroupInput
sourcepub fn source_db_parameter_group_identifier(&self) -> Option<&str>
pub fn source_db_parameter_group_identifier(&self) -> Option<&str>
The identifier or ARN for the source DB parameter group. For information about creating an ARN, see Constructing an ARN for Amazon RDS in the Amazon RDS User Guide.
Constraints:
-
Must specify a valid DB parameter group.
sourcepub fn target_db_parameter_group_identifier(&self) -> Option<&str>
pub fn target_db_parameter_group_identifier(&self) -> Option<&str>
The identifier for the copied DB parameter group.
Constraints:
-
Can't be null, empty, or blank
-
Must contain from 1 to 255 letters, numbers, or hyphens
-
First character must be a letter
-
Can't end with a hyphen or contain two consecutive hyphens
Example: my-db-parameter-group
sourcepub fn target_db_parameter_group_description(&self) -> Option<&str>
pub fn target_db_parameter_group_description(&self) -> Option<&str>
A description for the copied DB parameter group.
A list of tags. For more information, see Tagging Amazon RDS Resources in the Amazon RDS User Guide.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .tags.is_none().
source§impl CopyDbParameterGroupInput
impl CopyDbParameterGroupInput
sourcepub fn builder() -> CopyDbParameterGroupInputBuilder
pub fn builder() -> CopyDbParameterGroupInputBuilder
Creates a new builder-style object to manufacture CopyDbParameterGroupInput.
Trait Implementations§
source§impl Clone for CopyDbParameterGroupInput
impl Clone for CopyDbParameterGroupInput
source§fn clone(&self) -> CopyDbParameterGroupInput
fn clone(&self) -> CopyDbParameterGroupInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for CopyDbParameterGroupInput
impl Debug for CopyDbParameterGroupInput
source§impl PartialEq for CopyDbParameterGroupInput
impl PartialEq for CopyDbParameterGroupInput
source§fn eq(&self, other: &CopyDbParameterGroupInput) -> bool
fn eq(&self, other: &CopyDbParameterGroupInput) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for CopyDbParameterGroupInput
Auto Trait Implementations§
impl Freeze for CopyDbParameterGroupInput
impl RefUnwindSafe for CopyDbParameterGroupInput
impl Send for CopyDbParameterGroupInput
impl Sync for CopyDbParameterGroupInput
impl Unpin for CopyDbParameterGroupInput
impl UnwindSafe for CopyDbParameterGroupInput
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)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>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more