Class CfnOptionGroup.OptionSettingProperty
The OptionSetting property type specifies the value for an option within an OptionSetting property.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.RDS
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnOptionGroup.OptionSettingProperty : CfnOptionGroup.IOptionSettingPropertySyntax (vb)
Public Class CfnOptionGroup.OptionSettingProperty Implements CfnOptionGroup.IOptionSettingPropertyRemarks
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  | 
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
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
Remarks
Value
The current value of the option setting.
public string? Value { get; set; }