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 JobDetails
clone()
boolean
equals(Object obj)
String
getAccountId()
The AWS account ID associated with the job.JobData
getData()
String
getId()
The unique system-generated ID of the job.int
hashCode()
void
setAccountId(String accountId)
The AWS account ID associated with the job.void
setData(JobData data)
void
setId(String id)
The unique system-generated ID of the job.String
toString()
Returns a string representation of this object; useful for testing and debugging.JobDetails
withAccountId(String accountId)
The AWS account ID associated with the job.JobDetails
withData(JobData data)
JobDetails
withId(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:
toString
in classObject
- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
clone
public JobDetails clone()
-
-