interface CustomerManagedFleetConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Deadline.CfnFleet.CustomerManagedFleetConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsdeadline#CfnFleet_CustomerManagedFleetConfigurationProperty |
Java | software.amazon.awscdk.services.deadline.CfnFleet.CustomerManagedFleetConfigurationProperty |
Python | aws_cdk.aws_deadline.CfnFleet.CustomerManagedFleetConfigurationProperty |
TypeScript | aws-cdk-lib » aws_deadline » CfnFleet » CustomerManagedFleetConfigurationProperty |
The configuration details for a customer managed fleet.
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 customerManagedFleetConfigurationProperty: deadline.CfnFleet.CustomerManagedFleetConfigurationProperty = {
mode: 'mode',
workerCapabilities: {
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'],
}],
},
// the properties below are optional
storageProfileId: 'storageProfileId',
tagPropagationMode: 'tagPropagationMode',
};
Properties
| Name | Type | Description |
|---|---|---|
| mode | string | The Auto Scaling mode for the customer managed fleet. |
| worker | IResolvable | Customer | The worker capabilities for the customer managed fleet. |
| storage | string | The storage profile ID for the customer managed fleet. |
| tag | string | The tag propagation mode for the customer managed fleet. |
mode
Type:
string
The Auto Scaling mode for the customer managed fleet.
workerCapabilities
Type:
IResolvable | Customer
The worker capabilities for the customer managed fleet.
storageProfileId?
Type:
string
(optional)
The storage profile ID for the customer managed fleet.
tagPropagationMode?
Type:
string
(optional)
The tag propagation mode for the customer managed fleet.

.NET
Go
Java
Python
TypeScript