Class CfnClusterParameterGroup
Describes a parameter group.
Inherited Members
Namespace: Amazon.CDK.AWS.Redshift
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnClusterParameterGroup : CfnResource, IInspectable, ITaggable
Syntax (vb)
Public Class CfnClusterParameterGroup
Inherits CfnResource
Implements IInspectable, ITaggable
Remarks
CloudformationResource: AWS::Redshift::ClusterParameterGroup
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.Redshift;
var cfnClusterParameterGroup = new CfnClusterParameterGroup(this, "MyCfnClusterParameterGroup", new CfnClusterParameterGroupProps {
Description = "description",
ParameterGroupFamily = "parameterGroupFamily",
// the properties below are optional
ParameterGroupName = "parameterGroupName",
Parameters = new [] { new ParameterProperty {
ParameterName = "parameterName",
ParameterValue = "parameterValue"
} },
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} }
});
Synopsis
Constructors
CfnClusterParameterGroup(ByRefValue) | Used by jsii to construct an instance of this class from a Javascript-owned object reference |
CfnClusterParameterGroup(DeputyBase.DeputyProps) | Used by jsii to construct an instance of this class from DeputyProps |
CfnClusterParameterGroup(Construct, String, ICfnClusterParameterGroupProps) |
Properties
CFN_RESOURCE_TYPE_NAME | The CloudFormation resource type name for this resource class. |
CfnProperties | |
Description | The description of the parameter group. |
ParameterGroupFamily | The name of the cluster parameter group family that this cluster parameter group is compatible with. |
ParameterGroupName | The name of the cluster parameter group. |
Parameters | An array of parameters to be modified. |
Tags | Tag Manager which manages the tags for this resource. |
TagsRaw | The list of tags for the cluster parameter group. |
Methods
Inspect(TreeInspector) | Examines the CloudFormation resource and discloses attributes. |
RenderProperties(IDictionary<String, Object>) |
Constructors
CfnClusterParameterGroup(ByRefValue)
Used by jsii to construct an instance of this class from a Javascript-owned object reference
protected CfnClusterParameterGroup(ByRefValue reference)
Parameters
- reference Amazon.JSII.Runtime.Deputy.ByRefValue
The Javascript-owned object reference
CfnClusterParameterGroup(DeputyBase.DeputyProps)
Used by jsii to construct an instance of this class from DeputyProps
protected CfnClusterParameterGroup(DeputyBase.DeputyProps props)
Parameters
- props Amazon.JSII.Runtime.Deputy.DeputyBase.DeputyProps
The deputy props
CfnClusterParameterGroup(Construct, String, ICfnClusterParameterGroupProps)
public CfnClusterParameterGroup(Construct scope, string id, ICfnClusterParameterGroupProps props)
Parameters
- scope Constructs.Construct
Scope in which this resource is defined.
- id System.String
Construct identifier for this resource (unique in its scope).
- props ICfnClusterParameterGroupProps
Resource properties.
Properties
CFN_RESOURCE_TYPE_NAME
The CloudFormation resource type name for this resource class.
public static string CFN_RESOURCE_TYPE_NAME { get; }
Property Value
System.String
CfnProperties
protected override IDictionary<string, object> CfnProperties { get; }
Property Value
System.Collections.Generic.IDictionary<System.String, System.Object>
Overrides
Description
The description of the parameter group.
public virtual string Description { get; set; }
Property Value
System.String
ParameterGroupFamily
The name of the cluster parameter group family that this cluster parameter group is compatible with.
public virtual string ParameterGroupFamily { get; set; }
Property Value
System.String
ParameterGroupName
The name of the cluster parameter group.
public virtual string ParameterGroupName { get; set; }
Property Value
System.String
Parameters
An array of parameters to be modified.
public virtual object Parameters { get; set; }
Property Value
System.Object
Remarks
A maximum of 20 parameters can be modified in a single request.
Tags
Tag Manager which manages the tags for this resource.
public virtual TagManager Tags { get; }
Property Value
TagsRaw
The list of tags for the cluster parameter group.
public virtual ICfnTag[] TagsRaw { get; set; }
Property Value
ICfnTag[]
Methods
Inspect(TreeInspector)
Examines the CloudFormation resource and discloses attributes.
public virtual void Inspect(TreeInspector inspector)
Parameters
- inspector TreeInspector
tree inspector to collect and process attributes.
RenderProperties(IDictionary<String, Object>)
protected override IDictionary<string, object> RenderProperties(IDictionary<string, object> props)
Parameters
- props System.Collections.Generic.IDictionary<System.String, System.Object>
Returns
System.Collections.Generic.IDictionary<System.String, System.Object>