ContainerStateChange

public struct ContainerStateChange : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • The name of the container.

    Declaration

    Swift

    public let containerName: String?
  • The exit code for the container, if the state change is a result of the container exiting.

    Declaration

    Swift

    public let exitCode: Int?
  • The container image SHA 256 digest.

    Declaration

    Swift

    public let imageDigest: String?
  • Any network bindings associated with the container.

    Declaration

    Swift

    public let networkBindings: [NetworkBinding]?
  • The reason for the state change.

    Declaration

    Swift

    public let reason: String?
  • The ID of the Docker container.

    Declaration

    Swift

    public let runtimeId: String?
  • The status of the container.

    Declaration

    Swift

    public let status: String?
  • Undocumented

    Declaration

    Swift

    public init(containerName: String? = nil, exitCode: Int? = nil, imageDigest: String? = nil, networkBindings: [NetworkBinding]? = nil, reason: String? = nil, runtimeId: String? = nil, status: String? = nil)