pub struct DBClusterSnapshotAttributesResult {
pub db_cluster_snapshot_attributes: Option<Vec<DBClusterSnapshotAttribute>>,
pub db_cluster_snapshot_identifier: Option<String>,
}
Expand description
Detailed information about the attributes that are associated with a cluster snapshot.
Fields§
§db_cluster_snapshot_attributes: Option<Vec<DBClusterSnapshotAttribute>>
The list of attributes and values for the cluster snapshot.
db_cluster_snapshot_identifier: Option<String>
The identifier of the cluster snapshot that the attributes apply to.
Trait Implementations§
Source§impl Clone for DBClusterSnapshotAttributesResult
impl Clone for DBClusterSnapshotAttributesResult
Source§fn clone(&self) -> DBClusterSnapshotAttributesResult
fn clone(&self) -> DBClusterSnapshotAttributesResult
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 Default for DBClusterSnapshotAttributesResult
impl Default for DBClusterSnapshotAttributesResult
Source§fn default() -> DBClusterSnapshotAttributesResult
fn default() -> DBClusterSnapshotAttributesResult
Returns the “default value” for a type. Read more
Source§impl PartialEq for DBClusterSnapshotAttributesResult
impl PartialEq for DBClusterSnapshotAttributesResult
Source§fn eq(&self, other: &DBClusterSnapshotAttributesResult) -> bool
fn eq(&self, other: &DBClusterSnapshotAttributesResult) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for DBClusterSnapshotAttributesResult
Auto Trait Implementations§
impl Freeze for DBClusterSnapshotAttributesResult
impl RefUnwindSafe for DBClusterSnapshotAttributesResult
impl Send for DBClusterSnapshotAttributesResult
impl Sync for DBClusterSnapshotAttributesResult
impl Unpin for DBClusterSnapshotAttributesResult
impl UnwindSafe for DBClusterSnapshotAttributesResult
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