interface CapacityProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.WorkSpaces.Mixins.CfnWorkspacesPoolPropsMixin.CapacityProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsworkspaces/mixins#CfnWorkspacesPoolPropsMixin_CapacityProperty |
Java | software.amazon.awscdk.mixins.preview.services.workspaces.mixins.CfnWorkspacesPoolPropsMixin.CapacityProperty |
Python | aws_cdk.mixins_preview.aws_workspaces.mixins.CfnWorkspacesPoolPropsMixin.CapacityProperty |
TypeScript | @aws-cdk/mixins-preview » aws_workspaces » mixins » CfnWorkspacesPoolPropsMixin » CapacityProperty |
Describes the user capacity for the pool.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as workspaces_mixins } from '@aws-cdk/mixins-preview/aws-workspaces';
const capacityProperty: workspaces_mixins.CfnWorkspacesPoolPropsMixin.CapacityProperty = {
desiredUserSessions: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| desired | number | The desired number of user sessions for the WorkSpaces in the pool. |
desiredUserSessions?
Type:
number
(optional)
The desired number of user sessions for the WorkSpaces in the pool.

.NET
Go
Java
Python
TypeScript