interface OptionConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.RDS.CfnOptionGroup.OptionConfigurationProperty |
Java | software.amazon.awscdk.services.rds.CfnOptionGroup.OptionConfigurationProperty |
Python | aws_cdk.aws_rds.CfnOptionGroup.OptionConfigurationProperty |
TypeScript | @aws-cdk/aws-rds » CfnOptionGroup » OptionConfigurationProperty |
The OptionConfiguration property type specifies an individual option, and its settings, within an AWS::RDS::OptionGroup resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as rds from '@aws-cdk/aws-rds';
const optionConfigurationProperty: rds.CfnOptionGroup.OptionConfigurationProperty = {
optionName: 'optionName',
// the properties below are optional
dbSecurityGroupMemberships: ['dbSecurityGroupMemberships'],
optionSettings: [{
name: 'name',
value: 'value',
}],
optionVersion: 'optionVersion',
port: 123,
vpcSecurityGroupMemberships: ['vpcSecurityGroupMemberships'],
};
Properties
| Name | Type | Description |
|---|---|---|
| option | string | The configuration of options to include in a group. |
| db | string[] | A list of DBSecurityGroupMembership name strings used for this option. |
| option | IResolvable | IResolvable | Option[] | The option settings to include in an option group. |
| option | string | The version for the option. |
| port? | number | The optional port for the option. |
| vpc | string[] | A list of VpcSecurityGroupMembership name strings used for this option. |
optionName
Type:
string
The configuration of options to include in a group.
dbSecurityGroupMemberships?
Type:
string[]
(optional)
A list of DBSecurityGroupMembership name strings used for this option.
optionSettings?
Type:
IResolvable | IResolvable | Option[]
(optional)
The option settings to include in an option group.
optionVersion?
Type:
string
(optional)
The version for the option.
port?
Type:
number
(optional)
The optional port for the option.
vpcSecurityGroupMemberships?
Type:
string[]
(optional)
A list of VpcSecurityGroupMembership name strings used for this option.

.NET
Java
Python
TypeScript