ProcessDetails

public struct ProcessDetails : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • Indicates when the process was launched. Uses the date-time format specified in RFC 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces. For example, 2020-03-22T13:22:13.933Z.

    Declaration

    Swift

    public let launchedAt: String?
  • The name of the process.

    Declaration

    Swift

    public let name: String?
  • The parent process ID.

    Declaration

    Swift

    public let parentPid: Int?
  • The path to the process executable.

    Declaration

    Swift

    public let path: String?
  • pid

    The process ID.

    Declaration

    Swift

    public let pid: Int?
  • Indicates when the process was terminated. Uses the date-time format specified in RFC 3339 section 5.6, Internet Date/Time Format. The value cannot contain spaces. For example, 2020-03-22T13:22:13.933Z.

    Declaration

    Swift

    public let terminatedAt: String?
  • Undocumented

    Declaration

    Swift

    public init(launchedAt: String? = nil, name: String? = nil, parentPid: Int? = nil, path: String? = nil, pid: Int? = nil, terminatedAt: String? = nil)
  • Declaration

    Swift

    public func validate(name: String) throws