interface PerformanceTargetProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.RedshiftServerless.Mixins.CfnWorkgroupPropsMixin.PerformanceTargetProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsredshiftserverless/mixins#CfnWorkgroupPropsMixin_PerformanceTargetProperty |
Java | software.amazon.awscdk.mixins.preview.services.redshiftserverless.mixins.CfnWorkgroupPropsMixin.PerformanceTargetProperty |
Python | aws_cdk.mixins_preview.aws_redshiftserverless.mixins.CfnWorkgroupPropsMixin.PerformanceTargetProperty |
TypeScript | @aws-cdk/mixins-preview » aws_redshiftserverless » mixins » CfnWorkgroupPropsMixin » PerformanceTargetProperty |
An object that represents the price performance target settings for the workgroup.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as redshiftserverless_mixins } from '@aws-cdk/mixins-preview/aws-redshiftserverless';
const performanceTargetProperty: redshiftserverless_mixins.CfnWorkgroupPropsMixin.PerformanceTargetProperty = {
level: 123,
status: 'status',
};
Properties
| Name | Type | Description |
|---|---|---|
| level? | number | The target price performance level for the workgroup. |
| status? | string | Whether the price performance target is enabled for the workgroup. |
level?
Type:
number
(optional)
The target price performance level for the workgroup.
Valid values include 1, 25, 50, 75, and 100. These correspond to the price performance levels LOW_COST, ECONOMICAL, BALANCED, RESOURCEFUL, and HIGH_PERFORMANCE.
status?
Type:
string
(optional)
Whether the price performance target is enabled for the workgroup.

.NET
Go
Java
Python
TypeScript