Class: Aws::Neptune::Types::DeleteDBInstanceMessage
- Inherits:
-
Struct
- Object
- Struct
- Aws::Neptune::Types::DeleteDBInstanceMessage
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-neptune/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#db_instance_identifier ⇒ String
The DB instance identifier for the DB instance to be deleted.
-
#final_db_snapshot_identifier ⇒ String
The DBSnapshotIdentifier of the new DBSnapshot created when SkipFinalSnapshot is set to ‘false`.
-
#skip_final_snapshot ⇒ Boolean
Determines whether a final DB snapshot is created before the DB instance is deleted.
Instance Attribute Details
#db_instance_identifier ⇒ String
The DB instance identifier for the DB instance to be deleted. This parameter isn’t case-sensitive.
Constraints:
-
Must match the name of an existing DB instance.
^
3677 3678 3679 3680 3681 3682 3683 |
# File 'lib/aws-sdk-neptune/types.rb', line 3677 class DeleteDBInstanceMessage < Struct.new( :db_instance_identifier, :skip_final_snapshot, :final_db_snapshot_identifier) SENSITIVE = [] include Aws::Structure end |
#final_db_snapshot_identifier ⇒ String
The DBSnapshotIdentifier of the new DBSnapshot created when SkipFinalSnapshot is set to ‘false`.
<note markdown=“1”> Specifying this parameter and also setting the SkipFinalShapshot parameter to true results in an error.
</note>
Constraints:
-
Must be 1 to 255 letters or numbers.
-
First character must be a letter
-
Cannot end with a hyphen or contain two consecutive hyphens
-
Cannot be specified when deleting a Read Replica.
3677 3678 3679 3680 3681 3682 3683 |
# File 'lib/aws-sdk-neptune/types.rb', line 3677 class DeleteDBInstanceMessage < Struct.new( :db_instance_identifier, :skip_final_snapshot, :final_db_snapshot_identifier) SENSITIVE = [] include Aws::Structure end |
#skip_final_snapshot ⇒ Boolean
Determines whether a final DB snapshot is created before the DB instance is deleted. If ‘true` is specified, no DBSnapshot is created. If `false` is specified, a DB snapshot is created before the DB instance is deleted.
Note that when a DB instance is in a failure state and has a status of ‘failed’, ‘incompatible-restore’, or ‘incompatible-network’, it can only be deleted when the SkipFinalSnapshot parameter is set to “true”.
Specify ‘true` when deleting a Read Replica.
<note markdown=“1”> The FinalDBSnapshotIdentifier parameter must be specified if SkipFinalSnapshot is ‘false`.
</note>
Default: ‘false`
3677 3678 3679 3680 3681 3682 3683 |
# File 'lib/aws-sdk-neptune/types.rb', line 3677 class DeleteDBInstanceMessage < Struct.new( :db_instance_identifier, :skip_final_snapshot, :final_db_snapshot_identifier) SENSITIVE = [] include Aws::Structure end |