interface CustomerManagedWorkerCapabilitiesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Deadline.CfnFleetPropsMixin.CustomerManagedWorkerCapabilitiesProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsdeadline#CfnFleetPropsMixin_CustomerManagedWorkerCapabilitiesProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.deadline.CfnFleetPropsMixin.CustomerManagedWorkerCapabilitiesProperty |
Python | aws_cdk.cfn_property_mixins.aws_deadline.CfnFleetPropsMixin.CustomerManagedWorkerCapabilitiesProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_deadline » 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 { aws_deadline as deadline } from '@aws-cdk/cfn-property-mixins';
const customerManagedWorkerCapabilitiesProperty: deadline.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