* The unique name of the report plan. *
*/ private String reportPlanName; /** ** An Amazon Resource Name (ARN) that uniquely identifies a resource. The format of the ARN depends on the resource * type. *
*/ private String reportPlanArn; /** *
* The date and time a backup vault is created, in Unix format and Coordinated Universal Time (UTC). The value of
* CreationTime
is accurate to milliseconds. For example, the value 1516925490.087 represents Friday,
* January 26, 2018 12:11:30.087 AM.
*
* The unique name of the report plan. *
* * @param reportPlanName * The unique name of the report plan. */ public void setReportPlanName(String reportPlanName) { this.reportPlanName = reportPlanName; } /** ** The unique name of the report plan. *
* * @return The unique name of the report plan. */ public String getReportPlanName() { return this.reportPlanName; } /** ** The unique name of the report plan. *
* * @param reportPlanName * The unique name of the report plan. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateReportPlanResult withReportPlanName(String reportPlanName) { setReportPlanName(reportPlanName); return this; } /** ** An Amazon Resource Name (ARN) that uniquely identifies a resource. The format of the ARN depends on the resource * type. *
* * @param reportPlanArn * An Amazon Resource Name (ARN) that uniquely identifies a resource. The format of the ARN depends on the * resource type. */ public void setReportPlanArn(String reportPlanArn) { this.reportPlanArn = reportPlanArn; } /** ** An Amazon Resource Name (ARN) that uniquely identifies a resource. The format of the ARN depends on the resource * type. *
* * @return An Amazon Resource Name (ARN) that uniquely identifies a resource. The format of the ARN depends on the * resource type. */ public String getReportPlanArn() { return this.reportPlanArn; } /** ** An Amazon Resource Name (ARN) that uniquely identifies a resource. The format of the ARN depends on the resource * type. *
* * @param reportPlanArn * An Amazon Resource Name (ARN) that uniquely identifies a resource. The format of the ARN depends on the * resource type. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateReportPlanResult withReportPlanArn(String reportPlanArn) { setReportPlanArn(reportPlanArn); return this; } /** *
* The date and time a backup vault is created, in Unix format and Coordinated Universal Time (UTC). The value of
* CreationTime
is accurate to milliseconds. For example, the value 1516925490.087 represents Friday,
* January 26, 2018 12:11:30.087 AM.
*
CreationTime
is accurate to milliseconds. For example, the value 1516925490.087
* represents Friday, January 26, 2018 12:11:30.087 AM.
*/
public void setCreationTime(java.util.Date creationTime) {
this.creationTime = creationTime;
}
/**
*
* The date and time a backup vault is created, in Unix format and Coordinated Universal Time (UTC). The value of
* CreationTime
is accurate to milliseconds. For example, the value 1516925490.087 represents Friday,
* January 26, 2018 12:11:30.087 AM.
*
CreationTime
is accurate to milliseconds. For example, the value 1516925490.087
* represents Friday, January 26, 2018 12:11:30.087 AM.
*/
public java.util.Date getCreationTime() {
return this.creationTime;
}
/**
*
* The date and time a backup vault is created, in Unix format and Coordinated Universal Time (UTC). The value of
* CreationTime
is accurate to milliseconds. For example, the value 1516925490.087 represents Friday,
* January 26, 2018 12:11:30.087 AM.
*
CreationTime
is accurate to milliseconds. For example, the value 1516925490.087
* represents Friday, January 26, 2018 12:11:30.087 AM.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CreateReportPlanResult withCreationTime(java.util.Date creationTime) {
setCreationTime(creationTime);
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 (getReportPlanName() != null)
sb.append("ReportPlanName: ").append(getReportPlanName()).append(",");
if (getReportPlanArn() != null)
sb.append("ReportPlanArn: ").append(getReportPlanArn()).append(",");
if (getCreationTime() != null)
sb.append("CreationTime: ").append(getCreationTime());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof CreateReportPlanResult == false)
return false;
CreateReportPlanResult other = (CreateReportPlanResult) obj;
if (other.getReportPlanName() == null ^ this.getReportPlanName() == null)
return false;
if (other.getReportPlanName() != null && other.getReportPlanName().equals(this.getReportPlanName()) == false)
return false;
if (other.getReportPlanArn() == null ^ this.getReportPlanArn() == null)
return false;
if (other.getReportPlanArn() != null && other.getReportPlanArn().equals(this.getReportPlanArn()) == false)
return false;
if (other.getCreationTime() == null ^ this.getCreationTime() == null)
return false;
if (other.getCreationTime() != null && other.getCreationTime().equals(this.getCreationTime()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getReportPlanName() == null) ? 0 : getReportPlanName().hashCode());
hashCode = prime * hashCode + ((getReportPlanArn() == null) ? 0 : getReportPlanArn().hashCode());
hashCode = prime * hashCode + ((getCreationTime() == null) ? 0 : getCreationTime().hashCode());
return hashCode;
}
@Override
public CreateReportPlanResult clone() {
try {
return (CreateReportPlanResult) super.clone();
} catch (CloneNotSupportedException e) {
throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e);
}
}
}