interface CustomerManagedWorkerCapabilitiesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Deadline.Mixins.CfnFleetPropsMixin.CustomerManagedWorkerCapabilitiesProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdeadline/mixins#CfnFleetPropsMixin_CustomerManagedWorkerCapabilitiesProperty |
Java | software.amazon.awscdk.mixins.preview.services.deadline.mixins.CfnFleetPropsMixin.CustomerManagedWorkerCapabilitiesProperty |
Python | aws_cdk.mixins_preview.aws_deadline.mixins.CfnFleetPropsMixin.CustomerManagedWorkerCapabilitiesProperty |
TypeScript | @aws-cdk/mixins-preview » aws_deadline » mixins » CfnFleetPropsMixin » 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 { mixins as deadline_mixins } from '@aws-cdk/mixins-preview/aws-deadline';
const customerManagedWorkerCapabilitiesProperty: deadline_mixins.CfnFleetPropsMixin.CustomerManagedWorkerCapabilitiesProperty = {
acceleratorCount: {
max: 123,
min: 123,
},
acceleratorTotalMemoryMiB: {
max: 123,
min: 123,
},
acceleratorTypes: ['acceleratorTypes'],
cpuArchitectureType: 'cpuArchitectureType',
customAmounts: [{
max: 123,
min: 123,
name: 'name',
}],
customAttributes: [{
name: 'name',
values: ['values'],
}],
memoryMiB: {
max: 123,
min: 123,
},
osFamily: 'osFamily',
vCpuCount: {
max: 123,
min: 123,
},
};
Properties
| Name | Type | Description |
|---|---|---|
| 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. |
| cpu | string | The CPU architecture type 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. |
| 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. |
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.
cpuArchitectureType?
Type:
string
(optional)
The CPU architecture type 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.
memoryMiB?
Type:
IResolvable | Memory
(optional)
The memory (MiB).
osFamily?
Type:
string
(optional)
The operating system (OS) family.
vCpuCount?
Type:
IResolvable | VCpu
(optional)
The vCPU count for the customer manged worker capabilities.

.NET
Go
Java
Python
TypeScript