package awsdocdb import ( "github.com/aws/aws-cdk-go/awscdk/v2" ) // Properties for defining a `CfnDBClusterParameterGroup`. // // Example: // // The code below shows an example of how to instantiate this type. // // The values are placeholders you should change. // import "github.com/aws/aws-cdk-go/awscdk" // // var parameters interface{} // // cfnDBClusterParameterGroupProps := &CfnDBClusterParameterGroupProps{ // Description: jsii.String("description"), // Family: jsii.String("family"), // Parameters: parameters, // // // the properties below are optional // Name: jsii.String("name"), // Tags: []cfnTag{ // &cfnTag{ // Key: jsii.String("key"), // Value: jsii.String("value"), // }, // }, // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbclusterparametergroup.html // type CfnDBClusterParameterGroupProps struct { // The description for the cluster parameter group. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbclusterparametergroup.html#cfn-docdb-dbclusterparametergroup-description // Description *string `field:"required" json:"description" yaml:"description"` // The cluster parameter group family name. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbclusterparametergroup.html#cfn-docdb-dbclusterparametergroup-family // Family *string `field:"required" json:"family" yaml:"family"` // Provides a list of parameters for the cluster parameter group. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbclusterparametergroup.html#cfn-docdb-dbclusterparametergroup-parameters // Parameters interface{} `field:"required" json:"parameters" yaml:"parameters"` // The name of the DB cluster parameter group. // // Constraints: // // - Must not match the name of an existing `DBClusterParameterGroup` . // // > This value is stored as a lowercase string. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbclusterparametergroup.html#cfn-docdb-dbclusterparametergroup-name // Name *string `field:"optional" json:"name" yaml:"name"` // The tags to be assigned to the cluster parameter group. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-docdb-dbclusterparametergroup.html#cfn-docdb-dbclusterparametergroup-tags // Tags *[]*awscdk.CfnTag `field:"optional" json:"tags" yaml:"tags"` }