interface StreamingSessionStorageRootProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.NimbleStudio.CfnLaunchProfile.StreamingSessionStorageRootProperty |
Java | software.amazon.awscdk.services.nimblestudio.CfnLaunchProfile.StreamingSessionStorageRootProperty |
Python | aws_cdk.aws_nimblestudio.CfnLaunchProfile.StreamingSessionStorageRootProperty |
TypeScript | @aws-cdk/aws-nimblestudio » CfnLaunchProfile » StreamingSessionStorageRootProperty |
The upload storage root location (folder) on streaming workstations where files are uploaded.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as nimblestudio from '@aws-cdk/aws-nimblestudio';
const streamingSessionStorageRootProperty: nimblestudio.CfnLaunchProfile.StreamingSessionStorageRootProperty = {
linux: 'linux',
windows: 'windows',
};
Properties
| Name | Type | Description |
|---|---|---|
| linux? | string | The folder path in Linux workstations where files are uploaded. |
| windows? | string | The folder path in Windows workstations where files are uploaded. |
linux?
Type:
string
(optional)
The folder path in Linux workstations where files are uploaded.
windows?
Type:
string
(optional)
The folder path in Windows workstations where files are uploaded.

.NET
Java
Python
TypeScript