PutThirdPartyJobSuccessResultInput

public struct PutThirdPartyJobSuccessResultInput : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • The clientToken portion of the clientId and clientToken pair used to verify that the calling entity is allowed access to the job and its details.

    Declaration

    Swift

    public let clientToken: String
  • A token generated by a job worker, such as an AWS CodeDeploy deployment ID, that a successful job provides to identify a partner 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 partner action. When the action is complete, no continuation token should be supplied.

    Declaration

    Swift

    public let continuationToken: String?
  • Represents information about a current revision.

    Declaration

    Swift

    public let currentRevision: CurrentRevision?
  • The details of the actions taken and results produced on an artifact as it passes through stages in the pipeline.

    Declaration

    Swift

    public let executionDetails: ExecutionDetails?
  • The ID of the job that successfully completed. This is the same ID returned from PollForThirdPartyJobs.

    Declaration

    Swift

    public let jobId: String
  • Undocumented

    Declaration

    Swift

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

    Swift

    public func validate(name: String) throws