interface CapacityProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.WorkSpaces.CfnWorkspacesPoolPropsMixin.CapacityProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsworkspaces#CfnWorkspacesPoolPropsMixin_CapacityProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.workspaces.CfnWorkspacesPoolPropsMixin.CapacityProperty |
Python | aws_cdk.cfn_property_mixins.aws_workspaces.CfnWorkspacesPoolPropsMixin.CapacityProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_workspaces » 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 { aws_workspaces as workspaces } from '@aws-cdk/cfn-property-mixins';
const capacityProperty: workspaces.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