Struct aws_sdk_redshift::input::DescribeClusterTracksInput [−][src]
#[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
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<DescribeClusterTracks, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<DescribeClusterTracks, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<DescribeClusterTracks
>
Creates a new builder-style object to manufacture DescribeClusterTracksInput
The name of the maintenance track.
An integer value for the maximum number of maintenance tracks to return.
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.
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for DescribeClusterTracksInput
impl Send for DescribeClusterTracksInput
impl Sync for DescribeClusterTracksInput
impl Unpin for DescribeClusterTracksInput
impl UnwindSafe for DescribeClusterTracksInput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more