pub struct DescribeDBClusterBacktracks { /* private fields */ }Expand description
Fluent builder constructing a request to DescribeDBClusterBacktracks.
Returns information about backtracks for a DB cluster.
For more information on Amazon Aurora, see What is Amazon Aurora? in the Amazon Aurora User Guide.
This action only applies to Aurora MySQL DB clusters.
Implementations
sourceimpl DescribeDBClusterBacktracks
impl DescribeDBClusterBacktracks
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<DescribeDBClusterBacktracks, AwsResponseRetryClassifier>, SdkError<DescribeDBClusterBacktracksError>>
pub async fn customize(
self
) -> Result<CustomizableOperation<DescribeDBClusterBacktracks, AwsResponseRetryClassifier>, SdkError<DescribeDBClusterBacktracksError>>
Consume this builder, creating a customizable operation that can be modified before being sent. The operation’s inner http::Request can be modified as well.
sourcepub async fn send(
self
) -> Result<DescribeDbClusterBacktracksOutput, SdkError<DescribeDBClusterBacktracksError>>
pub async fn send(
self
) -> Result<DescribeDbClusterBacktracksOutput, SdkError<DescribeDBClusterBacktracksError>>
Sends the request and returns the response.
If an error occurs, an SdkError will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn into_paginator(self) -> DescribeDbClusterBacktracksPaginator
pub fn into_paginator(self) -> DescribeDbClusterBacktracksPaginator
Create a paginator for this request
Paginators are used by calling send().await which returns a Stream.
sourcepub fn db_cluster_identifier(self, input: impl Into<String>) -> Self
pub fn db_cluster_identifier(self, input: impl Into<String>) -> Self
The DB cluster identifier of the DB cluster to be described. This parameter is stored as a lowercase string.
Constraints:
-
Must contain from 1 to 63 alphanumeric characters or hyphens.
-
First character must be a letter.
-
Can't end with a hyphen or contain two consecutive hyphens.
Example: my-cluster1
sourcepub fn set_db_cluster_identifier(self, input: Option<String>) -> Self
pub fn set_db_cluster_identifier(self, input: Option<String>) -> Self
The DB cluster identifier of the DB cluster to be described. This parameter is stored as a lowercase string.
Constraints:
-
Must contain from 1 to 63 alphanumeric characters or hyphens.
-
First character must be a letter.
-
Can't end with a hyphen or contain two consecutive hyphens.
Example: my-cluster1
sourcepub fn backtrack_identifier(self, input: impl Into<String>) -> Self
pub fn backtrack_identifier(self, input: impl Into<String>) -> Self
If specified, this value is the backtrack identifier of the backtrack to be described.
Constraints:
-
Must contain a valid universally unique identifier (UUID). For more information about UUIDs, see A Universally Unique Identifier (UUID) URN Namespace.
Example: 123e4567-e89b-12d3-a456-426655440000
sourcepub fn set_backtrack_identifier(self, input: Option<String>) -> Self
pub fn set_backtrack_identifier(self, input: Option<String>) -> Self
If specified, this value is the backtrack identifier of the backtrack to be described.
Constraints:
-
Must contain a valid universally unique identifier (UUID). For more information about UUIDs, see A Universally Unique Identifier (UUID) URN Namespace.
Example: 123e4567-e89b-12d3-a456-426655440000
sourcepub fn filters(self, input: Filter) -> Self
pub fn filters(self, input: Filter) -> Self
Appends an item to Filters.
To override the contents of this collection use set_filters.
A filter that specifies one or more DB clusters to describe. Supported filters include the following:
-
db-cluster-backtrack-id- Accepts backtrack identifiers. The results list includes information about only the backtracks identified by these identifiers. -
db-cluster-backtrack-status- Accepts any of the following backtrack status values:-
applying -
completed -
failed -
pending
The results list includes information about only the backtracks identified by these values.
-
sourcepub fn set_filters(self, input: Option<Vec<Filter>>) -> Self
pub fn set_filters(self, input: Option<Vec<Filter>>) -> Self
A filter that specifies one or more DB clusters to describe. Supported filters include the following:
-
db-cluster-backtrack-id- Accepts backtrack identifiers. The results list includes information about only the backtracks identified by these identifiers. -
db-cluster-backtrack-status- Accepts any of the following backtrack status values:-
applying -
completed -
failed -
pending
The results list includes information about only the backtracks identified by these values.
-
sourcepub fn max_records(self, input: i32) -> Self
pub fn max_records(self, input: i32) -> Self
The maximum number of records to include in the response. If more records exist than the specified MaxRecords value, a pagination token called a marker is included in the response so you can retrieve the remaining results.
Default: 100
Constraints: Minimum 20, maximum 100.
sourcepub fn set_max_records(self, input: Option<i32>) -> Self
pub fn set_max_records(self, input: Option<i32>) -> Self
The maximum number of records to include in the response. If more records exist than the specified MaxRecords value, a pagination token called a marker is included in the response so you can retrieve the remaining results.
Default: 100
Constraints: Minimum 20, maximum 100.
sourcepub fn marker(self, input: impl Into<String>) -> Self
pub fn marker(self, input: impl Into<String>) -> Self
An optional pagination token provided by a previous DescribeDBClusterBacktracks request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.
sourcepub fn set_marker(self, input: Option<String>) -> Self
pub fn set_marker(self, input: Option<String>) -> Self
An optional pagination token provided by a previous DescribeDBClusterBacktracks request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.
Trait Implementations
sourceimpl Clone for DescribeDBClusterBacktracks
impl Clone for DescribeDBClusterBacktracks
sourcefn clone(&self) -> DescribeDBClusterBacktracks
fn clone(&self) -> DescribeDBClusterBacktracks
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more