Class: Aws::Amplify::Types::GetJobRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Amplify::Types::GetJobRequest
- Defined in:
- gems/aws-sdk-amplify/lib/aws-sdk-amplify/types.rb
Overview
Note:
When making an API call, you may pass GetJobRequest data as a hash:
{
app_id: "AppId", # required
branch_name: "BranchName", # required
job_id: "JobId", # required
}
The request structure for the get job request.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#app_id ⇒ String
The unique ID for an Amplify app.
-
#branch_name ⇒ String
The branch name for the job.
-
#job_id ⇒ String
The unique ID for the job.
Instance Attribute Details
#app_id ⇒ String
The unique ID for an Amplify app.
1726 1727 1728 1729 1730 1731 1732 |
# File 'gems/aws-sdk-amplify/lib/aws-sdk-amplify/types.rb', line 1726 class GetJobRequest < Struct.new( :app_id, :branch_name, :job_id) SENSITIVE = [] include Aws::Structure end |
#branch_name ⇒ String
The branch name for the job.
1726 1727 1728 1729 1730 1731 1732 |
# File 'gems/aws-sdk-amplify/lib/aws-sdk-amplify/types.rb', line 1726 class GetJobRequest < Struct.new( :app_id, :branch_name, :job_id) SENSITIVE = [] include Aws::Structure end |
#job_id ⇒ String
The unique ID for the job.
1726 1727 1728 1729 1730 1731 1732 |
# File 'gems/aws-sdk-amplify/lib/aws-sdk-amplify/types.rb', line 1726 class GetJobRequest < Struct.new( :app_id, :branch_name, :job_id) SENSITIVE = [] include Aws::Structure end |