@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:41.019Z") @Stability(value=Stable) public interface CfnDBParameterGroupProps 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;
CfnDBParameterGroupProps cfnDBParameterGroupProps = CfnDBParameterGroupProps.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 |
CfnDBParameterGroupProps.Builder
A builder for
CfnDBParameterGroupProps |
static class |
CfnDBParameterGroupProps.Jsii$Proxy
An implementation for
CfnDBParameterGroupProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnDBParameterGroupProps.Builder |
builder() |
String |
getDescription()
Provides the customer-specified description for this DB parameter group.
|
String |
getFamily()
Must be `neptune1` .
|
default String |
getName()
Provides the name of the DB parameter group.
|
Object |
getParameters()
The parameters to set for this DB 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.
Changes to dynamic parameters are applied immediately. During an update, if you have static parameters (whether they were changed or not), it triggers AWS CloudFormation to reboot the associated DB instance without failover.
@Stability(value=Stable) @Nullable default String getName()
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
@Stability(value=Stable) static CfnDBParameterGroupProps.Builder builder()
CfnDBParameterGroupProps.Builder of CfnDBParameterGroupPropsCopyright © 2022. All rights reserved.