Show / Hide Table of Contents

Class CfnDBClusterParameterGroupProps

Properties for defining a CfnDBClusterParameterGroup.

Inheritance
System.Object
CfnDBClusterParameterGroupProps
Implements
ICfnDBClusterParameterGroupProps
Namespace: Amazon.CDK.AWS.DocDB
Assembly: Amazon.CDK.AWS.DocDB.dll
Syntax (csharp)
public class CfnDBClusterParameterGroupProps : Object, ICfnDBClusterParameterGroupProps
Syntax (vb)
Public Class CfnDBClusterParameterGroupProps
    Inherits Object
    Implements ICfnDBClusterParameterGroupProps
Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-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.DocDB;

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

Constructors

CfnDBClusterParameterGroupProps()

Properties

Description

The description for the cluster parameter group.

Family

The cluster parameter group family name.

Name

The name of the DB cluster parameter group.

Parameters

Provides a list of parameters for the cluster parameter group.

Tags

The tags to be assigned to the cluster parameter group.

Constructors

CfnDBClusterParameterGroupProps()

public CfnDBClusterParameterGroupProps()

Properties

Description

The description for the cluster parameter group.

public string Description { get; set; }
Property Value

System.String

Remarks

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

Family

The cluster parameter group family name.

public string Family { get; set; }
Property Value

System.String

Remarks

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

Name

The name of the DB cluster parameter group.

public string Name { get; set; }
Property Value

System.String

Remarks

Constraints:

    This value is stored as a lowercase string.
    

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

    Parameters

    Provides a list of parameters for the cluster parameter group.

    public object Parameters { get; set; }
    Property Value

    System.Object

    Remarks

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

    Tags

    The tags to be assigned to the cluster parameter group.

    public ICfnTag[] Tags { get; set; }
    Property Value

    ICfnTag[]

    Remarks

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

    Implements

    ICfnDBClusterParameterGroupProps
    Back to top Generated by DocFX