interface RelationalDatabaseParameterProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.Lightsail.CfnDatabase.RelationalDatabaseParameterProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awslightsail#CfnDatabase_RelationalDatabaseParameterProperty |
![]() | software.amazon.awscdk.services.lightsail.CfnDatabase.RelationalDatabaseParameterProperty |
![]() | aws_cdk.aws_lightsail.CfnDatabase.RelationalDatabaseParameterProperty |
![]() | aws-cdk-lib » aws_lightsail » CfnDatabase » RelationalDatabaseParameterProperty |
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 { aws_lightsail as lightsail } from 'aws-cdk-lib';
const relationalDatabaseParameterProperty: lightsail.CfnDatabase.RelationalDatabaseParameterProperty = {
allowedValues: 'allowedValues',
applyMethod: 'applyMethod',
applyType: 'applyType',
dataType: 'dataType',
description: 'description',
isModifiable: false,
parameterName: 'parameterName',
parameterValue: 'parameterValue',
};
Properties
Name | Type | Description |
---|---|---|
allowed | string | The valid range of values for the parameter. |
apply | string | Indicates when parameter updates are applied. |
apply | string | Specifies the engine-specific parameter type. |
data | string | The valid data type of the parameter. |
description? | string | A description of the parameter. |
is | boolean | IResolvable | A Boolean value indicating whether the parameter can be modified. |
parameter | string | The name of the parameter. |
parameter | string | The value for the parameter. |
allowedValues?
Type:
string
(optional)
The valid range of values for the parameter.
applyMethod?
Type:
string
(optional)
Indicates when parameter updates are applied.
Can be immediate
or pending-reboot
.
applyType?
Type:
string
(optional)
Specifies the engine-specific parameter type.
dataType?
Type:
string
(optional)
The valid data type of the parameter.
description?
Type:
string
(optional)
A description of the parameter.
isModifiable?
Type:
boolean |
IResolvable
(optional)
A Boolean value indicating whether the parameter can be modified.
parameterName?
Type:
string
(optional)
The name of the parameter.
parameterValue?
Type:
string
(optional)
The value for the parameter.