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
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) -> &[ClusterDbRevision]
pub fn cluster_db_revisions(&self) -> &[ClusterDbRevision]
A list of revisions.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .cluster_db_revisions.is_none()
.
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
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for DescribeClusterDbRevisionsOutput
impl PartialEq for DescribeClusterDbRevisionsOutput
source§fn eq(&self, other: &DescribeClusterDbRevisionsOutput) -> bool
fn eq(&self, other: &DescribeClusterDbRevisionsOutput) -> bool
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>
None
if the service could not be reached.