Amazon.RDS.Model.RestoreDBInstanceFromDBSnapshotRequest.RestoreDBInstanceFromDBSnapshotRequest C# (CSharp) Метод

RestoreDBInstanceFromDBSnapshotRequest() публичный Метод

Instantiates RestoreDBInstanceFromDBSnapshotRequest with the parameterized properties
public RestoreDBInstanceFromDBSnapshotRequest ( string dbInstanceIdentifier, string dbSnapshotIdentifier ) : System
dbInstanceIdentifier string Name of the DB instance to create from the DB snapshot. This parameter isn't case-sensitive. Constraints:
  • Must contain from 1 to 63 alphanumeric characters or hyphens (1 to 15 for SQL Server)
  • First character must be a letter
  • Cannot end with a hyphen or contain two consecutive hyphens
Example: my-snapshot-id
dbSnapshotIdentifier string The identifier for the DB snapshot to restore from. Constraints:
  • Must contain from 1 to 255 alphanumeric characters or hyphens
  • First character must be a letter
  • Cannot end with a hyphen or contain two consecutive hyphens
If you are restoring from a shared manual DB snapshot, the DBSnapshotIdentifier must be the ARN of the shared DB snapshot.
Результат System
        public RestoreDBInstanceFromDBSnapshotRequest(string dbInstanceIdentifier, string dbSnapshotIdentifier)
        {
            _dbInstanceIdentifier = dbInstanceIdentifier;
            _dbSnapshotIdentifier = dbSnapshotIdentifier;
        }

Same methods

RestoreDBInstanceFromDBSnapshotRequest::RestoreDBInstanceFromDBSnapshotRequest ( ) : System