Class: Aws::RDS::Types::DBClusterBacktrack
- Inherits:
-
Struct
- Object
- Struct
- Aws::RDS::Types::DBClusterBacktrack
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-rds/types.rb
Overview
This data type is used as a response element in the ‘DescribeDBClusterBacktracks` action.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#backtrack_identifier ⇒ String
Contains the backtrack identifier.
-
#backtrack_request_creation_time ⇒ Time
The timestamp of the time at which the backtrack was requested.
-
#backtrack_to ⇒ Time
The timestamp of the time to which the DB cluster was backtracked.
-
#backtracked_from ⇒ Time
The timestamp of the time from which the DB cluster was backtracked.
-
#db_cluster_identifier ⇒ String
Contains a user-supplied DB cluster identifier.
-
#status ⇒ String
The status of the backtrack.
Instance Attribute Details
#backtrack_identifier ⇒ String
Contains the backtrack identifier.
7647 7648 7649 7650 7651 7652 7653 7654 7655 7656 |
# File 'lib/aws-sdk-rds/types.rb', line 7647 class DBClusterBacktrack < Struct.new( :db_cluster_identifier, :backtrack_identifier, :backtrack_to, :backtracked_from, :backtrack_request_creation_time, :status) SENSITIVE = [] include Aws::Structure end |
#backtrack_request_creation_time ⇒ Time
The timestamp of the time at which the backtrack was requested.
7647 7648 7649 7650 7651 7652 7653 7654 7655 7656 |
# File 'lib/aws-sdk-rds/types.rb', line 7647 class DBClusterBacktrack < Struct.new( :db_cluster_identifier, :backtrack_identifier, :backtrack_to, :backtracked_from, :backtrack_request_creation_time, :status) SENSITIVE = [] include Aws::Structure end |
#backtrack_to ⇒ Time
The timestamp of the time to which the DB cluster was backtracked.
7647 7648 7649 7650 7651 7652 7653 7654 7655 7656 |
# File 'lib/aws-sdk-rds/types.rb', line 7647 class DBClusterBacktrack < Struct.new( :db_cluster_identifier, :backtrack_identifier, :backtrack_to, :backtracked_from, :backtrack_request_creation_time, :status) SENSITIVE = [] include Aws::Structure end |
#backtracked_from ⇒ Time
The timestamp of the time from which the DB cluster was backtracked.
7647 7648 7649 7650 7651 7652 7653 7654 7655 7656 |
# File 'lib/aws-sdk-rds/types.rb', line 7647 class DBClusterBacktrack < Struct.new( :db_cluster_identifier, :backtrack_identifier, :backtrack_to, :backtracked_from, :backtrack_request_creation_time, :status) SENSITIVE = [] include Aws::Structure end |
#db_cluster_identifier ⇒ String
Contains a user-supplied DB cluster identifier. This identifier is the unique key that identifies a DB cluster.
7647 7648 7649 7650 7651 7652 7653 7654 7655 7656 |
# File 'lib/aws-sdk-rds/types.rb', line 7647 class DBClusterBacktrack < Struct.new( :db_cluster_identifier, :backtrack_identifier, :backtrack_to, :backtracked_from, :backtrack_request_creation_time, :status) SENSITIVE = [] include Aws::Structure end |
#status ⇒ String
The status of the backtrack. This property returns one of the following values:
-
‘applying` - The backtrack is currently being applied to or rolled back from the DB cluster.
-
‘completed` - The backtrack has successfully been applied to or rolled back from the DB cluster.
-
‘failed` - An error occurred while the backtrack was applied to or rolled back from the DB cluster.
-
‘pending` - The backtrack is currently pending application to or rollback from the DB cluster.
7647 7648 7649 7650 7651 7652 7653 7654 7655 7656 |
# File 'lib/aws-sdk-rds/types.rb', line 7647 class DBClusterBacktrack < Struct.new( :db_cluster_identifier, :backtrack_identifier, :backtrack_to, :backtracked_from, :backtrack_request_creation_time, :status) SENSITIVE = [] include Aws::Structure end |