Interface CfnOptionGroup.IOptionSettingProperty
The OptionSetting
property type specifies the value for an option within an OptionSetting
property.
Namespace: Amazon.CDK.AWS.RDS
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnOptionGroup.IOptionSettingProperty
Syntax (vb)
Public Interface CfnOptionGroup.IOptionSettingProperty
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"
};
Synopsis
Properties
Name | The name of the option that has settings that you can set. |
Value | The current value of the option setting. |
Properties
Name
The name of the option that has settings that you can set.
string? Name { get; }
Property Value
Remarks
Value
The current value of the option setting.
string? Value { get; }