@Generated(value="jsii-pacmak/1.46.0 (build cd08c55)", date="2021-11-25T20:11:05.820Z") @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.docdb.*;
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()
`AWS::DocDB::DBClusterParameterGroup.Description`.
|
String |
getFamily()
`AWS::DocDB::DBClusterParameterGroup.Family`.
|
default String |
getName()
`AWS::DocDB::DBClusterParameterGroup.Name`.
|
Object |
getParameters()
`AWS::DocDB::DBClusterParameterGroup.Parameters`.
|
default List<CfnTag> |
getTags()
`AWS::DocDB::DBClusterParameterGroup.Tags`.
|
@Stability(value=Stable) @NotNull String getDescription()
@Stability(value=Stable) @NotNull String getFamily()
@Stability(value=Stable) @Nullable default String getName()
@Stability(value=Stable) @NotNull Object getParameters()
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
@Stability(value=Stable) static CfnDBClusterParameterGroupProps.Builder builder()
Copyright © 2021. All rights reserved.