Interface CfnFleet.ServerProcessProperty

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

@Stability(Stable) public static interface CfnFleet.ServerProcessProperty extends software.amazon.jsii.JsiiSerializable
A set of instructions for launching server processes on each instance in a fleet.

Server processes run either an executable in a custom game build or a Realtime Servers script.

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.gamelift.*;
 ServerProcessProperty serverProcessProperty = ServerProcessProperty.builder()
         .concurrentExecutions(123)
         .launchPath("launchPath")
         // the properties below are optional
         .parameters("parameters")
         .build();
 

See Also: