Class: Aws::Amplify::Types::StartDeploymentRequest

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-amplify/lib/aws-sdk-amplify/types.rb

Overview

The request structure for the start a deployment request.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#app_idString

The unique ID for an Amplify app.

Returns:

  • (String)


2276
2277
2278
2279
2280
2281
2282
2283
# File 'gems/aws-sdk-amplify/lib/aws-sdk-amplify/types.rb', line 2276

class StartDeploymentRequest < Struct.new(
  :app_id,
  :branch_name,
  :job_id,
  :source_url)
  SENSITIVE = []
  include Aws::Structure
end

#branch_nameString

The name of the branch to use for the job.

Returns:

  • (String)


2276
2277
2278
2279
2280
2281
2282
2283
# File 'gems/aws-sdk-amplify/lib/aws-sdk-amplify/types.rb', line 2276

class StartDeploymentRequest < Struct.new(
  :app_id,
  :branch_name,
  :job_id,
  :source_url)
  SENSITIVE = []
  include Aws::Structure
end

#job_idString

The job ID for this deployment, generated by the create deployment request.

Returns:

  • (String)


2276
2277
2278
2279
2280
2281
2282
2283
# File 'gems/aws-sdk-amplify/lib/aws-sdk-amplify/types.rb', line 2276

class StartDeploymentRequest < Struct.new(
  :app_id,
  :branch_name,
  :job_id,
  :source_url)
  SENSITIVE = []
  include Aws::Structure
end

#source_urlString

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.

Returns:

  • (String)


2276
2277
2278
2279
2280
2281
2282
2283
# File 'gems/aws-sdk-amplify/lib/aws-sdk-amplify/types.rb', line 2276

class StartDeploymentRequest < Struct.new(
  :app_id,
  :branch_name,
  :job_id,
  :source_url)
  SENSITIVE = []
  include Aws::Structure
end