aws-cdk-lib.aws_lightsail.CfnDatabase.RelationalDatabaseParameterProperty

interface RelationalDatabaseParameterProperty

LanguageType name
.NETAmazon.CDK.AWS.Lightsail.CfnDatabase.RelationalDatabaseParameterProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awslightsail#CfnDatabase_RelationalDatabaseParameterProperty
Javasoftware.amazon.awscdk.services.lightsail.CfnDatabase.RelationalDatabaseParameterProperty
Pythonaws_cdk.aws_lightsail.CfnDatabase.RelationalDatabaseParameterProperty
TypeScript 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

NameTypeDescription
allowedValues?stringThe valid range of values for the parameter.
applyMethod?stringIndicates when parameter updates are applied.
applyType?stringSpecifies the engine-specific parameter type.
dataType?stringThe valid data type of the parameter.
description?stringA description of the parameter.
isModifiable?boolean | IResolvableA Boolean value indicating whether the parameter can be modified.
parameterName?stringThe name of the parameter.
parameterValue?stringThe 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.