interface CustomerManagedFleetConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Deadline.Mixins.CfnFleetPropsMixin.CustomerManagedFleetConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdeadline/mixins#CfnFleetPropsMixin_CustomerManagedFleetConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.deadline.mixins.CfnFleetPropsMixin.CustomerManagedFleetConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_deadline.mixins.CfnFleetPropsMixin.CustomerManagedFleetConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_deadline » mixins » CfnFleetPropsMixin » 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 { mixins as deadline_mixins } from '@aws-cdk/mixins-preview/aws-deadline';
const customerManagedFleetConfigurationProperty: deadline_mixins.CfnFleetPropsMixin.CustomerManagedFleetConfigurationProperty = {
mode: 'mode',
storageProfileId: 'storageProfileId',
tagPropagationMode: 'tagPropagationMode',
workerCapabilities: {
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 |
|---|---|---|
| mode? | string | The Auto Scaling mode 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. |
| worker | IResolvable | Customer | The worker capabilities for the customer managed fleet. |
mode?
Type:
string
(optional)
The Auto Scaling mode 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.
workerCapabilities?
Type:
IResolvable | Customer
(optional)
The worker capabilities for the customer managed fleet.

.NET
Go
Java
Python
TypeScript