interface OptionSettingProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.RDS.CfnOptionGroup.OptionSettingProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsrds#CfnOptionGroup_OptionSettingProperty |
Java | software.amazon.awscdk.services.rds.CfnOptionGroup.OptionSettingProperty |
Python | aws_cdk.aws_rds.CfnOptionGroup.OptionSettingProperty |
TypeScript | aws-cdk-lib » aws_rds » CfnOptionGroup » OptionSettingProperty |
The OptionSetting property type specifies the value for an option within an OptionSetting property.
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 optionSettingProperty: rds.CfnOptionGroup.OptionSettingProperty = {
name: 'name',
value: 'value',
};
Properties
| Name | Type | Description |
|---|---|---|
| name? | string | The name of the option that has settings that you can set. |
| value? | string | The current value of the option setting. |
name?
Type:
string
(optional)
The name of the option that has settings that you can set.
value?
Type:
string
(optional)
The current value of the option setting.

.NET
Go
Java
Python
TypeScript