Interface CfnDatabase.RelationalDatabaseParameterProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDatabase.RelationalDatabaseParameterProperty.Jsii$Proxy
- Enclosing class:
- CfnDatabase
@Stability(Stable)
public static interface CfnDatabase.RelationalDatabaseParameterProperty
extends software.amazon.jsii.JsiiSerializable
RelationalDatabaseParameter is a property of the AWS::Lightsail::Database resource. It describes parameters for the database.
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.lightsail.*;
RelationalDatabaseParameterProperty relationalDatabaseParameterProperty = RelationalDatabaseParameterProperty.builder()
.allowedValues("allowedValues")
.applyMethod("applyMethod")
.applyType("applyType")
.dataType("dataType")
.description("description")
.isModifiable(false)
.parameterName("parameterName")
.parameterValue("parameterValue")
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDatabase.RelationalDatabaseParameterPropertystatic final classAn implementation forCfnDatabase.RelationalDatabaseParameterProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe valid range of values for the parameter.default StringIndicates when parameter updates are applied.default StringSpecifies the engine-specific parameter type.default StringThe valid data type of the parameter.default StringA description of the parameter.default ObjectA Boolean value indicating whether the parameter can be modified.default StringThe name of the parameter.default StringThe value for the parameter.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAllowedValues
The valid range of values for the parameter. -
getApplyMethod
Indicates when parameter updates are applied.Can be
immediateorpending-reboot. -
getApplyType
Specifies the engine-specific parameter type. -
getDataType
The valid data type of the parameter. -
getDescription
A description of the parameter. -
getIsModifiable
A Boolean value indicating whether the parameter can be modified. -
getParameterName
The name of the parameter. -
getParameterValue
The value for the parameter. -
builder
-