Show / Hide Table of Contents

Class CfnOptionGroup.OptionSettingProperty

The OptionSetting property type specifies the value for an option within an OptionSetting property.

Inheritance
object
CfnOptionGroup.OptionSettingProperty
Implements
CfnOptionGroup.IOptionSettingProperty
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.RDS
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnOptionGroup.OptionSettingProperty : CfnOptionGroup.IOptionSettingProperty
Syntax (vb)
Public Class CfnOptionGroup.OptionSettingProperty Implements CfnOptionGroup.IOptionSettingProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-optiongroup-optionsetting.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.RDS;

             var optionSettingProperty = new OptionSettingProperty {
                 Name = "name",
                 Value = "value"
             };

Synopsis

Constructors

OptionSettingProperty()

The OptionSetting property type specifies the value for an option within an OptionSetting property.

Properties

Name

The name of the option that has settings that you can set.

Value

The current value of the option setting.

Constructors

OptionSettingProperty()

The OptionSetting property type specifies the value for an option within an OptionSetting property.

public OptionSettingProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-optiongroup-optionsetting.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.RDS;

             var optionSettingProperty = new OptionSettingProperty {
                 Name = "name",
                 Value = "value"
             };

Properties

Name

The name of the option that has settings that you can set.

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-optiongroup-optionsetting.html#cfn-rds-optiongroup-optionsetting-name

Value

The current value of the option setting.

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-optiongroup-optionsetting.html#cfn-rds-optiongroup-optionsetting-value

Implements

CfnOptionGroup.IOptionSettingProperty
Back to top Generated by DocFX