Class: Aws::Amplify::Types::CreateDeploymentResult
- Inherits:
-
Struct
- Object
- Struct
- Aws::Amplify::Types::CreateDeploymentResult
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-amplify/types.rb
Overview
The result structure for the create a new deployment request.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#file_upload_urls ⇒ Hash<String,String>
When the ‘fileMap` argument is provided in the request, `fileUploadUrls` will contain a map of file names to upload URLs.
-
#job_id ⇒ String
The job ID for this deployment.
-
#zip_upload_url ⇒ String
When the ‘fileMap` argument is not provided in the request, this `zipUploadUrl` is returned.
Instance Attribute Details
#file_upload_urls ⇒ Hash<String,String>
When the ‘fileMap` argument is provided in the request, `fileUploadUrls` will contain a map of file names to upload URLs.
1043 1044 1045 1046 1047 1048 1049 |
# File 'lib/aws-sdk-amplify/types.rb', line 1043 class CreateDeploymentResult < Struct.new( :job_id, :file_upload_urls, :zip_upload_url) SENSITIVE = [] include Aws::Structure end |
#job_id ⇒ String
The job ID for this deployment. will supply to start deployment api.
1043 1044 1045 1046 1047 1048 1049 |
# File 'lib/aws-sdk-amplify/types.rb', line 1043 class CreateDeploymentResult < Struct.new( :job_id, :file_upload_urls, :zip_upload_url) SENSITIVE = [] include Aws::Structure end |
#zip_upload_url ⇒ String
When the ‘fileMap` argument is not provided in the request, this `zipUploadUrl` is returned.
1043 1044 1045 1046 1047 1048 1049 |
# File 'lib/aws-sdk-amplify/types.rb', line 1043 class CreateDeploymentResult < Struct.new( :job_id, :file_upload_urls, :zip_upload_url) SENSITIVE = [] include Aws::Structure end |