Class: Aws::Amplify::Types::StartDeploymentRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Amplify::Types::StartDeploymentRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-amplify/types.rb
Overview
The request structure for the start a deployment request.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#app_id ⇒ String
The unique ID for an Amplify app.
-
#branch_name ⇒ String
The name of the branch to use for the job.
-
#job_id ⇒ String
The job ID for this deployment, generated by the create deployment request.
-
#source_url ⇒ String
The source URL for this deployment, used when calling start deployment without create deployment.
Instance Attribute Details
#app_id ⇒ String
The unique ID for an Amplify app.
2354 2355 2356 2357 2358 2359 2360 2361 |
# File 'lib/aws-sdk-amplify/types.rb', line 2354 class StartDeploymentRequest < Struct.new( :app_id, :branch_name, :job_id, :source_url) SENSITIVE = [] include Aws::Structure end |
#branch_name ⇒ String
The name of the branch to use for the job.
2354 2355 2356 2357 2358 2359 2360 2361 |
# File 'lib/aws-sdk-amplify/types.rb', line 2354 class StartDeploymentRequest < Struct.new( :app_id, :branch_name, :job_id, :source_url) SENSITIVE = [] include Aws::Structure end |
#job_id ⇒ String
The job ID for this deployment, generated by the create deployment request.
2354 2355 2356 2357 2358 2359 2360 2361 |
# File 'lib/aws-sdk-amplify/types.rb', line 2354 class StartDeploymentRequest < Struct.new( :app_id, :branch_name, :job_id, :source_url) SENSITIVE = [] include Aws::Structure end |
#source_url ⇒ 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.
2354 2355 2356 2357 2358 2359 2360 2361 |
# File 'lib/aws-sdk-amplify/types.rb', line 2354 class StartDeploymentRequest < Struct.new( :app_id, :branch_name, :job_id, :source_url) SENSITIVE = [] include Aws::Structure end |