Class: Aws::Amplify::Types::CreateDeploymentRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Amplify::Types::CreateDeploymentRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-amplify/types.rb
Overview
The request structure for the create a new 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.
-
#file_map ⇒ Hash<String,String>
An optional file map that contains the file name as the key and the file content md5 hash as the value.
Instance Attribute Details
#app_id ⇒ String
The unique ID for an Amplify app.
1017 1018 1019 1020 1021 1022 1023 |
# File 'lib/aws-sdk-amplify/types.rb', line 1017 class CreateDeploymentRequest < Struct.new( :app_id, :branch_name, :file_map) SENSITIVE = [] include Aws::Structure end |
#branch_name ⇒ String
The name of the branch to use for the job.
1017 1018 1019 1020 1021 1022 1023 |
# File 'lib/aws-sdk-amplify/types.rb', line 1017 class CreateDeploymentRequest < Struct.new( :app_id, :branch_name, :file_map) SENSITIVE = [] include Aws::Structure end |
#file_map ⇒ Hash<String,String>
An optional file map that contains the file name as the key and the file content md5 hash as the value. If this argument is provided, the service will generate a unique upload URL per file. Otherwise, the service will only generate a single upload URL for the zipped files.
1017 1018 1019 1020 1021 1022 1023 |
# File 'lib/aws-sdk-amplify/types.rb', line 1017 class CreateDeploymentRequest < Struct.new( :app_id, :branch_name, :file_map) SENSITIVE = [] include Aws::Structure end |