Class: Aws::Amplify::Types::StartDeploymentRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Amplify::Types::StartDeploymentRequest
- 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
-
#app_id ⇒ String
The unique ID for an Amplify app.
-
#branch_name ⇒ String
The name of the branch to use for the deployment job.
-
#job_id ⇒ String
The job ID for this deployment that is generated by the
CreateDeploymentrequest. -
#source_url ⇒ String
The source URL for the deployment that is used when calling
StartDeploymentwithoutCreateDeployment. -
#source_url_type ⇒ String
The type of source specified by the
sourceURL.
Instance Attribute Details
#app_id ⇒ String
The unique ID for an Amplify app.
2543 2544 2545 2546 2547 2548 2549 2550 2551 |
# File 'gems/aws-sdk-amplify/lib/aws-sdk-amplify/types.rb', line 2543 class StartDeploymentRequest < Struct.new( :app_id, :branch_name, :job_id, :source_url, :source_url_type) SENSITIVE = [] include Aws::Structure end |
#branch_name ⇒ String
The name of the branch to use for the deployment job.
2543 2544 2545 2546 2547 2548 2549 2550 2551 |
# File 'gems/aws-sdk-amplify/lib/aws-sdk-amplify/types.rb', line 2543 class StartDeploymentRequest < Struct.new( :app_id, :branch_name, :job_id, :source_url, :source_url_type) SENSITIVE = [] include Aws::Structure end |
#job_id ⇒ String
The job ID for this deployment that is generated by the
CreateDeployment request.
2543 2544 2545 2546 2547 2548 2549 2550 2551 |
# File 'gems/aws-sdk-amplify/lib/aws-sdk-amplify/types.rb', line 2543 class StartDeploymentRequest < Struct.new( :app_id, :branch_name, :job_id, :source_url, :source_url_type) SENSITIVE = [] include Aws::Structure end |
#source_url ⇒ String
The source URL for the deployment that is used when calling
StartDeployment without CreateDeployment. The source URL can be
either an HTTP GET URL that is publicly accessible and downloads a
single .zip file, or an Amazon S3 bucket and prefix.
2543 2544 2545 2546 2547 2548 2549 2550 2551 |
# File 'gems/aws-sdk-amplify/lib/aws-sdk-amplify/types.rb', line 2543 class StartDeploymentRequest < Struct.new( :app_id, :branch_name, :job_id, :source_url, :source_url_type) SENSITIVE = [] include Aws::Structure end |
#source_url_type ⇒ String
The type of source specified by the sourceURL. If the value is
ZIP, the source is a .zip file. If the value is BUCKET_PREFIX,
the source is an Amazon S3 bucket and prefix. If no value is
specified, the default is ZIP.
2543 2544 2545 2546 2547 2548 2549 2550 2551 |
# File 'gems/aws-sdk-amplify/lib/aws-sdk-amplify/types.rb', line 2543 class StartDeploymentRequest < Struct.new( :app_id, :branch_name, :job_id, :source_url, :source_url_type) SENSITIVE = [] include Aws::Structure end |