interface CustomerManagedWorkerCapabilitiesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Deadline.CfnFleet.CustomerManagedWorkerCapabilitiesProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsdeadline#CfnFleet_CustomerManagedWorkerCapabilitiesProperty |
Java | software.amazon.awscdk.services.deadline.CfnFleet.CustomerManagedWorkerCapabilitiesProperty |
Python | aws_cdk.aws_deadline.CfnFleet.CustomerManagedWorkerCapabilitiesProperty |
TypeScript | aws-cdk-lib » aws_deadline » CfnFleet » CustomerManagedWorkerCapabilitiesProperty |
The worker capabilities for a customer managed workflow.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_deadline as deadline } from 'aws-cdk-lib';
const customerManagedWorkerCapabilitiesProperty: deadline.CfnFleet.CustomerManagedWorkerCapabilitiesProperty = {
cpuArchitectureType: 'cpuArchitectureType',
memoryMiB: {
min: 123,
// the properties below are optional
max: 123,
},
osFamily: 'osFamily',
vCpuCount: {
min: 123,
// the properties below are optional
max: 123,
},
// the properties below are optional
acceleratorCount: {
min: 123,
// the properties below are optional
max: 123,
},
acceleratorTotalMemoryMiB: {
min: 123,
// the properties below are optional
max: 123,
},
acceleratorTypes: ['acceleratorTypes'],
customAmounts: [{
min: 123,
name: 'name',
// the properties below are optional
max: 123,
}],
customAttributes: [{
name: 'name',
values: ['values'],
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| cpu | string | The CPU architecture type for the customer managed worker capabilities. |
| memory | IResolvable | Memory | The memory (MiB). |
| os | string | The operating system (OS) family. |
| v | IResolvable | VCpu | The vCPU count for the customer manged worker capabilities. |
| accelerator | IResolvable | Accelerator | The range of the accelerator. |
| accelerator | IResolvable | Accelerator | The total memory (MiB) for the customer managed worker capabilities. |
| accelerator | string[] | The accelerator types for the customer managed worker capabilities. |
| custom | IResolvable | (IResolvable | Fleet)[] | Custom requirement ranges for customer managed worker capabilities. |
| custom | IResolvable | (IResolvable | Fleet)[] | Custom attributes for the customer manged worker capabilities. |
cpuArchitectureType
Type:
string
The CPU architecture type for the customer managed worker capabilities.
memoryMiB
Type:
IResolvable | Memory
The memory (MiB).
osFamily
Type:
string
The operating system (OS) family.
vCpuCount
Type:
IResolvable | VCpu
The vCPU count for the customer manged worker capabilities.
acceleratorCount?
Type:
IResolvable | Accelerator
(optional)
The range of the accelerator.
acceleratorTotalMemoryMiB?
Type:
IResolvable | Accelerator
(optional)
The total memory (MiB) for the customer managed worker capabilities.
acceleratorTypes?
Type:
string[]
(optional)
The accelerator types for the customer managed worker capabilities.
customAmounts?
Type:
IResolvable | (IResolvable | Fleet)[]
(optional)
Custom requirement ranges for customer managed worker capabilities.
customAttributes?
Type:
IResolvable | (IResolvable | Fleet)[]
(optional)
Custom attributes for the customer manged worker capabilities.

.NET
Go
Java
Python
TypeScript