@Generated(value="jsii-pacmak/1.47.0 (build 86d2c33)", date="2021-12-22T10:27:18.899Z") @Stability(value=Stable) public interface ParameterGroupProps 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.*;
IEngine engine;
ParameterGroupProps parameterGroupProps = ParameterGroupProps.builder()
.engine(engine)
// the properties below are optional
.description("description")
.parameters(Map.of(
"parametersKey", "parameters"))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
ParameterGroupProps.Builder
A builder for
ParameterGroupProps |
static class |
ParameterGroupProps.Jsii$Proxy
An implementation for
ParameterGroupProps |
| Modifier and Type | Method and Description |
|---|---|
static ParameterGroupProps.Builder |
builder() |
default String |
getDescription()
Description for this parameter group.
|
IEngine |
getEngine()
The database engine for this parameter group.
|
default Map<String,String> |
getParameters()
The parameters in this parameter group.
|
@Stability(value=Stable) @Nullable default String getDescription()
Default: a CDK generated description
@Stability(value=Stable) @NotNull IEngine getEngine()
@Stability(value=Stable) @Nullable default Map<String,String> getParameters()
Default: - None
@Stability(value=Stable) static ParameterGroupProps.Builder builder()
ParameterGroupProps.Builder of ParameterGroupPropsCopyright © 2021. All rights reserved.