interface ProcessorFeatureProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.RDS.Mixins.CfnDBInstancePropsMixin.ProcessorFeatureProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsrds/mixins#CfnDBInstancePropsMixin_ProcessorFeatureProperty |
Java | software.amazon.awscdk.mixins.preview.services.rds.mixins.CfnDBInstancePropsMixin.ProcessorFeatureProperty |
Python | aws_cdk.mixins_preview.aws_rds.mixins.CfnDBInstancePropsMixin.ProcessorFeatureProperty |
TypeScript | @aws-cdk/mixins-preview » aws_rds » mixins » CfnDBInstancePropsMixin » ProcessorFeatureProperty |
The ProcessorFeature property type specifies the processor features of a DB instance class.
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 processorFeatureProperty: rds_mixins.CfnDBInstancePropsMixin.ProcessorFeatureProperty = {
name: 'name',
value: 'value',
};
Properties
| Name | Type | Description |
|---|---|---|
| name? | string | The name of the processor feature. |
| value? | string | The value of a processor feature. |
name?
Type:
string
(optional)
The name of the processor feature.
Valid names are coreCount and threadsPerCore .
value?
Type:
string
(optional)
The value of a processor feature.

.NET
Go
Java
Python
TypeScript