* The status of the flag isCrossAccountBackupEnabled
.
*
* The date and time that the flag isCrossAccountBackupEnabled
was last updated. This update is in Unix
* format and Coordinated Universal Time (UTC). The value of LastUpdateTime
is accurate to
* milliseconds. For example, the value 1516925490.087 represents Friday, January 26, 2018 12:11:30.087 AM.
*
* The status of the flag isCrossAccountBackupEnabled
.
*
isCrossAccountBackupEnabled
.
*/
public java.util.Map
* The status of the flag isCrossAccountBackupEnabled
.
*
isCrossAccountBackupEnabled
.
*/
public void setGlobalSettings(java.util.Map
* The status of the flag isCrossAccountBackupEnabled
.
*
isCrossAccountBackupEnabled
.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public DescribeGlobalSettingsResult withGlobalSettings(java.util.Map
* The date and time that the flag isCrossAccountBackupEnabled
was last updated. This update is in Unix
* format and Coordinated Universal Time (UTC). The value of LastUpdateTime
is accurate to
* milliseconds. For example, the value 1516925490.087 represents Friday, January 26, 2018 12:11:30.087 AM.
*
isCrossAccountBackupEnabled
was last updated. This update is
* in Unix format and Coordinated Universal Time (UTC). The value of LastUpdateTime
is accurate
* to milliseconds. For example, the value 1516925490.087 represents Friday, January 26, 2018 12:11:30.087
* AM.
*/
public void setLastUpdateTime(java.util.Date lastUpdateTime) {
this.lastUpdateTime = lastUpdateTime;
}
/**
*
* The date and time that the flag isCrossAccountBackupEnabled
was last updated. This update is in Unix
* format and Coordinated Universal Time (UTC). The value of LastUpdateTime
is accurate to
* milliseconds. For example, the value 1516925490.087 represents Friday, January 26, 2018 12:11:30.087 AM.
*
isCrossAccountBackupEnabled
was last updated. This update is
* in Unix format and Coordinated Universal Time (UTC). The value of LastUpdateTime
is accurate
* to milliseconds. For example, the value 1516925490.087 represents Friday, January 26, 2018 12:11:30.087
* AM.
*/
public java.util.Date getLastUpdateTime() {
return this.lastUpdateTime;
}
/**
*
* The date and time that the flag isCrossAccountBackupEnabled
was last updated. This update is in Unix
* format and Coordinated Universal Time (UTC). The value of LastUpdateTime
is accurate to
* milliseconds. For example, the value 1516925490.087 represents Friday, January 26, 2018 12:11:30.087 AM.
*
isCrossAccountBackupEnabled
was last updated. This update is
* in Unix format and Coordinated Universal Time (UTC). The value of LastUpdateTime
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 DescribeGlobalSettingsResult withLastUpdateTime(java.util.Date lastUpdateTime) {
setLastUpdateTime(lastUpdateTime);
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 (getGlobalSettings() != null)
sb.append("GlobalSettings: ").append(getGlobalSettings()).append(",");
if (getLastUpdateTime() != null)
sb.append("LastUpdateTime: ").append(getLastUpdateTime());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof DescribeGlobalSettingsResult == false)
return false;
DescribeGlobalSettingsResult other = (DescribeGlobalSettingsResult) obj;
if (other.getGlobalSettings() == null ^ this.getGlobalSettings() == null)
return false;
if (other.getGlobalSettings() != null && other.getGlobalSettings().equals(this.getGlobalSettings()) == false)
return false;
if (other.getLastUpdateTime() == null ^ this.getLastUpdateTime() == null)
return false;
if (other.getLastUpdateTime() != null && other.getLastUpdateTime().equals(this.getLastUpdateTime()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getGlobalSettings() == null) ? 0 : getGlobalSettings().hashCode());
hashCode = prime * hashCode + ((getLastUpdateTime() == null) ? 0 : getLastUpdateTime().hashCode());
return hashCode;
}
@Override
public DescribeGlobalSettingsResult clone() {
try {
return (DescribeGlobalSettingsResult) super.clone();
} catch (CloneNotSupportedException e) {
throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e);
}
}
}