Class CfnDatabase.RelationalDatabaseParameterProperty
RelationalDatabaseParameter
is a property of the AWS::Lightsail::Database resource. It describes parameters for the database.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.Lightsail
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnDatabase.RelationalDatabaseParameterProperty : CfnDatabase.IRelationalDatabaseParameterProperty
Syntax (vb)
Public Class CfnDatabase.RelationalDatabaseParameterProperty Implements CfnDatabase.IRelationalDatabaseParameterProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Lightsail;
var relationalDatabaseParameterProperty = new RelationalDatabaseParameterProperty {
AllowedValues = "allowedValues",
ApplyMethod = "applyMethod",
ApplyType = "applyType",
DataType = "dataType",
Description = "description",
IsModifiable = false,
ParameterName = "parameterName",
ParameterValue = "parameterValue"
};
Synopsis
Constructors
RelationalDatabaseParameterProperty() |
|
Properties
AllowedValues | The valid range of values for the parameter. |
ApplyMethod | Indicates when parameter updates are applied. |
ApplyType | Specifies the engine-specific parameter type. |
DataType | The valid data type of the parameter. |
Description | A description of the parameter. |
IsModifiable | A Boolean value indicating whether the parameter can be modified. |
ParameterName | The name of the parameter. |
ParameterValue | The value for the parameter. |
Constructors
RelationalDatabaseParameterProperty()
RelationalDatabaseParameter
is a property of the AWS::Lightsail::Database resource. It describes parameters for the database.
public RelationalDatabaseParameterProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Lightsail;
var relationalDatabaseParameterProperty = new RelationalDatabaseParameterProperty {
AllowedValues = "allowedValues",
ApplyMethod = "applyMethod",
ApplyType = "applyType",
DataType = "dataType",
Description = "description",
IsModifiable = false,
ParameterName = "parameterName",
ParameterValue = "parameterValue"
};
Properties
AllowedValues
The valid range of values for the parameter.
public string? AllowedValues { get; set; }
Property Value
Remarks
ApplyMethod
Indicates when parameter updates are applied.
public string? ApplyMethod { get; set; }
Property Value
Remarks
ApplyType
Specifies the engine-specific parameter type.
public string? ApplyType { get; set; }
Property Value
Remarks
DataType
The valid data type of the parameter.
public string? DataType { get; set; }
Property Value
Remarks
Description
A description of the parameter.
public string? Description { get; set; }
Property Value
Remarks
IsModifiable
A Boolean value indicating whether the parameter can be modified.
public object? IsModifiable { get; set; }
Property Value
Remarks
ParameterName
The name of the parameter.
public string? ParameterName { get; set; }
Property Value
Remarks
ParameterValue
The value for the parameter.
public string? ParameterValue { get; set; }