interface OptionSettingProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.RDS.Mixins.CfnOptionGroupPropsMixin.OptionSettingProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsrds/mixins#CfnOptionGroupPropsMixin_OptionSettingProperty |
Java | software.amazon.awscdk.mixins.preview.services.rds.mixins.CfnOptionGroupPropsMixin.OptionSettingProperty |
Python | aws_cdk.mixins_preview.aws_rds.mixins.CfnOptionGroupPropsMixin.OptionSettingProperty |
TypeScript | @aws-cdk/mixins-preview » aws_rds » mixins » CfnOptionGroupPropsMixin » 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 { mixins as rds_mixins } from '@aws-cdk/mixins-preview/aws-rds';
const optionSettingProperty: rds_mixins.CfnOptionGroupPropsMixin.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