Show / Hide Table of Contents

Class CfnLaunchProfileProps

Properties for defining a CfnLaunchProfile.

Inheritance
object
CfnLaunchProfileProps
Implements
ICfnLaunchProfileProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.NimbleStudio
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnLaunchProfileProps : ICfnLaunchProfileProps
Syntax (vb)
Public Class CfnLaunchProfileProps Implements ICfnLaunchProfileProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-nimblestudio-launchprofile.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.NimbleStudio;

             var cfnLaunchProfileProps = new CfnLaunchProfileProps {
                 Ec2SubnetIds = new [] { "ec2SubnetIds" },
                 LaunchProfileProtocolVersions = new [] { "launchProfileProtocolVersions" },
                 Name = "name",
                 StreamConfiguration = new StreamConfigurationProperty {
                     ClipboardMode = "clipboardMode",
                     Ec2InstanceTypes = new [] { "ec2InstanceTypes" },
                     StreamingImageIds = new [] { "streamingImageIds" },

                     // the properties below are optional
                     AutomaticTerminationMode = "automaticTerminationMode",
                     MaxSessionLengthInMinutes = 123,
                     MaxStoppedSessionLengthInMinutes = 123,
                     SessionBackup = new StreamConfigurationSessionBackupProperty {
                         MaxBackupsToRetain = 123,
                         Mode = "mode"
                     },
                     SessionPersistenceMode = "sessionPersistenceMode",
                     SessionStorage = new StreamConfigurationSessionStorageProperty {
                         Mode = new [] { "mode" },

                         // the properties below are optional
                         Root = new StreamingSessionStorageRootProperty {
                             Linux = "linux",
                             Windows = "windows"
                         }
                     },
                     VolumeConfiguration = new VolumeConfigurationProperty {
                         Iops = 123,
                         Size = 123,
                         Throughput = 123
                     }
                 },
                 StudioComponentIds = new [] { "studioComponentIds" },
                 StudioId = "studioId",

                 // the properties below are optional
                 Description = "description",
                 Tags = new Dictionary<string, string> {
                     { "tagsKey", "tags" }
                 }
             };

Synopsis

Constructors

CfnLaunchProfileProps()

Properties for defining a CfnLaunchProfile.

Properties

Description

Properties for defining a CfnLaunchProfile.

Ec2SubnetIds

Properties for defining a CfnLaunchProfile.

LaunchProfileProtocolVersions

Properties for defining a CfnLaunchProfile.

Name

Properties for defining a CfnLaunchProfile.

StreamConfiguration

Properties for defining a CfnLaunchProfile.

StudioComponentIds

Properties for defining a CfnLaunchProfile.

StudioId

Properties for defining a CfnLaunchProfile.

Tags

Properties for defining a CfnLaunchProfile.

Constructors

CfnLaunchProfileProps()

Properties for defining a CfnLaunchProfile.

public CfnLaunchProfileProps()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-nimblestudio-launchprofile.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.NimbleStudio;

             var cfnLaunchProfileProps = new CfnLaunchProfileProps {
                 Ec2SubnetIds = new [] { "ec2SubnetIds" },
                 LaunchProfileProtocolVersions = new [] { "launchProfileProtocolVersions" },
                 Name = "name",
                 StreamConfiguration = new StreamConfigurationProperty {
                     ClipboardMode = "clipboardMode",
                     Ec2InstanceTypes = new [] { "ec2InstanceTypes" },
                     StreamingImageIds = new [] { "streamingImageIds" },

                     // the properties below are optional
                     AutomaticTerminationMode = "automaticTerminationMode",
                     MaxSessionLengthInMinutes = 123,
                     MaxStoppedSessionLengthInMinutes = 123,
                     SessionBackup = new StreamConfigurationSessionBackupProperty {
                         MaxBackupsToRetain = 123,
                         Mode = "mode"
                     },
                     SessionPersistenceMode = "sessionPersistenceMode",
                     SessionStorage = new StreamConfigurationSessionStorageProperty {
                         Mode = new [] { "mode" },

                         // the properties below are optional
                         Root = new StreamingSessionStorageRootProperty {
                             Linux = "linux",
                             Windows = "windows"
                         }
                     },
                     VolumeConfiguration = new VolumeConfigurationProperty {
                         Iops = 123,
                         Size = 123,
                         Throughput = 123
                     }
                 },
                 StudioComponentIds = new [] { "studioComponentIds" },
                 StudioId = "studioId",

                 // the properties below are optional
                 Description = "description",
                 Tags = new Dictionary<string, string> {
                     { "tagsKey", "tags" }
                 }
             };

Properties

Description

Properties for defining a CfnLaunchProfile.

public string? Description { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-nimblestudio-launchprofile.html#cfn-nimblestudio-launchprofile-description

Ec2SubnetIds

Properties for defining a CfnLaunchProfile.

public string[] Ec2SubnetIds { get; set; }
Property Value

string[]

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-nimblestudio-launchprofile.html#cfn-nimblestudio-launchprofile-ec2subnetids

LaunchProfileProtocolVersions

Properties for defining a CfnLaunchProfile.

public string[] LaunchProfileProtocolVersions { get; set; }
Property Value

string[]

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-nimblestudio-launchprofile.html#cfn-nimblestudio-launchprofile-launchprofileprotocolversions

Name

Properties for defining a CfnLaunchProfile.

public string Name { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-nimblestudio-launchprofile.html#cfn-nimblestudio-launchprofile-name

StreamConfiguration

Properties for defining a CfnLaunchProfile.

public object StreamConfiguration { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-nimblestudio-launchprofile.html#cfn-nimblestudio-launchprofile-streamconfiguration

StudioComponentIds

Properties for defining a CfnLaunchProfile.

public string[] StudioComponentIds { get; set; }
Property Value

string[]

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-nimblestudio-launchprofile.html#cfn-nimblestudio-launchprofile-studiocomponentids

StudioId

Properties for defining a CfnLaunchProfile.

public string StudioId { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-nimblestudio-launchprofile.html#cfn-nimblestudio-launchprofile-studioid

Tags

Properties for defining a CfnLaunchProfile.

public IDictionary<string, string>? Tags { get; set; }
Property Value

IDictionary<string, string>

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-nimblestudio-launchprofile.html#cfn-nimblestudio-launchprofile-tags

Implements

ICfnLaunchProfileProps
Back to top Generated by DocFX