ThirdPartyJobData

public struct ThirdPartyJobData : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • Represents information about an action configuration.

    Declaration

    Swift

    public let actionConfiguration: ActionConfiguration?
  • Represents information about an action type.

    Declaration

    Swift

    public let actionTypeId: ActionTypeId?
  • Represents an AWS session credentials object. These credentials are temporary credentials that are issued by AWS Secure Token Service (STS). They can be used to access input and output artifacts in the S3 bucket used to store artifact for the pipeline in AWS CodePipeline.

    Declaration

    Swift

    public let artifactCredentials: AWSSessionCredentials?
  • A system-generated token, such as a AWS CodeDeploy deployment ID, that a job requires to continue the job asynchronously.

    Declaration

    Swift

    public let continuationToken: String?
  • The encryption key used to encrypt and decrypt data in the artifact store for the pipeline, such as an AWS Key Management Service (AWS KMS) key. This is optional and might not be present.

    Declaration

    Swift

    public let encryptionKey: EncryptionKey?
  • The name of the artifact that is worked on by the action, if any. This name might be system-generated, such as “MyApp”, or it might be defined by the user when the action is created. The input artifact name must match the name of an output artifact generated by an action in an earlier action or stage of the pipeline.

    Declaration

    Swift

    public let inputArtifacts: [Artifact]?
  • The name of the artifact that is the result of the action, if any. This name might be system-generated, such as “MyBuiltApp”, or it might be defined by the user when the action is created.

    Declaration

    Swift

    public let outputArtifacts: [Artifact]?
  • Represents information about a pipeline to a job worker. Does not include pipelineArn and pipelineExecutionId for ThirdParty jobs.

    Declaration

    Swift

    public let pipelineContext: PipelineContext?
  • Undocumented

    Declaration

    Swift

    public init(actionConfiguration: ActionConfiguration? = nil, actionTypeId: ActionTypeId? = nil, artifactCredentials: AWSSessionCredentials? = nil, continuationToken: String? = nil, encryptionKey: EncryptionKey? = nil, inputArtifacts: [Artifact]? = nil, outputArtifacts: [Artifact]? = nil, pipelineContext: PipelineContext? = nil)