#[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
impl StructuralPartialEq for DescribeClusterTracksInput
Auto Trait Implementations§
impl Freeze for DescribeClusterTracksInput
impl RefUnwindSafe for DescribeClusterTracksInput
impl Send for DescribeClusterTracksInput
impl Sync for DescribeClusterTracksInput
impl Unpin for DescribeClusterTracksInput
impl UnwindSafe for DescribeClusterTracksInput
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more