Skip to content

Commit

Permalink
feat(client-rds): Adding parameters to CreateCustomDbEngineVersion re…
Browse files Browse the repository at this point in the history
…served for future use.
  • Loading branch information
awstools committed Aug 22, 2023
1 parent d09e800 commit 8981d51
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 0 deletions.
Expand Up @@ -58,6 +58,8 @@ export interface CreateCustomDBEngineVersionCommandOutput extends DBEngineVersio
* Value: "STRING_VALUE",
* },
* ],
* SourceCustomDbEngineVersionIdentifier: "STRING_VALUE",
* UseAwsProvidedLatestImage: true || false,
* };
* const command = new CreateCustomDBEngineVersionCommand(input);
* const response = await client.send(command);
Expand Down
12 changes: 12 additions & 0 deletions clients/client-rds/src/models/models_0.ts
Expand Up @@ -3640,6 +3640,18 @@ export interface CreateCustomDBEngineVersionMessage {
* </p>
*/
Tags?: Tag[];

/**
* @public
* <p>Reserved for future use.</p>
*/
SourceCustomDbEngineVersionIdentifier?: string;

/**
* @public
* <p>Reserved for future use.</p>
*/
UseAwsProvidedLatestImage?: boolean;
}

/**
Expand Down
6 changes: 6 additions & 0 deletions clients/client-rds/src/protocols/Aws_query.ts
Expand Up @@ -13849,6 +13849,12 @@ const se_CreateCustomDBEngineVersionMessage = (
entries[loc] = value;
});
}
if (input.SourceCustomDbEngineVersionIdentifier != null) {
entries["SourceCustomDbEngineVersionIdentifier"] = input.SourceCustomDbEngineVersionIdentifier;
}
if (input.UseAwsProvidedLatestImage != null) {
entries["UseAwsProvidedLatestImage"] = input.UseAwsProvidedLatestImage;
}
return entries;
};

Expand Down
12 changes: 12 additions & 0 deletions codegen/sdk-codegen/aws-models/rds.json
Expand Up @@ -3687,6 +3687,18 @@
},
"Tags": {
"target": "com.amazonaws.rds#TagList"
},
"SourceCustomDbEngineVersionIdentifier": {
"target": "com.amazonaws.rds#String255",
"traits": {
"smithy.api#documentation": "<p>Reserved for future use.</p>"
}
},
"UseAwsProvidedLatestImage": {
"target": "com.amazonaws.rds#BooleanOptional",
"traits": {
"smithy.api#documentation": "<p>Reserved for future use.</p>"
}
}
},
"traits": {
Expand Down

0 comments on commit 8981d51

Please sign in to comment.