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: