1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204
|
// Code generated by smithy-go-codegen DO NOT EDIT.
package rds
import (
"context"
awsmiddleware "github.com/aws/aws-sdk-go-v2/aws/middleware"
"github.com/aws/aws-sdk-go-v2/aws/signer/v4"
"github.com/aws/aws-sdk-go-v2/service/rds/types"
"github.com/aws/smithy-go/middleware"
smithyhttp "github.com/aws/smithy-go/transport/http"
)
// Creates a new DB parameter group. A DB parameter group is initially created with
// the default parameters for the database engine used by the DB instance. To
// provide custom values for any of the parameters, you must modify the group after
// creating it using ModifyDBParameterGroup. Once you've created a DB parameter
// group, you need to associate it with your DB instance using ModifyDBInstance.
// When you associate a new DB parameter group with a running DB instance, you need
// to reboot the DB instance without failover for the new DB parameter group and
// associated settings to take effect. This command doesn't apply to RDS Custom.
// After you create a DB parameter group, you should wait at least 5 minutes before
// creating your first DB instance that uses that DB parameter group as the default
// parameter group. This allows Amazon RDS to fully complete the create action
// before the parameter group is used as the default for a new DB instance. This is
// especially important for parameters that are critical when creating the default
// database for a DB instance, such as the character set for the default database
// defined by the character_set_database parameter. You can use the Parameter
// Groups option of the Amazon RDS console (https://console.aws.amazon.com/rds/) or
// the DescribeDBParameters command to verify that your DB parameter group has been
// created or modified.
func (c *Client) CreateDBParameterGroup(ctx context.Context, params *CreateDBParameterGroupInput, optFns ...func(*Options)) (*CreateDBParameterGroupOutput, error) {
if params == nil {
params = &CreateDBParameterGroupInput{}
}
result, metadata, err := c.invokeOperation(ctx, "CreateDBParameterGroup", params, optFns, c.addOperationCreateDBParameterGroupMiddlewares)
if err != nil {
return nil, err
}
out := result.(*CreateDBParameterGroupOutput)
out.ResultMetadata = metadata
return out, nil
}
type CreateDBParameterGroupInput struct {
// The DB parameter group family name. A DB parameter group can be associated with
// one and only one DB parameter group family, and can be applied only to a DB
// instance running a database engine and engine version compatible with that DB
// parameter group family. To list all of the available parameter group families
// for a DB engine, use the following command: aws rds describe-db-engine-versions
// --query "DBEngineVersions[].DBParameterGroupFamily" --engine For example, to
// list all of the available parameter group families for the MySQL DB engine, use
// the following command: aws rds describe-db-engine-versions --query
// "DBEngineVersions[].DBParameterGroupFamily" --engine mysql The output contains
// duplicates. The following are the valid DB engine values:
//
// * aurora (for MySQL
// 5.6-compatible Aurora)
//
// * aurora-mysql (for MySQL 5.7-compatible and MySQL
// 8.0-compatible Aurora)
//
// * aurora-postgresql
//
// * mariadb
//
// * mysql
//
// * oracle-ee
//
// *
// oracle-ee-cdb
//
// * oracle-se2
//
// * oracle-se2-cdb
//
// * postgres
//
// * sqlserver-ee
//
// *
// sqlserver-se
//
// * sqlserver-ex
//
// * sqlserver-web
//
// This member is required.
DBParameterGroupFamily *string
// The name of the DB parameter group. Constraints:
//
// * Must be 1 to 255 letters,
// numbers, or hyphens.
//
// * First character must be a letter
//
// * Can't end with a
// hyphen or contain two consecutive hyphens
//
// This value is stored as a lowercase
// string.
//
// This member is required.
DBParameterGroupName *string
// The description for the DB parameter group.
//
// This member is required.
Description *string
// Tags to assign to the DB parameter group.
Tags []types.Tag
noSmithyDocumentSerde
}
type CreateDBParameterGroupOutput struct {
// Contains the details of an Amazon RDS DB parameter group. This data type is used
// as a response element in the DescribeDBParameterGroups action.
DBParameterGroup *types.DBParameterGroup
// Metadata pertaining to the operation's result.
ResultMetadata middleware.Metadata
noSmithyDocumentSerde
}
func (c *Client) addOperationCreateDBParameterGroupMiddlewares(stack *middleware.Stack, options Options) (err error) {
err = stack.Serialize.Add(&awsAwsquery_serializeOpCreateDBParameterGroup{}, middleware.After)
if err != nil {
return err
}
err = stack.Deserialize.Add(&awsAwsquery_deserializeOpCreateDBParameterGroup{}, middleware.After)
if err != nil {
return err
}
if err = addSetLoggerMiddleware(stack, options); err != nil {
return err
}
if err = awsmiddleware.AddClientRequestIDMiddleware(stack); err != nil {
return err
}
if err = smithyhttp.AddComputeContentLengthMiddleware(stack); err != nil {
return err
}
if err = addResolveEndpointMiddleware(stack, options); err != nil {
return err
}
if err = v4.AddComputePayloadSHA256Middleware(stack); err != nil {
return err
}
if err = addRetryMiddlewares(stack, options); err != nil {
return err
}
if err = addHTTPSignerV4Middleware(stack, options); err != nil {
return err
}
if err = awsmiddleware.AddRawResponseToMetadata(stack); err != nil {
return err
}
if err = awsmiddleware.AddRecordResponseTiming(stack); err != nil {
return err
}
if err = addClientUserAgent(stack); err != nil {
return err
}
if err = smithyhttp.AddErrorCloseResponseBodyMiddleware(stack); err != nil {
return err
}
if err = smithyhttp.AddCloseResponseBodyMiddleware(stack); err != nil {
return err
}
if err = addOpCreateDBParameterGroupValidationMiddleware(stack); err != nil {
return err
}
if err = stack.Initialize.Add(newServiceMetadataMiddleware_opCreateDBParameterGroup(options.Region), middleware.Before); err != nil {
return err
}
if err = addRequestIDRetrieverMiddleware(stack); err != nil {
return err
}
if err = addResponseErrorMiddleware(stack); err != nil {
return err
}
if err = addRequestResponseLogging(stack, options); err != nil {
return err
}
return nil
}
func newServiceMetadataMiddleware_opCreateDBParameterGroup(region string) *awsmiddleware.RegisterServiceMetadata {
return &awsmiddleware.RegisterServiceMetadata{
Region: region,
ServiceID: ServiceID,
SigningName: "rds",
OperationName: "CreateDBParameterGroup",
}
}
|