interface StreamConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.NimbleStudio.Mixins.CfnLaunchProfilePropsMixin.StreamConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsnimblestudio/mixins#CfnLaunchProfilePropsMixin_StreamConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.nimblestudio.mixins.CfnLaunchProfilePropsMixin.StreamConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_nimblestudio.mixins.CfnLaunchProfilePropsMixin.StreamConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_nimblestudio » mixins » CfnLaunchProfilePropsMixin » StreamConfigurationProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as nimblestudio_mixins } from '@aws-cdk/mixins-preview/aws-nimblestudio';
const streamConfigurationProperty: nimblestudio_mixins.CfnLaunchProfilePropsMixin.StreamConfigurationProperty = {
automaticTerminationMode: 'automaticTerminationMode',
clipboardMode: 'clipboardMode',
ec2InstanceTypes: ['ec2InstanceTypes'],
maxSessionLengthInMinutes: 123,
maxStoppedSessionLengthInMinutes: 123,
sessionBackup: {
maxBackupsToRetain: 123,
mode: 'mode',
},
sessionPersistenceMode: 'sessionPersistenceMode',
sessionStorage: {
mode: ['mode'],
root: {
linux: 'linux',
windows: 'windows',
},
},
streamingImageIds: ['streamingImageIds'],
volumeConfiguration: {
iops: 123,
size: 123,
throughput: 123,
},
};
Properties
| Name | Type | Description |
|---|---|---|
| automatic | string | |
| clipboard | string | |
| ec2 | string[] | |
| max | number | |
| max | number | |
| session | IResolvable | Stream | |
| session | string | |
| session | IResolvable | Stream | |
| streaming | string[] | |
| volume | IResolvable | Volume |
automaticTerminationMode?
Type:
string
(optional)
clipboardMode?
Type:
string
(optional)
ec2InstanceTypes?
Type:
string[]
(optional)
maxSessionLengthInMinutes?
Type:
number
(optional)
maxStoppedSessionLengthInMinutes?
Type:
number
(optional)
sessionBackup?
Type:
IResolvable | Stream
(optional)
sessionPersistenceMode?
Type:
string
(optional)
sessionStorage?
Type:
IResolvable | Stream
(optional)
streamingImageIds?
Type:
string[]
(optional)
volumeConfiguration?
Type:
IResolvable | Volume
(optional)

.NET
Go
Java
Python
TypeScript