@Generated(value="jsii-pacmak/1.50.0 (build d1830a4)", date="2022-01-04T15:39:13.539Z") @Stability(value=Experimental) 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()
(experimental) Description for this parameter group.
|
IEngine |
getEngine()
(experimental) The database engine for this parameter group.
|
default Map<String,String> |
getParameters()
(experimental) The parameters in this parameter group.
|
@Stability(value=Experimental) @NotNull IEngine getEngine()
@Stability(value=Experimental) @Nullable default String getDescription()
Default: a CDK generated description
@Stability(value=Experimental) @Nullable default Map<String,String> getParameters()
Default: - None
@Stability(value=Experimental) static ParameterGroupProps.Builder builder()
ParameterGroupProps.Builder of ParameterGroupPropsCopyright © 2022. All rights reserved.