Show / Hide Table of Contents

Class CfnDatabase.RelationalDatabaseParameterProperty

RelationalDatabaseParameter is a property of the AWS::Lightsail::Database resource. It describes parameters for the database.

Inheritance
object
CfnDatabase.RelationalDatabaseParameterProperty
Implements
CfnDatabase.IRelationalDatabaseParameterProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lightsail-database-relationaldatabaseparameter.html

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()

RelationalDatabaseParameter is a property of the AWS::Lightsail::Database resource. It describes parameters for the database.

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lightsail-database-relationaldatabaseparameter.html

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lightsail-database-relationaldatabaseparameter.html#cfn-lightsail-database-relationaldatabaseparameter-allowedvalues

ApplyMethod

Indicates when parameter updates are applied.

public string? ApplyMethod { get; set; }
Property Value

string

Remarks

Can be immediate or pending-reboot .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lightsail-database-relationaldatabaseparameter.html#cfn-lightsail-database-relationaldatabaseparameter-applymethod

ApplyType

Specifies the engine-specific parameter type.

public string? ApplyType { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lightsail-database-relationaldatabaseparameter.html#cfn-lightsail-database-relationaldatabaseparameter-applytype

DataType

The valid data type of the parameter.

public string? DataType { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lightsail-database-relationaldatabaseparameter.html#cfn-lightsail-database-relationaldatabaseparameter-datatype

Description

A description of the parameter.

public string? Description { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lightsail-database-relationaldatabaseparameter.html#cfn-lightsail-database-relationaldatabaseparameter-description

IsModifiable

A Boolean value indicating whether the parameter can be modified.

public object? IsModifiable { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lightsail-database-relationaldatabaseparameter.html#cfn-lightsail-database-relationaldatabaseparameter-ismodifiable

ParameterName

The name of the parameter.

public string? ParameterName { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lightsail-database-relationaldatabaseparameter.html#cfn-lightsail-database-relationaldatabaseparameter-parametername

ParameterValue

The value for the parameter.

public string? ParameterValue { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lightsail-database-relationaldatabaseparameter.html#cfn-lightsail-database-relationaldatabaseparameter-parametervalue

Implements

CfnDatabase.IRelationalDatabaseParameterProperty
Back to top Generated by DocFX