Interface CfnOptionGroup.IOptionConfigurationProperty
The OptionConfiguration
property type specifies an individual option, and its settings, within an AWS::RDS::OptionGroup
resource.
Namespace: Amazon.CDK.AWS.RDS
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IOptionConfigurationProperty
Syntax (vb)
Public Interface IOptionConfigurationProperty
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 optionConfigurationProperty = new OptionConfigurationProperty {
OptionName = "optionName",
// the properties below are optional
DbSecurityGroupMemberships = new [] { "dbSecurityGroupMemberships" },
OptionSettings = new [] { new OptionSettingProperty {
Name = "name",
Value = "value"
} },
OptionVersion = "optionVersion",
Port = 123,
VpcSecurityGroupMemberships = new [] { "vpcSecurityGroupMemberships" }
};
Synopsis
Properties
DbSecurityGroupMemberships | A list of DB security groups used for this option. |
OptionName | The configuration of options to include in a group. |
OptionSettings | The option settings to include in an option group. |
OptionVersion | The version for the option. |
Port | The optional port for the option. |
VpcSecurityGroupMemberships | A list of VPC security group names used for this option. |
Properties
DbSecurityGroupMemberships
A list of DB security groups used for this option.
virtual string[] DbSecurityGroupMemberships { get; }
Property Value
System.String[]
Remarks
OptionName
The configuration of options to include in a group.
string OptionName { get; }
Property Value
System.String
Remarks
OptionSettings
The option settings to include in an option group.
virtual object OptionSettings { get; }
Property Value
System.Object
Remarks
OptionVersion
The version for the option.
virtual string OptionVersion { get; }
Property Value
System.String
Remarks
Port
The optional port for the option.
virtual Nullable<double> Port { get; }
Property Value
System.Nullable<System.Double>
Remarks
VpcSecurityGroupMemberships
A list of VPC security group names used for this option.
virtual string[] VpcSecurityGroupMemberships { get; }
Property Value
System.String[]