interface OptionSettingProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.RDS.CfnOptionGroup.OptionSettingProperty |
Java | software.amazon.awscdk.services.rds.CfnOptionGroup.OptionSettingProperty |
Python | aws_cdk.aws_rds.CfnOptionGroup.OptionSettingProperty |
TypeScript | @aws-cdk/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 * as rds from '@aws-cdk/aws-rds';
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.