@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:41.361Z") @Stability(value=Stable) public interface CfnDBClusterParameterGroupProps extends software.amazon.jsii.JsiiSerializable
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.rds.*;
Object parameters;
CfnDBClusterParameterGroupProps cfnDBClusterParameterGroupProps = CfnDBClusterParameterGroupProps.builder()
.description("description")
.family("family")
.parameters(parameters)
// the properties below are optional
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnDBClusterParameterGroupProps.Builder
A builder for
CfnDBClusterParameterGroupProps |
static class |
CfnDBClusterParameterGroupProps.Jsii$Proxy
An implementation for
CfnDBClusterParameterGroupProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnDBClusterParameterGroupProps.Builder |
builder() |
String |
getDescription()
A friendly description for this DB cluster parameter group.
|
String |
getFamily()
The DB cluster parameter group family name.
|
Object |
getParameters()
Provides a list of parameters for the DB cluster parameter group.
|
default List<CfnTag> |
getTags()
Tags to assign to the DB cluster parameter group.
|
@Stability(value=Stable) @NotNull String getDescription()
@Stability(value=Stable) @NotNull String getFamily()
A DB cluster parameter group can be associated with one and only one DB cluster parameter group family, and can be applied only to a DB cluster running a DB engine and engine version compatible with that DB cluster parameter group family.
The DB cluster parameter group family can't be changed when updating a DB cluster parameter group.
To list all of the available parameter group families, use the following command:
aws rds describe-db-engine-versions --query "DBEngineVersions[].DBParameterGroupFamily"
The output contains duplicates.
For more information, see [CreateDBClusterParameterGroup](https://docs.aws.amazon.com//AmazonRDS/latest/APIReference/API_CreateDBClusterParameterGroup.html) .
@Stability(value=Stable) @NotNull Object getParameters()
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
@Stability(value=Stable) static CfnDBClusterParameterGroupProps.Builder builder()
Copyright © 2022. All rights reserved.