
com.amazonaws.services.sagemaker.model.TrialComponentSummary Maven / Gradle / Ivy
/*
* Copyright 2015-2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with
* the License. A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
* CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions
* and limitations under the License.
*/
package com.amazonaws.services.sagemaker.model;
import java.io.Serializable;
import javax.annotation.Generated;
import com.amazonaws.protocol.StructuredPojo;
import com.amazonaws.protocol.ProtocolMarshaller;
/**
*
* A summary of the properties of a trial component. To get all the properties, call the DescribeTrialComponent
* API and provide the TrialComponentName
.
*
*
* @see AWS
* API Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class TrialComponentSummary implements Serializable, Cloneable, StructuredPojo {
/**
*
* The name of the trial component.
*
*/
private String trialComponentName;
/**
*
* The ARN of the trial component.
*
*/
private String trialComponentArn;
/**
*
* The name of the component as displayed. If DisplayName
isn't specified,
* TrialComponentName
is displayed.
*
*/
private String displayName;
private TrialComponentSource trialComponentSource;
/**
*
* The status of the component. States include:
*
*
* -
*
* InProgress
*
*
* -
*
* Completed
*
*
* -
*
* Failed
*
*
*
*/
private TrialComponentStatus status;
/**
*
* When the component started.
*
*/
private java.util.Date startTime;
/**
*
* When the component ended.
*
*/
private java.util.Date endTime;
/**
*
* When the component was created.
*
*/
private java.util.Date creationTime;
/**
*
* Who created the component.
*
*/
private UserContext createdBy;
/**
*
* When the component was last modified.
*
*/
private java.util.Date lastModifiedTime;
/**
*
* Who last modified the component.
*
*/
private UserContext lastModifiedBy;
/**
*
* The name of the trial component.
*
*
* @param trialComponentName
* The name of the trial component.
*/
public void setTrialComponentName(String trialComponentName) {
this.trialComponentName = trialComponentName;
}
/**
*
* The name of the trial component.
*
*
* @return The name of the trial component.
*/
public String getTrialComponentName() {
return this.trialComponentName;
}
/**
*
* The name of the trial component.
*
*
* @param trialComponentName
* The name of the trial component.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public TrialComponentSummary withTrialComponentName(String trialComponentName) {
setTrialComponentName(trialComponentName);
return this;
}
/**
*
* The ARN of the trial component.
*
*
* @param trialComponentArn
* The ARN of the trial component.
*/
public void setTrialComponentArn(String trialComponentArn) {
this.trialComponentArn = trialComponentArn;
}
/**
*
* The ARN of the trial component.
*
*
* @return The ARN of the trial component.
*/
public String getTrialComponentArn() {
return this.trialComponentArn;
}
/**
*
* The ARN of the trial component.
*
*
* @param trialComponentArn
* The ARN of the trial component.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public TrialComponentSummary withTrialComponentArn(String trialComponentArn) {
setTrialComponentArn(trialComponentArn);
return this;
}
/**
*
* The name of the component as displayed. If DisplayName
isn't specified,
* TrialComponentName
is displayed.
*
*
* @param displayName
* The name of the component as displayed. If DisplayName
isn't specified,
* TrialComponentName
is displayed.
*/
public void setDisplayName(String displayName) {
this.displayName = displayName;
}
/**
*
* The name of the component as displayed. If DisplayName
isn't specified,
* TrialComponentName
is displayed.
*
*
* @return The name of the component as displayed. If DisplayName
isn't specified,
* TrialComponentName
is displayed.
*/
public String getDisplayName() {
return this.displayName;
}
/**
*
* The name of the component as displayed. If DisplayName
isn't specified,
* TrialComponentName
is displayed.
*
*
* @param displayName
* The name of the component as displayed. If DisplayName
isn't specified,
* TrialComponentName
is displayed.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public TrialComponentSummary withDisplayName(String displayName) {
setDisplayName(displayName);
return this;
}
/**
* @param trialComponentSource
*/
public void setTrialComponentSource(TrialComponentSource trialComponentSource) {
this.trialComponentSource = trialComponentSource;
}
/**
* @return
*/
public TrialComponentSource getTrialComponentSource() {
return this.trialComponentSource;
}
/**
* @param trialComponentSource
* @return Returns a reference to this object so that method calls can be chained together.
*/
public TrialComponentSummary withTrialComponentSource(TrialComponentSource trialComponentSource) {
setTrialComponentSource(trialComponentSource);
return this;
}
/**
*
* The status of the component. States include:
*
*
* -
*
* InProgress
*
*
* -
*
* Completed
*
*
* -
*
* Failed
*
*
*
*
* @param status
* The status of the component. States include:
*
* -
*
* InProgress
*
*
* -
*
* Completed
*
*
* -
*
* Failed
*
*
*/
public void setStatus(TrialComponentStatus status) {
this.status = status;
}
/**
*
* The status of the component. States include:
*
*
* -
*
* InProgress
*
*
* -
*
* Completed
*
*
* -
*
* Failed
*
*
*
*
* @return The status of the component. States include:
*
* -
*
* InProgress
*
*
* -
*
* Completed
*
*
* -
*
* Failed
*
*
*/
public TrialComponentStatus getStatus() {
return this.status;
}
/**
*
* The status of the component. States include:
*
*
* -
*
* InProgress
*
*
* -
*
* Completed
*
*
* -
*
* Failed
*
*
*
*
* @param status
* The status of the component. States include:
*
* -
*
* InProgress
*
*
* -
*
* Completed
*
*
* -
*
* Failed
*
*
* @return Returns a reference to this object so that method calls can be chained together.
*/
public TrialComponentSummary withStatus(TrialComponentStatus status) {
setStatus(status);
return this;
}
/**
*
* When the component started.
*
*
* @param startTime
* When the component started.
*/
public void setStartTime(java.util.Date startTime) {
this.startTime = startTime;
}
/**
*
* When the component started.
*
*
* @return When the component started.
*/
public java.util.Date getStartTime() {
return this.startTime;
}
/**
*
* When the component started.
*
*
* @param startTime
* When the component started.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public TrialComponentSummary withStartTime(java.util.Date startTime) {
setStartTime(startTime);
return this;
}
/**
*
* When the component ended.
*
*
* @param endTime
* When the component ended.
*/
public void setEndTime(java.util.Date endTime) {
this.endTime = endTime;
}
/**
*
* When the component ended.
*
*
* @return When the component ended.
*/
public java.util.Date getEndTime() {
return this.endTime;
}
/**
*
* When the component ended.
*
*
* @param endTime
* When the component ended.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public TrialComponentSummary withEndTime(java.util.Date endTime) {
setEndTime(endTime);
return this;
}
/**
*
* When the component was created.
*
*
* @param creationTime
* When the component was created.
*/
public void setCreationTime(java.util.Date creationTime) {
this.creationTime = creationTime;
}
/**
*
* When the component was created.
*
*
* @return When the component was created.
*/
public java.util.Date getCreationTime() {
return this.creationTime;
}
/**
*
* When the component was created.
*
*
* @param creationTime
* When the component was created.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public TrialComponentSummary withCreationTime(java.util.Date creationTime) {
setCreationTime(creationTime);
return this;
}
/**
*
* Who created the component.
*
*
* @param createdBy
* Who created the component.
*/
public void setCreatedBy(UserContext createdBy) {
this.createdBy = createdBy;
}
/**
*
* Who created the component.
*
*
* @return Who created the component.
*/
public UserContext getCreatedBy() {
return this.createdBy;
}
/**
*
* Who created the component.
*
*
* @param createdBy
* Who created the component.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public TrialComponentSummary withCreatedBy(UserContext createdBy) {
setCreatedBy(createdBy);
return this;
}
/**
*
* When the component was last modified.
*
*
* @param lastModifiedTime
* When the component was last modified.
*/
public void setLastModifiedTime(java.util.Date lastModifiedTime) {
this.lastModifiedTime = lastModifiedTime;
}
/**
*
* When the component was last modified.
*
*
* @return When the component was last modified.
*/
public java.util.Date getLastModifiedTime() {
return this.lastModifiedTime;
}
/**
*
* When the component was last modified.
*
*
* @param lastModifiedTime
* When the component was last modified.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public TrialComponentSummary withLastModifiedTime(java.util.Date lastModifiedTime) {
setLastModifiedTime(lastModifiedTime);
return this;
}
/**
*
* Who last modified the component.
*
*
* @param lastModifiedBy
* Who last modified the component.
*/
public void setLastModifiedBy(UserContext lastModifiedBy) {
this.lastModifiedBy = lastModifiedBy;
}
/**
*
* Who last modified the component.
*
*
* @return Who last modified the component.
*/
public UserContext getLastModifiedBy() {
return this.lastModifiedBy;
}
/**
*
* Who last modified the component.
*
*
* @param lastModifiedBy
* Who last modified the component.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public TrialComponentSummary withLastModifiedBy(UserContext lastModifiedBy) {
setLastModifiedBy(lastModifiedBy);
return this;
}
/**
* Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be
* redacted from this string using a placeholder value.
*
* @return A string representation of this object.
*
* @see java.lang.Object#toString()
*/
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("{");
if (getTrialComponentName() != null)
sb.append("TrialComponentName: ").append(getTrialComponentName()).append(",");
if (getTrialComponentArn() != null)
sb.append("TrialComponentArn: ").append(getTrialComponentArn()).append(",");
if (getDisplayName() != null)
sb.append("DisplayName: ").append(getDisplayName()).append(",");
if (getTrialComponentSource() != null)
sb.append("TrialComponentSource: ").append(getTrialComponentSource()).append(",");
if (getStatus() != null)
sb.append("Status: ").append(getStatus()).append(",");
if (getStartTime() != null)
sb.append("StartTime: ").append(getStartTime()).append(",");
if (getEndTime() != null)
sb.append("EndTime: ").append(getEndTime()).append(",");
if (getCreationTime() != null)
sb.append("CreationTime: ").append(getCreationTime()).append(",");
if (getCreatedBy() != null)
sb.append("CreatedBy: ").append(getCreatedBy()).append(",");
if (getLastModifiedTime() != null)
sb.append("LastModifiedTime: ").append(getLastModifiedTime()).append(",");
if (getLastModifiedBy() != null)
sb.append("LastModifiedBy: ").append(getLastModifiedBy());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof TrialComponentSummary == false)
return false;
TrialComponentSummary other = (TrialComponentSummary) obj;
if (other.getTrialComponentName() == null ^ this.getTrialComponentName() == null)
return false;
if (other.getTrialComponentName() != null && other.getTrialComponentName().equals(this.getTrialComponentName()) == false)
return false;
if (other.getTrialComponentArn() == null ^ this.getTrialComponentArn() == null)
return false;
if (other.getTrialComponentArn() != null && other.getTrialComponentArn().equals(this.getTrialComponentArn()) == false)
return false;
if (other.getDisplayName() == null ^ this.getDisplayName() == null)
return false;
if (other.getDisplayName() != null && other.getDisplayName().equals(this.getDisplayName()) == false)
return false;
if (other.getTrialComponentSource() == null ^ this.getTrialComponentSource() == null)
return false;
if (other.getTrialComponentSource() != null && other.getTrialComponentSource().equals(this.getTrialComponentSource()) == false)
return false;
if (other.getStatus() == null ^ this.getStatus() == null)
return false;
if (other.getStatus() != null && other.getStatus().equals(this.getStatus()) == false)
return false;
if (other.getStartTime() == null ^ this.getStartTime() == null)
return false;
if (other.getStartTime() != null && other.getStartTime().equals(this.getStartTime()) == false)
return false;
if (other.getEndTime() == null ^ this.getEndTime() == null)
return false;
if (other.getEndTime() != null && other.getEndTime().equals(this.getEndTime()) == false)
return false;
if (other.getCreationTime() == null ^ this.getCreationTime() == null)
return false;
if (other.getCreationTime() != null && other.getCreationTime().equals(this.getCreationTime()) == false)
return false;
if (other.getCreatedBy() == null ^ this.getCreatedBy() == null)
return false;
if (other.getCreatedBy() != null && other.getCreatedBy().equals(this.getCreatedBy()) == false)
return false;
if (other.getLastModifiedTime() == null ^ this.getLastModifiedTime() == null)
return false;
if (other.getLastModifiedTime() != null && other.getLastModifiedTime().equals(this.getLastModifiedTime()) == false)
return false;
if (other.getLastModifiedBy() == null ^ this.getLastModifiedBy() == null)
return false;
if (other.getLastModifiedBy() != null && other.getLastModifiedBy().equals(this.getLastModifiedBy()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getTrialComponentName() == null) ? 0 : getTrialComponentName().hashCode());
hashCode = prime * hashCode + ((getTrialComponentArn() == null) ? 0 : getTrialComponentArn().hashCode());
hashCode = prime * hashCode + ((getDisplayName() == null) ? 0 : getDisplayName().hashCode());
hashCode = prime * hashCode + ((getTrialComponentSource() == null) ? 0 : getTrialComponentSource().hashCode());
hashCode = prime * hashCode + ((getStatus() == null) ? 0 : getStatus().hashCode());
hashCode = prime * hashCode + ((getStartTime() == null) ? 0 : getStartTime().hashCode());
hashCode = prime * hashCode + ((getEndTime() == null) ? 0 : getEndTime().hashCode());
hashCode = prime * hashCode + ((getCreationTime() == null) ? 0 : getCreationTime().hashCode());
hashCode = prime * hashCode + ((getCreatedBy() == null) ? 0 : getCreatedBy().hashCode());
hashCode = prime * hashCode + ((getLastModifiedTime() == null) ? 0 : getLastModifiedTime().hashCode());
hashCode = prime * hashCode + ((getLastModifiedBy() == null) ? 0 : getLastModifiedBy().hashCode());
return hashCode;
}
@Override
public TrialComponentSummary clone() {
try {
return (TrialComponentSummary) super.clone();
} catch (CloneNotSupportedException e) {
throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e);
}
}
@com.amazonaws.annotation.SdkInternalApi
@Override
public void marshall(ProtocolMarshaller protocolMarshaller) {
com.amazonaws.services.sagemaker.model.transform.TrialComponentSummaryMarshaller.getInstance().marshall(this, protocolMarshaller);
}
}