@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:40.964Z") @Stability(value=Stable) public interface CfnParameterGroupProps 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.memorydb.*;
Object parameters;
CfnParameterGroupProps cfnParameterGroupProps = CfnParameterGroupProps.builder()
.family("family")
.parameterGroupName("parameterGroupName")
// the properties below are optional
.description("description")
.parameters(parameters)
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnParameterGroupProps.Builder
A builder for
CfnParameterGroupProps |
static class |
CfnParameterGroupProps.Jsii$Proxy
An implementation for
CfnParameterGroupProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnParameterGroupProps.Builder |
builder() |
default String |
getDescription()
A description of the parameter group.
|
String |
getFamily()
The name of the parameter group family that this parameter group is compatible with.
|
String |
getParameterGroupName()
The name of the parameter group.
|
default Object |
getParameters()
Returns the detailed parameter list for the parameter group.
|
default List<CfnTag> |
getTags()
An array of key-value pairs to apply to this resource.
|
@Stability(value=Stable) @NotNull String getFamily()
@Stability(value=Stable) @NotNull String getParameterGroupName()
@Stability(value=Stable) @Nullable default String getDescription()
@Stability(value=Stable) @Nullable default Object getParameters()
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
For more information, see Tag .
@Stability(value=Stable) static CfnParameterGroupProps.Builder builder()
CfnParameterGroupProps.Builder of CfnParameterGroupPropsCopyright © 2022. All rights reserved.