@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:38.020Z") @Stability(value=Stable) public interface ClusterParameterGroupProps 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.docdb.*;
ClusterParameterGroupProps clusterParameterGroupProps = ClusterParameterGroupProps.builder()
.family("family")
.parameters(Map.of(
"parametersKey", "parameters"))
// the properties below are optional
.dbClusterParameterGroupName("dbClusterParameterGroupName")
.description("description")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
ClusterParameterGroupProps.Builder
A builder for
ClusterParameterGroupProps |
static class |
ClusterParameterGroupProps.Jsii$Proxy
An implementation for
ClusterParameterGroupProps |
| Modifier and Type | Method and Description |
|---|---|
static ClusterParameterGroupProps.Builder |
builder() |
default String |
getDbClusterParameterGroupName()
The name of the cluster parameter group.
|
default String |
getDescription()
Description for this parameter group.
|
String |
getFamily()
Database family of this parameter group.
|
Map<String,String> |
getParameters()
The parameters in this parameter group.
|
@Stability(value=Stable) @NotNull String getFamily()
@Stability(value=Stable) @NotNull Map<String,String> getParameters()
@Stability(value=Stable) @Nullable default String getDbClusterParameterGroupName()
Default: A CDK generated name for the cluster parameter group
@Stability(value=Stable) @Nullable default String getDescription()
Default: a CDK generated description
@Stability(value=Stable) static ClusterParameterGroupProps.Builder builder()
ClusterParameterGroupProps.Builder of ClusterParameterGroupPropsCopyright © 2022. All rights reserved.