Show / Hide Table of Contents

Class ClusterParameterGroup

A cluster parameter group.

Inheritance
object
Resource
ClusterParameterGroup
Implements
IClusterParameterGroup
IResource
IConstruct
IDependable
Inherited Members
Resource.IsOwnedResource(IConstruct)
Resource.IsResource(IConstruct)
Resource.ApplyRemovalPolicy(RemovalPolicy)
Resource.GeneratePhysicalName()
Resource.GetResourceArnAttribute(string, IArnComponents)
Resource.GetResourceNameAttribute(string)
Resource.Env
Resource.PhysicalName
Resource.Stack
Namespace: Amazon.CDK.AWS.DocDB
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class ClusterParameterGroup : Resource, IClusterParameterGroup, IResource, IConstruct, IDependable
Syntax (vb)
Public Class ClusterParameterGroup Inherits Resource Implements IClusterParameterGroup, IResource, IConstruct, IDependable
Remarks

Resource: AWS::DocDB::DBClusterParameterGroup

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 clusterParameterGroup = new ClusterParameterGroup(this, "MyClusterParameterGroup", new ClusterParameterGroupProps {
                 Family = "family",
                 Parameters = new Dictionary<string, string> {
                     { "parametersKey", "parameters" }
                 },

                 // the properties below are optional
                 DbClusterParameterGroupName = "dbClusterParameterGroupName",
                 Description = "description"
             });

Synopsis

Constructors

ClusterParameterGroup(Construct, string, IClusterParameterGroupProps)

A cluster parameter group.

Properties

PROPERTY_INJECTION_ID

Uniquely identifies this class.

ParameterGroupName

The name of the parameter group.

Methods

FromParameterGroupName(Construct, string, string)

Imports a parameter group.

Constructors

ClusterParameterGroup(Construct, string, IClusterParameterGroupProps)

A cluster parameter group.

public ClusterParameterGroup(Construct scope, string id, IClusterParameterGroupProps props)
Parameters
scope Construct
id string
props IClusterParameterGroupProps
Remarks

Resource: AWS::DocDB::DBClusterParameterGroup

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 clusterParameterGroup = new ClusterParameterGroup(this, "MyClusterParameterGroup", new ClusterParameterGroupProps {
                 Family = "family",
                 Parameters = new Dictionary<string, string> {
                     { "parametersKey", "parameters" }
                 },

                 // the properties below are optional
                 DbClusterParameterGroupName = "dbClusterParameterGroupName",
                 Description = "description"
             });

Properties

PROPERTY_INJECTION_ID

Uniquely identifies this class.

public static string PROPERTY_INJECTION_ID { get; }
Property Value

string

Remarks

Resource: AWS::DocDB::DBClusterParameterGroup

ExampleMetadata: fixture=_generated

ParameterGroupName

The name of the parameter group.

public virtual string ParameterGroupName { get; }
Property Value

string

Remarks

Resource: AWS::DocDB::DBClusterParameterGroup

ExampleMetadata: fixture=_generated

Methods

FromParameterGroupName(Construct, string, string)

Imports a parameter group.

public static IClusterParameterGroup FromParameterGroupName(Construct scope, string id, string parameterGroupName)
Parameters
scope Construct
id string
parameterGroupName string
Returns

IClusterParameterGroup

Remarks

Resource: AWS::DocDB::DBClusterParameterGroup

ExampleMetadata: fixture=_generated

Implements

IClusterParameterGroup
IResource
Constructs.IConstruct
Constructs.IDependable
Back to top Generated by DocFX