@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:41.005Z") @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.neptune.*;
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()
Provides the customer-specified description for this DB cluster parameter group.
|
String |
getFamily()
Must be `neptune1` .
|
default String |
getName()
Provides the name of the DB cluster parameter group.
|
Object |
getParameters()
The parameters to set for this DB cluster parameter group.
|
default List<CfnTag> |
getTags()
The tags that you want to attach to this parameter group.
|
@Stability(value=Stable) @NotNull String getDescription()
@Stability(value=Stable) @NotNull String getFamily()
@Stability(value=Stable) @NotNull Object getParameters()
The parameters are expressed as a JSON object consisting of key-value pairs.
If you update the parameters, some interruption may occur depending on which parameters you update.
@Stability(value=Stable) @Nullable default String getName()
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
@Stability(value=Stable) static CfnDBClusterParameterGroupProps.Builder builder()
Copyright © 2022. All rights reserved.