Copyright | (c) 2013-2021 Brendan Hay |
---|---|
License | Mozilla Public License, v. 2.0. |
Maintainer | Brendan Hay <brendan.g.hay+amazonka@gmail.com> |
Stability | auto-generated |
Portability | non-portable (GHC extensions) |
Safe Haskell | None |
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.
This operation returns paginated results.
Synopsis
- data DescribeDBClusterBacktracks = DescribeDBClusterBacktracks' {
- backtrackIdentifier :: Maybe Text
- filters :: Maybe [Filter]
- marker :: Maybe Text
- maxRecords :: Maybe Int
- dbClusterIdentifier :: Text
- newDescribeDBClusterBacktracks :: Text -> DescribeDBClusterBacktracks
- describeDBClusterBacktracks_backtrackIdentifier :: Lens' DescribeDBClusterBacktracks (Maybe Text)
- describeDBClusterBacktracks_filters :: Lens' DescribeDBClusterBacktracks (Maybe [Filter])
- describeDBClusterBacktracks_marker :: Lens' DescribeDBClusterBacktracks (Maybe Text)
- describeDBClusterBacktracks_maxRecords :: Lens' DescribeDBClusterBacktracks (Maybe Int)
- describeDBClusterBacktracks_dbClusterIdentifier :: Lens' DescribeDBClusterBacktracks Text
- data DescribeDBClusterBacktracksResponse = DescribeDBClusterBacktracksResponse' {}
- newDescribeDBClusterBacktracksResponse :: Int -> DescribeDBClusterBacktracksResponse
- describeDBClusterBacktracksResponse_marker :: Lens' DescribeDBClusterBacktracksResponse (Maybe Text)
- describeDBClusterBacktracksResponse_dbClusterBacktracks :: Lens' DescribeDBClusterBacktracksResponse (Maybe [DBClusterBacktrack])
- describeDBClusterBacktracksResponse_httpStatus :: Lens' DescribeDBClusterBacktracksResponse Int
Creating a Request
data DescribeDBClusterBacktracks Source #
See: newDescribeDBClusterBacktracks
smart constructor.
DescribeDBClusterBacktracks' | |
|
Instances
newDescribeDBClusterBacktracks Source #
Create a value of DescribeDBClusterBacktracks
with all optional fields omitted.
Use generic-lens or optics to modify other optional fields.
The following record fields are available, with the corresponding lenses provided for backwards compatibility:
$sel:backtrackIdentifier:DescribeDBClusterBacktracks'
, describeDBClusterBacktracks_backtrackIdentifier
- 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
$sel:filters:DescribeDBClusterBacktracks'
, describeDBClusterBacktracks_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.
$sel:marker:DescribeDBClusterBacktracks'
, describeDBClusterBacktracks_marker
- 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
.
$sel:maxRecords:DescribeDBClusterBacktracks'
, describeDBClusterBacktracks_maxRecords
- 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.
$sel:dbClusterIdentifier:DescribeDBClusterBacktracks'
, describeDBClusterBacktracks_dbClusterIdentifier
- 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
Request Lenses
describeDBClusterBacktracks_backtrackIdentifier :: Lens' DescribeDBClusterBacktracks (Maybe Text) Source #
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
describeDBClusterBacktracks_filters :: Lens' DescribeDBClusterBacktracks (Maybe [Filter]) Source #
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.
describeDBClusterBacktracks_marker :: Lens' DescribeDBClusterBacktracks (Maybe Text) Source #
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
.
describeDBClusterBacktracks_maxRecords :: Lens' DescribeDBClusterBacktracks (Maybe Int) Source #
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.
describeDBClusterBacktracks_dbClusterIdentifier :: Lens' DescribeDBClusterBacktracks Text Source #
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
Destructuring the Response
data DescribeDBClusterBacktracksResponse Source #
Contains the result of a successful invocation of the
DescribeDBClusterBacktracks
action.
See: newDescribeDBClusterBacktracksResponse
smart constructor.
DescribeDBClusterBacktracksResponse' | |
|
Instances
newDescribeDBClusterBacktracksResponse Source #
Create a value of DescribeDBClusterBacktracksResponse
with all optional fields omitted.
Use generic-lens or optics to modify other optional fields.
The following record fields are available, with the corresponding lenses provided for backwards compatibility:
$sel:marker:DescribeDBClusterBacktracks'
, describeDBClusterBacktracksResponse_marker
- A pagination token that can be used in a later
DescribeDBClusterBacktracks
request.
$sel:dbClusterBacktracks:DescribeDBClusterBacktracksResponse'
, describeDBClusterBacktracksResponse_dbClusterBacktracks
- Contains a list of backtracks for the user.
$sel:httpStatus:DescribeDBClusterBacktracksResponse'
, describeDBClusterBacktracksResponse_httpStatus
- The response's http status code.
Response Lenses
describeDBClusterBacktracksResponse_marker :: Lens' DescribeDBClusterBacktracksResponse (Maybe Text) Source #
A pagination token that can be used in a later
DescribeDBClusterBacktracks
request.
describeDBClusterBacktracksResponse_dbClusterBacktracks :: Lens' DescribeDBClusterBacktracksResponse (Maybe [DBClusterBacktrack]) Source #
Contains a list of backtracks for the user.
describeDBClusterBacktracksResponse_httpStatus :: Lens' DescribeDBClusterBacktracksResponse Int Source #
The response's http status code.