Interface CfnStack.StreamingExperienceSettingsProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnStack.StreamingExperienceSettingsProperty.Jsii$Proxy
Enclosing class:
CfnStack

@Stability(Stable) public static interface CfnStack.StreamingExperienceSettingsProperty extends software.amazon.jsii.JsiiSerializable
The streaming protocol that you want your stack to prefer.

This can be UDP or TCP. Currently, UDP is only supported in the Windows native client.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.appstream.*;
 StreamingExperienceSettingsProperty streamingExperienceSettingsProperty = StreamingExperienceSettingsProperty.builder()
         .preferredProtocol("preferredProtocol")
         .build();
 

See Also: