interface CfnLaunchProfileMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.NimbleStudio.CfnLaunchProfileMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsnimblestudio#CfnLaunchProfileMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.nimblestudio.CfnLaunchProfileMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_nimblestudio.CfnLaunchProfileMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_nimblestudio » CfnLaunchProfileMixinProps |
Properties for CfnLaunchProfilePropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_nimblestudio as nimblestudio } from '@aws-cdk/cfn-property-mixins';
const cfnLaunchProfileMixinProps: nimblestudio.CfnLaunchProfileMixinProps = {
description: 'description',
ec2SubnetIds: ['ec2SubnetIds'],
launchProfileProtocolVersions: ['launchProfileProtocolVersions'],
name: 'name',
streamConfiguration: {
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,
},
},
studioComponentIds: ['studioComponentIds'],
studioId: 'studioId',
tags: {
tagsKey: 'tags',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | |
| ec2 | string[] | |
| launch | string[] | |
| name? | string | |
| stream | IResolvable | Stream | |
| studio | string[] | |
| studio | string | |
| tags? | { [string]: string } |
description?
Type:
string
(optional)
ec2SubnetIds?
Type:
string[]
(optional)
launchProfileProtocolVersions?
Type:
string[]
(optional)
name?
Type:
string
(optional)
streamConfiguration?
Type:
IResolvable | Stream
(optional)
studioComponentIds?
Type:
string[]
(optional)
studioId?
Type:
string
(optional)
tags?
Type:
{ [string]: string }
(optional)

.NET
Go
Java
Python
TypeScript