Class: Aws::RDS::Types::StopDBInstanceMessage
- Inherits:
-
Struct
- Object
- Struct
- Aws::RDS::Types::StopDBInstanceMessage
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-rds/types.rb
Overview
Note:
When making an API call, you may pass StopDBInstanceMessage data as a hash:
{
db_instance_identifier: "String", # required
db_snapshot_identifier: "String",
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#db_instance_identifier ⇒ String
The user-supplied instance identifier.
-
#db_snapshot_identifier ⇒ String
The user-supplied instance identifier of the DB Snapshot created immediately before the DB instance is stopped.
Instance Attribute Details
#db_instance_identifier ⇒ String
The user-supplied instance identifier.
23434 23435 23436 23437 23438 23439 |
# File 'lib/aws-sdk-rds/types.rb', line 23434 class StopDBInstanceMessage < Struct.new( :db_instance_identifier, :db_snapshot_identifier) SENSITIVE = [] include Aws::Structure end |
#db_snapshot_identifier ⇒ String
The user-supplied instance identifier of the DB Snapshot created immediately before the DB instance is stopped.
23434 23435 23436 23437 23438 23439 |
# File 'lib/aws-sdk-rds/types.rb', line 23434 class StopDBInstanceMessage < Struct.new( :db_instance_identifier, :db_snapshot_identifier) SENSITIVE = [] include Aws::Structure end |