#[non_exhaustive]pub struct DescribeClusterTracksInput {
pub maintenance_track_name: Option<String>,
pub max_records: Option<i32>,
pub marker: Option<String>,
}
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.maintenance_track_name: Option<String>
The name of the maintenance track.
max_records: Option<i32>
An integer value for the maximum number of maintenance tracks to return.
marker: Option<String>
An optional parameter that specifies the starting point to return a set of response records. When the results of a DescribeClusterTracks
request exceed the value specified in MaxRecords
, Amazon Redshift returns a value in the Marker
field of the response. You can retrieve the next set of response records by providing the returned marker value in the Marker
parameter and retrying the request.
Implementations§
source§impl DescribeClusterTracksInput
impl DescribeClusterTracksInput
sourcepub fn maintenance_track_name(&self) -> Option<&str>
pub fn maintenance_track_name(&self) -> Option<&str>
The name of the maintenance track.
sourcepub fn max_records(&self) -> Option<i32>
pub fn max_records(&self) -> Option<i32>
An integer value for the maximum number of maintenance tracks to return.
sourcepub fn marker(&self) -> Option<&str>
pub fn marker(&self) -> Option<&str>
An optional parameter that specifies the starting point to return a set of response records. When the results of a DescribeClusterTracks
request exceed the value specified in MaxRecords
, Amazon Redshift returns a value in the Marker
field of the response. You can retrieve the next set of response records by providing the returned marker value in the Marker
parameter and retrying the request.
source§impl DescribeClusterTracksInput
impl DescribeClusterTracksInput
sourcepub fn builder() -> DescribeClusterTracksInputBuilder
pub fn builder() -> DescribeClusterTracksInputBuilder
Creates a new builder-style object to manufacture DescribeClusterTracksInput
.
Trait Implementations§
source§impl Clone for DescribeClusterTracksInput
impl Clone for DescribeClusterTracksInput
source§fn clone(&self) -> DescribeClusterTracksInput
fn clone(&self) -> DescribeClusterTracksInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for DescribeClusterTracksInput
impl Debug for DescribeClusterTracksInput
source§impl PartialEq for DescribeClusterTracksInput
impl PartialEq for DescribeClusterTracksInput
source§fn eq(&self, other: &DescribeClusterTracksInput) -> bool
fn eq(&self, other: &DescribeClusterTracksInput) -> bool
self
and other
values to be equal, and is used
by ==
.