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();
 
  • Method Details

    • getAllowedValues

      @Stability(Stable) @Nullable default String getAllowedValues()
      The valid range of values for the parameter.
    • getApplyMethod

      @Stability(Stable) @Nullable default String getApplyMethod()
      Indicates when parameter updates are applied.

      Can be immediate or pending-reboot .

    • getApplyType

      @Stability(Stable) @Nullable default String getApplyType()
      Specifies the engine-specific parameter type.
    • getDataType

      @Stability(Stable) @Nullable default String getDataType()
      The valid data type of the parameter.
    • getDescription

      @Stability(Stable) @Nullable default String getDescription()
      A description of the parameter.
    • getIsModifiable

      @Stability(Stable) @Nullable default Object getIsModifiable()
      A Boolean value indicating whether the parameter can be modified.
    • getParameterName

      @Stability(Stable) @Nullable default String getParameterName()
      The name of the parameter.
    • getParameterValue

      @Stability(Stable) @Nullable default String getParameterValue()
      The value for the parameter.
    • builder

      @Stability(Stable) static CfnDatabase.RelationalDatabaseParameterProperty.Builder builder()
      Returns:
      a CfnDatabase.RelationalDatabaseParameterProperty.Builder of CfnDatabase.RelationalDatabaseParameterProperty