interface CfnWorkspacesPoolProps
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.WorkSpaces.CfnWorkspacesPoolProps |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsworkspaces#CfnWorkspacesPoolProps |
![]() | software.amazon.awscdk.services.workspaces.CfnWorkspacesPoolProps |
![]() | aws_cdk.aws_workspaces.CfnWorkspacesPoolProps |
![]() | aws-cdk-lib » aws_workspaces » CfnWorkspacesPoolProps |
Properties for defining a CfnWorkspacesPool
.
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-lib';
const cfnWorkspacesPoolProps: workspaces.CfnWorkspacesPoolProps = {
bundleId: 'bundleId',
capacity: {
desiredUserSessions: 123,
},
directoryId: 'directoryId',
poolName: 'poolName',
// the properties below are optional
applicationSettings: {
status: 'status',
// the properties below are optional
settingsGroup: 'settingsGroup',
},
description: 'description',
tags: [{
key: 'key',
value: 'value',
}],
timeoutSettings: {
disconnectTimeoutInSeconds: 123,
idleDisconnectTimeoutInSeconds: 123,
maxUserDurationInSeconds: 123,
},
};
Properties
Name | Type | Description |
---|---|---|
bundle | string | The identifier of the bundle used by the pool. |
capacity | IResolvable | Capacity | Describes the user capacity for the pool. |
directory | string | The identifier of the directory used by the pool. |
pool | string | The name of the pool. |
application | IResolvable | Application | The persistent application settings for users of the pool. |
description? | string | The description of the pool. |
tags? | Cfn [] | |
timeout | IResolvable | Timeout | The amount of time that a pool session remains active after users disconnect. |
bundleId
Type:
string
The identifier of the bundle used by the pool.
capacity
Type:
IResolvable
|
Capacity
Describes the user capacity for the pool.
directoryId
Type:
string
The identifier of the directory used by the pool.
poolName
Type:
string
The name of the pool.
applicationSettings?
Type:
IResolvable
|
Application
(optional)
The persistent application settings for users of the pool.
description?
Type:
string
(optional)
The description of the pool.
tags?
⚠️ Deprecated: this property has been deprecated
Type:
Cfn
[]
(optional)
timeoutSettings?
Type:
IResolvable
|
Timeout
(optional)
The amount of time that a pool session remains active after users disconnect.
If they try to reconnect to the pool session after a disconnection or network interruption within this time interval, they are connected to their previous session. Otherwise, they are connected to a new session with a new pool instance.