Show / Hide Table of Contents

Interface CfnDBInstance.IProcessorFeatureProperty

The ProcessorFeature property type specifies the processor features of a DB instance class.

Namespace: Amazon.CDK.AWS.RDS
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnDBInstance.IProcessorFeatureProperty
Syntax (vb)
Public Interface CfnDBInstance.IProcessorFeatureProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbinstance-processorfeature.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.RDS;

             var processorFeatureProperty = new ProcessorFeatureProperty {
                 Name = "name",
                 Value = "value"
             };

Synopsis

Properties

Name

The name of the processor feature.

Value

The value of a processor feature.

Properties

Name

The name of the processor feature.

string? Name { get; }
Property Value

string

Remarks

Valid names are coreCount and threadsPerCore .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbinstance-processorfeature.html#cfn-rds-dbinstance-processorfeature-name

Value

The value of a processor feature.

string? Value { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbinstance-processorfeature.html#cfn-rds-dbinstance-processorfeature-value

Back to top Generated by DocFX