interface ProcessorFeatureProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.RDS.CfnDBInstancePropsMixin.ProcessorFeatureProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsrds#CfnDBInstancePropsMixin_ProcessorFeatureProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.rds.CfnDBInstancePropsMixin.ProcessorFeatureProperty |
Python | aws_cdk.cfn_property_mixins.aws_rds.CfnDBInstancePropsMixin.ProcessorFeatureProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_rds » 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 { aws_rds as rds } from '@aws-cdk/cfn-property-mixins';
const processorFeatureProperty: rds.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