Interface CfnParameterGroupMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnParameterGroupMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.121.0 (build d7af9b9)",
date="2025-12-18T18:20:28.527Z")
@Stability(Stable)
public interface CfnParameterGroupMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnParameterGroupPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.mixins.preview.services.memorydb.mixins.*;
Object parameters;
CfnParameterGroupMixinProps cfnParameterGroupMixinProps = CfnParameterGroupMixinProps.builder()
.description("description")
.family("family")
.parameterGroupName("parameterGroupName")
.parameters(parameters)
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnParameterGroupMixinPropsstatic final classAn implementation forCfnParameterGroupMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringA description of the parameter group.default StringThe name of the parameter group family that this parameter group is compatible with.default StringThe name of the parameter group.default ObjectReturns the detailed parameter list for the parameter group.getTags()An array of key-value pairs to apply to this resource.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDescription
A description of the parameter group.- See Also:
-
getFamily
The name of the parameter group family that this parameter group is compatible with.- See Also:
-
getParameterGroupName
The name of the parameter group.- See Also:
-
getParameters
Returns the detailed parameter list for the parameter group.- See Also:
-
getTags
An array of key-value pairs to apply to this resource.For more information, see Tag .
- See Also:
-
builder
-