Class JobDetails
- java.lang.Object
-
- com.amazonaws.services.codepipeline.model.JobDetails
-
- All Implemented Interfaces:
Serializable,Cloneable
public class JobDetails extends Object implements Serializable, Cloneable
Represents information about the details of a job.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description JobDetails()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description JobDetailsclone()booleanequals(Object obj)StringgetAccountId()The AWS account ID associated with the job.JobDatagetData()StringgetId()The unique system-generated ID of the job.inthashCode()voidsetAccountId(String accountId)The AWS account ID associated with the job.voidsetData(JobData data)voidsetId(String id)The unique system-generated ID of the job.StringtoString()Returns a string representation of this object; useful for testing and debugging.JobDetailswithAccountId(String accountId)The AWS account ID associated with the job.JobDetailswithData(JobData data)JobDetailswithId(String id)The unique system-generated ID of the job.
-
-
-
Method Detail
-
setId
public void setId(String id)
The unique system-generated ID of the job.
- Parameters:
id- The unique system-generated ID of the job.
-
getId
public String getId()
The unique system-generated ID of the job.
- Returns:
- The unique system-generated ID of the job.
-
withId
public JobDetails withId(String id)
The unique system-generated ID of the job.
- Parameters:
id- The unique system-generated ID of the job.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setData
public void setData(JobData data)
- Parameters:
data-
-
getData
public JobData getData()
- Returns:
-
withData
public JobDetails withData(JobData data)
- Parameters:
data-- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setAccountId
public void setAccountId(String accountId)
The AWS account ID associated with the job.
- Parameters:
accountId- The AWS account ID associated with the job.
-
getAccountId
public String getAccountId()
The AWS account ID associated with the job.
- Returns:
- The AWS account ID associated with the job.
-
withAccountId
public JobDetails withAccountId(String accountId)
The AWS account ID associated with the job.
- Parameters:
accountId- The AWS account ID associated with the job.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
toString
public String toString()
Returns a string representation of this object; useful for testing and debugging.- Overrides:
toStringin classObject- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
clone
public JobDetails clone()
-
-