Class CfnStack.StreamingExperienceSettingsProperty
The streaming protocol that you want your stack to prefer.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.AppStream
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnStack.StreamingExperienceSettingsProperty : CfnStack.IStreamingExperienceSettingsProperty
Syntax (vb)
Public Class CfnStack.StreamingExperienceSettingsProperty Implements CfnStack.IStreamingExperienceSettingsProperty
Remarks
This can be UDP or TCP. Currently, UDP is only supported in the Windows native client.
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.AppStream;
var streamingExperienceSettingsProperty = new StreamingExperienceSettingsProperty {
PreferredProtocol = "preferredProtocol"
};
Synopsis
Constructors
StreamingExperienceSettingsProperty() | The streaming protocol that you want your stack to prefer. |
Properties
PreferredProtocol | The preferred protocol that you want to use while streaming your application. |
Constructors
StreamingExperienceSettingsProperty()
The streaming protocol that you want your stack to prefer.
public StreamingExperienceSettingsProperty()
Remarks
This can be UDP or TCP. Currently, UDP is only supported in the Windows native client.
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.AppStream;
var streamingExperienceSettingsProperty = new StreamingExperienceSettingsProperty {
PreferredProtocol = "preferredProtocol"
};
Properties
PreferredProtocol
The preferred protocol that you want to use while streaming your application.
public string? PreferredProtocol { get; set; }