Class: Aws::Amplify::Types::CreateDeploymentResult

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#file_upload_urlsHash<String,String>

When the ‘fileMap` argument is provided in the request, `fileUploadUrls` will contain a map of file names to upload URLs.

Returns:

  • (Hash<String,String>)


965
966
967
968
969
970
971
# File 'lib/aws-sdk-amplify/types.rb', line 965

class CreateDeploymentResult < Struct.new(
  :job_id,
  :file_upload_urls,
  :zip_upload_url)
  SENSITIVE = []
  include Aws::Structure
end

#job_idString

The job ID for this deployment. will supply to start deployment api.

Returns:

  • (String)


965
966
967
968
969
970
971
# File 'lib/aws-sdk-amplify/types.rb', line 965

class CreateDeploymentResult < Struct.new(
  :job_id,
  :file_upload_urls,
  :zip_upload_url)
  SENSITIVE = []
  include Aws::Structure
end

#zip_upload_urlString

When the ‘fileMap` argument is not provided in the request, this `zipUploadUrl` is returned.

Returns:

  • (String)


965
966
967
968
969
970
971
# File 'lib/aws-sdk-amplify/types.rb', line 965

class CreateDeploymentResult < Struct.new(
  :job_id,
  :file_upload_urls,
  :zip_upload_url)
  SENSITIVE = []
  include Aws::Structure
end