PutJobSuccessResultInput

public struct PutJobSuccessResultInput : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • A token generated by a job worker, such as an AWS CodeDeploy deployment ID, that a successful job provides to identify a custom action in progress. Future jobs use this token to identify the running instance of the action. It can be reused to return more information about the progress of the custom action. When the action is complete, no continuation token should be supplied.

    Declaration

    Swift

    public let continuationToken: String?
  • The ID of the current revision of the artifact successfully worked on by the job.

    Declaration

    Swift

    public let currentRevision: CurrentRevision?
  • The execution details of the successful job, such as the actions taken by the job worker.

    Declaration

    Swift

    public let executionDetails: ExecutionDetails?
  • The unique system-generated ID of the job that succeeded. This is the same ID returned from PollForJobs.

    Declaration

    Swift

    public let jobId: String
  • Key-value pairs produced as output by a job worker that can be made available to a downstream action configuration. outputVariables can be included only when there is no continuation token on the request.

    Declaration

    Swift

    public let outputVariables: [String : String]?
  • Undocumented

    Declaration

    Swift

    public init(continuationToken: String? = nil, currentRevision: CurrentRevision? = nil, executionDetails: ExecutionDetails? = nil, jobId: String, outputVariables: [String : String]? = nil)
  • Declaration

    Swift

    public func validate(name: String) throws