LaunchConfig

public struct LaunchConfig : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • The environment variables for the application launch.

    Declaration

    Swift

    public let environmentVariables: [String : String]?
  • The launch file name.

    Declaration

    Swift

    public let launchFile: String
  • The package name.

    Declaration

    Swift

    public let packageName: String
  • The port forwarding configuration.

    Declaration

    Swift

    public let portForwardingConfig: PortForwardingConfig?
  • Boolean indicating whether a streaming session will be configured for the application. If True, AWS RoboMaker will configure a connection so you can interact with your application as it is running in the simulation. You must configure and luanch the component. It must have a graphical user interface.

    Declaration

    Swift

    public let streamUI: Bool?
  • Undocumented

    Declaration

    Swift

    public init(environmentVariables: [String : String]? = nil, launchFile: String, packageName: String, portForwardingConfig: PortForwardingConfig? = nil, streamUI: Bool? = nil)
  • Declaration

    Swift

    public func validate(name: String) throws