Interface CfnOptionGroupPropsMixin.IOptionConfigurationProperty
The OptionConfiguration property type specifies an individual option, and its settings, within an AWS::RDS::OptionGroup resource.
Namespace: Amazon.CDK.Mixins.Preview.AWS.RDS.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public interface CfnOptionGroupPropsMixin.IOptionConfigurationProperty
Syntax (vb)
Public Interface CfnOptionGroupPropsMixin.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.Mixins.Preview.AWS.RDS.Mixins;
var optionConfigurationProperty = new OptionConfigurationProperty {
DbSecurityGroupMemberships = new [] { "dbSecurityGroupMemberships" },
OptionName = "optionName",
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.
string[]? DbSecurityGroupMemberships { get; }
Property Value
string[]
Remarks
OptionName
The configuration of options to include in a group.
string? OptionName { get; }
Property Value
Remarks
OptionSettings
The option settings to include in an option group.
object? OptionSettings { get; }
Property Value
Remarks
OptionVersion
The version for the option.
string? OptionVersion { get; }
Property Value
Remarks
Port
The optional port for the option.
double? Port { get; }
Property Value
Remarks
VpcSecurityGroupMemberships
A list of VPC security group names used for this option.
string[]? VpcSecurityGroupMemberships { get; }
Property Value
string[]