StartDeploymentRequest

public struct StartDeploymentRequest : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • The unique ID for an Amplify app.

    Declaration

    Swift

    public let appId: String
  • The name for the branch, for the job.

    Declaration

    Swift

    public let branchName: String
  • The job ID for this deployment, generated by the create deployment request.

    Declaration

    Swift

    public let jobId: String?
  • The source URL for this deployment, used when calling start deployment without create deployment. The source URL can be any HTTP GET URL that is publicly accessible and downloads a single .zip file.

    Declaration

    Swift

    public let sourceUrl: String?
  • Undocumented

    Declaration

    Swift

    public init(appId: String, branchName: String, jobId: String? = nil, sourceUrl: String? = nil)
  • Declaration

    Swift

    public func validate(name: String) throws