Struct aws_sdk_redshift::operation::describe_cluster_db_revisions::DescribeClusterDbRevisionsOutput
source · #[non_exhaustive]pub struct DescribeClusterDbRevisionsOutput {
pub marker: Option<String>,
pub cluster_db_revisions: Option<Vec<ClusterDbRevision>>,
/* private fields */
}
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.marker: Option<String>
A string representing the starting point for the next set of revisions. If a value is returned in a response, you can retrieve the next set of revisions by providing the value in the marker
parameter and retrying the command. If the marker
field is empty, all revisions have already been returned.
cluster_db_revisions: Option<Vec<ClusterDbRevision>>
A list of revisions.
Implementations§
source§impl DescribeClusterDbRevisionsOutput
impl DescribeClusterDbRevisionsOutput
sourcepub fn marker(&self) -> Option<&str>
pub fn marker(&self) -> Option<&str>
A string representing the starting point for the next set of revisions. If a value is returned in a response, you can retrieve the next set of revisions by providing the value in the marker
parameter and retrying the command. If the marker
field is empty, all revisions have already been returned.
sourcepub fn cluster_db_revisions(&self) -> Option<&[ClusterDbRevision]>
pub fn cluster_db_revisions(&self) -> Option<&[ClusterDbRevision]>
A list of revisions.
source§impl DescribeClusterDbRevisionsOutput
impl DescribeClusterDbRevisionsOutput
sourcepub fn builder() -> DescribeClusterDbRevisionsOutputBuilder
pub fn builder() -> DescribeClusterDbRevisionsOutputBuilder
Creates a new builder-style object to manufacture DescribeClusterDbRevisionsOutput
.
Trait Implementations§
source§impl Clone for DescribeClusterDbRevisionsOutput
impl Clone for DescribeClusterDbRevisionsOutput
source§fn clone(&self) -> DescribeClusterDbRevisionsOutput
fn clone(&self) -> DescribeClusterDbRevisionsOutput
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 PartialEq<DescribeClusterDbRevisionsOutput> for DescribeClusterDbRevisionsOutput
impl PartialEq<DescribeClusterDbRevisionsOutput> for DescribeClusterDbRevisionsOutput
source§fn eq(&self, other: &DescribeClusterDbRevisionsOutput) -> bool
fn eq(&self, other: &DescribeClusterDbRevisionsOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for DescribeClusterDbRevisionsOutput
impl RequestId for DescribeClusterDbRevisionsOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None
if the service could not be reached.impl StructuralPartialEq for DescribeClusterDbRevisionsOutput
Auto Trait Implementations§
impl RefUnwindSafe for DescribeClusterDbRevisionsOutput
impl Send for DescribeClusterDbRevisionsOutput
impl Sync for DescribeClusterDbRevisionsOutput
impl Unpin for DescribeClusterDbRevisionsOutput
impl UnwindSafe for DescribeClusterDbRevisionsOutput
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