interface CpuOptionsRequestProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.WorkspacesInstances.CfnWorkspaceInstancePropsMixin.CpuOptionsRequestProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsworkspacesinstances#CfnWorkspaceInstancePropsMixin_CpuOptionsRequestProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.workspacesinstances.CfnWorkspaceInstancePropsMixin.CpuOptionsRequestProperty |
Python | aws_cdk.cfn_property_mixins.aws_workspacesinstances.CfnWorkspaceInstancePropsMixin.CpuOptionsRequestProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_workspacesinstances » CfnWorkspaceInstancePropsMixin » CpuOptionsRequestProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_workspacesinstances as workspacesinstances } from '@aws-cdk/cfn-property-mixins';
const cpuOptionsRequestProperty: workspacesinstances.CfnWorkspaceInstancePropsMixin.CpuOptionsRequestProperty = {
coreCount: 123,
threadsPerCore: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| core | number | |
| threads | number |
coreCount?
Type:
number
(optional)
threadsPerCore?
Type:
number
(optional)

.NET
Go
Java
Python
TypeScript