DeploymentLaunchConfig

public struct DeploymentLaunchConfig : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • An array of key/value pairs specifying environment variables for the robot application

    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 deployment post-launch file. This file will be executed after the launch file.

    Declaration

    Swift

    public let postLaunchFile: String?
  • The deployment pre-launch file. This file will be executed prior to the launch file.

    Declaration

    Swift

    public let preLaunchFile: String?
  • Undocumented

    Declaration

    Swift

    public init(environmentVariables: [String : String]? = nil, launchFile: String, packageName: String, postLaunchFile: String? = nil, preLaunchFile: String? = nil)
  • Declaration

    Swift

    public func validate(name: String) throws