AWS SDK Version 3 for .NET
API Reference

AWS services or capabilities described in AWS Documentation may vary by region/location. Click Getting Started with Amazon AWS to see specific differences applicable to the China (Beijing) Region.

Container for the parameters to the CreateDBClusterSnapshot operation. Creates a snapshot of a DB cluster.

Inheritance Hierarchy

System.Object
  Amazon.Runtime.AmazonWebServiceRequest
    Amazon.Neptune.AmazonNeptuneRequest
      Amazon.Neptune.Model.CreateDBClusterSnapshotRequest

Namespace: Amazon.Neptune.Model
Assembly: AWSSDK.Neptune.dll
Version: 3.x.y.z

Syntax

C#
public class CreateDBClusterSnapshotRequest : AmazonNeptuneRequest
         IAmazonWebServiceRequest

The CreateDBClusterSnapshotRequest type exposes the following members

Constructors

Properties

NameTypeDescription
Public Property DBClusterIdentifier System.String

Gets and sets the property DBClusterIdentifier.

The identifier of the DB cluster to create a snapshot for. This parameter is not case-sensitive.

Constraints:

  • Must match the identifier of an existing DBCluster.

Example: my-cluster1

Public Property DBClusterSnapshotIdentifier System.String

Gets and sets the property DBClusterSnapshotIdentifier.

The identifier of the DB cluster snapshot. This parameter is stored as a lowercase string.

Constraints:

  • Must contain from 1 to 63 letters, numbers, or hyphens.

  • First character must be a letter.

  • Cannot end with a hyphen or contain two consecutive hyphens.

Example: my-cluster1-snapshot1

Public Property Tags System.Collections.Generic.List<Amazon.Neptune.Model.Tag>

Gets and sets the property Tags.

The tags to be assigned to the DB cluster snapshot.

Examples

This example creates a DB cluster snapshot.

To create a DB cluster snapshot


var response = client.CreateDBClusterSnapshot(new CreateDBClusterSnapshotRequest 
{
    DBClusterIdentifier = "mydbcluster",
    DBClusterSnapshotIdentifier = "mydbclustersnapshot"
});

DBClusterSnapshot dbClusterSnapshot = response.DBClusterSnapshot;

            

Version Information

.NET:
Supported in: 8.0 and newer, Core 3.1

.NET Standard:
Supported in: 2.0

.NET Framework:
Supported in: 4.5 and newer, 3.5