Show / Hide Table of Contents

Class CfnParameterGroupProps

Properties for defining a CfnParameterGroup.

Inheritance
object
CfnParameterGroupProps
Implements
ICfnParameterGroupProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.MemoryDB
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnParameterGroupProps : ICfnParameterGroupProps
Syntax (vb)
Public Class CfnParameterGroupProps Implements ICfnParameterGroupProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-memorydb-parametergroup.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.MemoryDB;

             var parameters;

             var cfnParameterGroupProps = new CfnParameterGroupProps {
                 Family = "family",
                 ParameterGroupName = "parameterGroupName",

                 // the properties below are optional
                 Description = "description",
                 Parameters = parameters,
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Synopsis

Constructors

CfnParameterGroupProps()

Properties for defining a CfnParameterGroup.

Properties

Description

A description of the parameter group.

Family

The name of the parameter group family that this parameter group is compatible with.

ParameterGroupName

The name of the parameter group.

Parameters

Returns the detailed parameter list for the parameter group.

Tags

An array of key-value pairs to apply to this resource.

Constructors

CfnParameterGroupProps()

Properties for defining a CfnParameterGroup.

public CfnParameterGroupProps()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-memorydb-parametergroup.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.MemoryDB;

             var parameters;

             var cfnParameterGroupProps = new CfnParameterGroupProps {
                 Family = "family",
                 ParameterGroupName = "parameterGroupName",

                 // the properties below are optional
                 Description = "description",
                 Parameters = parameters,
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Properties

Description

A description of the parameter group.

public string? Description { get; set; }
Property Value

string

Remarks

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

Family

The name of the parameter group family that this parameter group is compatible with.

public string Family { get; set; }
Property Value

string

Remarks

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

ParameterGroupName

The name of the parameter group.

public string ParameterGroupName { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-memorydb-parametergroup.html#cfn-memorydb-parametergroup-parametergroupname

Parameters

Returns the detailed parameter list for the parameter group.

public object? Parameters { get; set; }
Property Value

object

Remarks

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

Tags

An array of key-value pairs to apply to this resource.

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

ICfnTag[]

Remarks

For more information, see Tag .

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

Implements

ICfnParameterGroupProps
Back to top Generated by DocFX