interface FleetCapabilitiesProperty
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.aws_deadline.CfnFleet.FleetCapabilitiesProperty | 
  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsdeadline#CfnFleet_FleetCapabilitiesProperty | 
  Java | software.amazon.awscdk.services.deadline.CfnFleet.FleetCapabilitiesProperty | 
  Python | aws_cdk.aws_deadline.CfnFleet.FleetCapabilitiesProperty | 
  TypeScript  | aws-cdk-lib » aws_deadline » CfnFleet » FleetCapabilitiesProperty | 
The amounts and attributes of fleets.
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 fleetCapabilitiesProperty: deadline.CfnFleet.FleetCapabilitiesProperty = {
  amounts: [{
    min: 123,
    name: 'name',
    // the properties below are optional
    max: 123,
  }],
  attributes: [{
    name: 'name',
    values: ['values'],
  }],
};
Properties
| Name | Type | Description | 
|---|---|---|
| amounts? | IResolvable | (IResolvable | Fleet)[] | Amount capabilities of the fleet. | 
| attributes? | IResolvable | (IResolvable | Fleet)[] | Attribute capabilities of the fleet. | 
amounts?
Type:
IResolvable | (IResolvable | Fleet)[]
(optional)
Amount capabilities of the fleet.
attributes?
Type:
IResolvable | (IResolvable | Fleet)[]
(optional)
Attribute capabilities of the fleet.

 .NET
 Go
 Java
 Python
 TypeScript