pub struct DBClusterParameterGroup {
pub db_cluster_parameter_group_arn: Option<String>,
pub db_cluster_parameter_group_name: Option<String>,
pub db_parameter_group_family: Option<String>,
pub description: Option<String>,
}
Expand description
Detailed information about a cluster parameter group.
Fields§
§db_cluster_parameter_group_arn: Option<String>
The Amazon Resource Name (ARN) for the cluster parameter group.
db_cluster_parameter_group_name: Option<String>
Provides the name of the cluster parameter group.
db_parameter_group_family: Option<String>
Provides the name of the parameter group family that this cluster parameter group is compatible with.
description: Option<String>
Provides the customer-specified description for this cluster parameter group.
Trait Implementations§
Source§impl Clone for DBClusterParameterGroup
impl Clone for DBClusterParameterGroup
Source§fn clone(&self) -> DBClusterParameterGroup
fn clone(&self) -> DBClusterParameterGroup
Returns a duplicate 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 DBClusterParameterGroup
impl Debug for DBClusterParameterGroup
Source§impl Default for DBClusterParameterGroup
impl Default for DBClusterParameterGroup
Source§fn default() -> DBClusterParameterGroup
fn default() -> DBClusterParameterGroup
Returns the “default value” for a type. Read more
Source§impl PartialEq for DBClusterParameterGroup
impl PartialEq for DBClusterParameterGroup
impl StructuralPartialEq for DBClusterParameterGroup
Auto Trait Implementations§
impl Freeze for DBClusterParameterGroup
impl RefUnwindSafe for DBClusterParameterGroup
impl Send for DBClusterParameterGroup
impl Sync for DBClusterParameterGroup
impl Unpin for DBClusterParameterGroup
impl UnwindSafe for DBClusterParameterGroup
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