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();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnDatabase.RelationalDatabaseParameterProperty
static final class
An implementation forCfnDatabase.RelationalDatabaseParameterProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default String
The valid range of values for the parameter.default String
Indicates when parameter updates are applied.default String
Specifies the engine-specific parameter type.default String
The valid data type of the parameter.default String
A description of the parameter.default Object
A Boolean value indicating whether the parameter can be modified.default String
The name of the parameter.default String
The 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.- See Also:
-
getApplyMethod
Indicates when parameter updates are applied.Can be
immediate
orpending-reboot
.- See Also:
-
getApplyType
Specifies the engine-specific parameter type.- See Also:
-
getDataType
The valid data type of the parameter.- See Also:
-
getDescription
A description of the parameter.- See Also:
-
getIsModifiable
A Boolean value indicating whether the parameter can be modified.- See Also:
-
getParameterName
The name of the parameter.- See Also:
-
getParameterValue
The value for the parameter.- See Also:
-
builder
-