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 CopyDBClusterParameterGroup operation. Copies the specified DB cluster parameter group.

Inheritance Hierarchy

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

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

Syntax

C#
public class CopyDBClusterParameterGroupRequest : AmazonNeptuneRequest
         IAmazonWebServiceRequest

The CopyDBClusterParameterGroupRequest type exposes the following members

Constructors

Properties

NameTypeDescription
Public Property SourceDBClusterParameterGroupIdentifier System.String

Gets and sets the property SourceDBClusterParameterGroupIdentifier.

The identifier or Amazon Resource Name (ARN) for the source DB cluster parameter group. For information about creating an ARN, see Constructing an Amazon Resource Name (ARN).

Constraints:

  • Must specify a valid DB cluster parameter group.

  • If the source DB cluster parameter group is in the same Amazon Region as the copy, specify a valid DB parameter group identifier, for example my-db-cluster-param-group, or a valid ARN.

  • If the source DB parameter group is in a different Amazon Region than the copy, specify a valid DB cluster parameter group ARN, for example arn:aws:rds:us-east-1:123456789012:cluster-pg:custom-cluster-group1.

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

Gets and sets the property Tags.

The tags to be assigned to the copied DB cluster parameter group.

Public Property TargetDBClusterParameterGroupDescription System.String

Gets and sets the property TargetDBClusterParameterGroupDescription.

A description for the copied DB cluster parameter group.

Public Property TargetDBClusterParameterGroupIdentifier System.String

Gets and sets the property TargetDBClusterParameterGroupIdentifier.

The identifier for the copied DB cluster parameter group.

Constraints:

  • Cannot be null, empty, or blank

  • Must contain from 1 to 255 letters, numbers, or hyphens

  • First character must be a letter

  • Cannot end with a hyphen or contain two consecutive hyphens

Example: my-cluster-param-group1

Examples

This example copies a DB cluster parameter group.

To copy a DB cluster parameter group


var response = client.CopyDBClusterParameterGroup(new CopyDBClusterParameterGroupRequest 
{
    SourceDBClusterParameterGroupIdentifier = "mydbclusterparametergroup",
    TargetDBClusterParameterGroupDescription = "My DB cluster parameter group copy",
    TargetDBClusterParameterGroupIdentifier = "mydbclusterparametergroup-copy"
});

DBClusterParameterGroup dbClusterParameterGroup = response.DBClusterParameterGroup;

            

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