Struct aws_sdk_redshift::operation::describe_cluster_tracks::builders::DescribeClusterTracksInputBuilder
source · #[non_exhaustive]pub struct DescribeClusterTracksInputBuilder { /* private fields */ }Expand description
A builder for DescribeClusterTracksInput.
Implementations§
source§impl DescribeClusterTracksInputBuilder
impl DescribeClusterTracksInputBuilder
sourcepub fn maintenance_track_name(self, input: impl Into<String>) -> Self
pub fn maintenance_track_name(self, input: impl Into<String>) -> Self
The name of the maintenance track.
sourcepub fn set_maintenance_track_name(self, input: Option<String>) -> Self
pub fn set_maintenance_track_name(self, input: Option<String>) -> Self
The name of the maintenance track.
sourcepub fn get_maintenance_track_name(&self) -> &Option<String>
pub fn get_maintenance_track_name(&self) -> &Option<String>
The name of the maintenance track.
sourcepub fn max_records(self, input: i32) -> Self
pub fn max_records(self, input: i32) -> Self
An integer value for the maximum number of maintenance tracks to return.
sourcepub fn set_max_records(self, input: Option<i32>) -> Self
pub fn set_max_records(self, input: Option<i32>) -> Self
An integer value for the maximum number of maintenance tracks to return.
sourcepub fn get_max_records(&self) -> &Option<i32>
pub fn get_max_records(&self) -> &Option<i32>
An integer value for the maximum number of maintenance tracks to return.
sourcepub fn marker(self, input: impl Into<String>) -> Self
pub fn marker(self, input: impl Into<String>) -> Self
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.
sourcepub fn set_marker(self, input: Option<String>) -> Self
pub fn set_marker(self, input: Option<String>) -> Self
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.
sourcepub fn get_marker(&self) -> &Option<String>
pub fn get_marker(&self) -> &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.
sourcepub fn build(self) -> Result<DescribeClusterTracksInput, BuildError>
pub fn build(self) -> Result<DescribeClusterTracksInput, BuildError>
Consumes the builder and constructs a DescribeClusterTracksInput.
source§impl DescribeClusterTracksInputBuilder
impl DescribeClusterTracksInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<DescribeClusterTracksOutput, SdkError<DescribeClusterTracksError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<DescribeClusterTracksOutput, SdkError<DescribeClusterTracksError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for DescribeClusterTracksInputBuilder
impl Clone for DescribeClusterTracksInputBuilder
source§fn clone(&self) -> DescribeClusterTracksInputBuilder
fn clone(&self) -> DescribeClusterTracksInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for DescribeClusterTracksInputBuilder
impl Default for DescribeClusterTracksInputBuilder
source§fn default() -> DescribeClusterTracksInputBuilder
fn default() -> DescribeClusterTracksInputBuilder
source§impl PartialEq for DescribeClusterTracksInputBuilder
impl PartialEq for DescribeClusterTracksInputBuilder
source§fn eq(&self, other: &DescribeClusterTracksInputBuilder) -> bool
fn eq(&self, other: &DescribeClusterTracksInputBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DescribeClusterTracksInputBuilder
Auto Trait Implementations§
impl Freeze for DescribeClusterTracksInputBuilder
impl RefUnwindSafe for DescribeClusterTracksInputBuilder
impl Send for DescribeClusterTracksInputBuilder
impl Sync for DescribeClusterTracksInputBuilder
impl Unpin for DescribeClusterTracksInputBuilder
impl UnwindSafe for DescribeClusterTracksInputBuilder
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> 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