interface ComputeCapacityProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.AppStream.CfnFleet.ComputeCapacityProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsappstream#CfnFleet_ComputeCapacityProperty |
Java | software.amazon.awscdk.services.appstream.CfnFleet.ComputeCapacityProperty |
Python | aws_cdk.aws_appstream.CfnFleet.ComputeCapacityProperty |
TypeScript | aws-cdk-lib » aws_appstream » CfnFleet » ComputeCapacityProperty |
The desired capacity for a fleet.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_appstream as appstream } from 'aws-cdk-lib';
const computeCapacityProperty: appstream.CfnFleet.ComputeCapacityProperty = {
desiredInstances: 123,
desiredSessions: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| desired | number | The desired number of streaming instances. |
| desired | number | The desired capacity in terms of number of user sessions, for the multi-session fleet. |
desiredInstances?
Type:
number
(optional)
The desired number of streaming instances.
desiredSessions?
Type:
number
(optional)
The desired capacity in terms of number of user sessions, for the multi-session fleet.
This is not allowed for single-session fleets.
When you create a fleet, you must set define either the DesiredSessions or DesiredInstances attribute, based on the type of fleet you create. You can’t define both attributes or leave both attributes blank.

.NET
Go
Java
Python
TypeScript