@Generated(value="jsii-pacmak/1.47.0 (build 86d2c33)", date="2021-12-22T10:27:18.823Z") @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.rds.*;
CfnDBParameterGroupProps cfnDBParameterGroupProps = CfnDBParameterGroupProps.builder()
.description("description")
.family("family")
// the properties below are optional
.parameters(Map.of(
"parametersKey", "parameters"))
.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()
`AWS::RDS::DBParameterGroup.Description`.
|
String |
getFamily()
`AWS::RDS::DBParameterGroup.Family`.
|
default Object |
getParameters()
`AWS::RDS::DBParameterGroup.Parameters`.
|
default List<CfnTag> |
getTags()
`AWS::RDS::DBParameterGroup.Tags`.
|
@Stability(value=Stable) @NotNull String getDescription()
@Stability(value=Stable) @NotNull String getFamily()
@Stability(value=Stable) @Nullable default Object getParameters()
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
@Stability(value=Stable) static CfnDBParameterGroupProps.Builder builder()
CfnDBParameterGroupProps.Builder of CfnDBParameterGroupPropsCopyright © 2021. All rights reserved.