@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:38.014Z") @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.docdb.*;
Object parameters;
CfnDBClusterParameterGroupProps cfnDBClusterParameterGroupProps = CfnDBClusterParameterGroupProps.builder()
.description("description")
.family("family")
.parameters(parameters)
// the properties below are optional
.name("name")
.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()
The description for the cluster parameter group.
|
String |
getFamily()
The cluster parameter group family name.
|
default String |
getName()
The name of the DB cluster parameter group.
|
Object |
getParameters()
Provides a list of parameters for the cluster parameter group.
|
default List<CfnTag> |
getTags()
The tags to be assigned to the cluster parameter group.
|
@Stability(value=Stable) @NotNull String getDescription()
@Stability(value=Stable) @NotNull String getFamily()
@Stability(value=Stable) @NotNull Object getParameters()
@Stability(value=Stable) @Nullable default String getName()
Constraints:
DBClusterParameterGroup .
This value is stored as a lowercase string.
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
@Stability(value=Stable) static CfnDBClusterParameterGroupProps.Builder builder()
Copyright © 2022. All rights reserved.