interface OptionConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.RDS.CfnOptionGroup.OptionConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsrds#CfnOptionGroup_OptionConfigurationProperty |
Java | software.amazon.awscdk.services.rds.CfnOptionGroup.OptionConfigurationProperty |
Python | aws_cdk.aws_rds.CfnOptionGroup.OptionConfigurationProperty |
TypeScript | aws-cdk-lib » 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 { aws_rds as rds } from 'aws-cdk-lib';
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 DB security groups 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 VPC security group names used for this option. |
optionName
Type:
string
The configuration of options to include in a group.
dbSecurityGroupMemberships?
Type:
string[]
(optional)
A list of DB security groups 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 VPC security group names used for this option.

.NET
Go
Java
Python
TypeScript