Show / Hide Table of Contents

Interface ICfnDBClusterParameterGroupProps

Properties for defining a CfnDBClusterParameterGroup.

Namespace: Amazon.CDK.AWS.Neptune
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ICfnDBClusterParameterGroupProps
Syntax (vb)
Public Interface ICfnDBClusterParameterGroupProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbclusterparametergroup.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.Neptune;

             var parameters;

             var cfnDBClusterParameterGroupProps = new CfnDBClusterParameterGroupProps {
                 Description = "description",
                 Family = "family",
                 Parameters = parameters,

                 // the properties below are optional
                 Name = "name",
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Synopsis

Properties

Description

Provides the customer-specified description for this DB cluster parameter group.

Family

Must be neptune1 for engine versions prior to 1.2.0.0 , or neptune1.2 for engine version 1.2.0.0 and higher.

Name

Provides the name of the DB cluster parameter group.

Parameters

The parameters to set for this DB cluster parameter group.

Tags

The tags that you want to attach to this parameter group.

Properties

Description

Provides the customer-specified description for this DB cluster parameter group.

string Description { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbclusterparametergroup.html#cfn-neptune-dbclusterparametergroup-description

Family

Must be neptune1 for engine versions prior to 1.2.0.0 , or neptune1.2 for engine version 1.2.0.0 and higher.

string Family { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbclusterparametergroup.html#cfn-neptune-dbclusterparametergroup-family

Name

Provides the name of the DB cluster parameter group.

string? Name { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbclusterparametergroup.html#cfn-neptune-dbclusterparametergroup-name

Parameters

The parameters to set for this DB cluster parameter group.

object Parameters { get; }
Property Value

object

Remarks

The parameters are expressed as a JSON object consisting of key-value pairs.

If you update the parameters, some interruption may occur depending on which parameters you update.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbclusterparametergroup.html#cfn-neptune-dbclusterparametergroup-parameters

Tags

The tags that you want to attach to this parameter group.

ICfnTag[]? Tags { get; }
Property Value

ICfnTag[]

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbclusterparametergroup.html#cfn-neptune-dbclusterparametergroup-tags

Back to top Generated by DocFX