C# Class Amazon.RDS.Model.CreateDBSnapshotRequest

Container for the parameters to the CreateDBSnapshot operation. Creates a DBSnapshot. The source DBInstance must be in "available" state.
Inheritance: AmazonRDSRequest
Exibir arquivo Open project: aws/aws-sdk-net Class Usage Examples

Public Methods

Method Description
CreateDBSnapshotRequest ( ) : System

Empty constructor used to set properties independently even when a simple constructor is available

CreateDBSnapshotRequest ( string dbSnapshotIdentifier, string dbInstanceIdentifier ) : System

Instantiates CreateDBSnapshotRequest with the parameterized properties

Private Methods

Method Description
IsSetDBInstanceIdentifier ( ) : bool
IsSetDBSnapshotIdentifier ( ) : bool
IsSetTags ( ) : bool

Method Details

CreateDBSnapshotRequest() public method

Empty constructor used to set properties independently even when a simple constructor is available
public CreateDBSnapshotRequest ( ) : System
return System

CreateDBSnapshotRequest() public method

Instantiates CreateDBSnapshotRequest with the parameterized properties
public CreateDBSnapshotRequest ( string dbSnapshotIdentifier, string dbInstanceIdentifier ) : System
dbSnapshotIdentifier string The identifier for the DB snapshot. Constraints:
  • Cannot be null, empty, or blank
  • 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
Example: my-snapshot-id
dbInstanceIdentifier string The DB instance identifier. This is the unique key that identifies a DB instance. Constraints:
  • Must contain from 1 to 63 alphanumeric characters or hyphens
  • First character must be a letter
  • Cannot end with a hyphen or contain two consecutive hyphens
return System