/** *
Describes the parameters of a database.
*/ export interface _RelationalDatabaseParameter { /** *Specifies the valid range of values for the parameter.
*/ allowedValues?: string; /** *Indicates when parameter updates are applied.
Can be immediate or pending-reboot.
Specifies the engine-specific parameter type.
*/ applyType?: string; /** *Specifies the valid data type for the parameter.
*/ dataType?: string; /** *Provides a description of the parameter.
*/ description?: string; /** *A Boolean value indicating whether the parameter can be modified.
*/ isModifiable?: boolean; /** *Specifies the name of the parameter.
*/ parameterName?: string; /** *Specifies the value of the parameter.
*/ parameterValue?: string; } export declare type _UnmarshalledRelationalDatabaseParameter = _RelationalDatabaseParameter;