package awscdkneptunealpha // Marker class for cluster parameter group. // // Example: // clusterParams := neptune.NewClusterParameterGroup(this, jsii.String("ClusterParams"), &ClusterParameterGroupProps{ // Description: jsii.String("Cluster parameter group"), // Parameters: map[string]*string{ // "neptune_enable_audit_log": jsii.String("1"), // }, // }) // // dbParams := neptune.NewParameterGroup(this, jsii.String("DbParams"), &ParameterGroupProps{ // Description: jsii.String("Db parameter group"), // Parameters: map[string]*string{ // "neptune_query_timeout": jsii.String("120000"), // }, // }) // // cluster := neptune.NewDatabaseCluster(this, jsii.String("Database"), &DatabaseClusterProps{ // Vpc: Vpc, // InstanceType: neptune.InstanceType_R5_LARGE(), // ClusterParameterGroup: clusterParams, // ParameterGroup: dbParams, // }) // // Experimental. type ClusterParameterGroupProps struct { // The parameters in this parameter group. // Experimental. Parameters *map[string]*string `field:"required" json:"parameters" yaml:"parameters"` // The name of the parameter group. // Experimental. ClusterParameterGroupName *string `field:"optional" json:"clusterParameterGroupName" yaml:"clusterParameterGroupName"` // Description for this parameter group. // Experimental. Description *string `field:"optional" json:"description" yaml:"description"` // Parameter group family. // Experimental. Family ParameterGroupFamily `field:"optional" json:"family" yaml:"family"` }