* Returns information about log delivery to Amazon CloudWatch Logs. *
*/ private CloudWatchLogDeliveryOptions cloudWatchLogDelivery; /** ** Returns information about log delivery to Amazon CloudWatch Logs. *
* * @param cloudWatchLogDelivery * Returns information about log delivery to Amazon CloudWatch Logs. */ public void setCloudWatchLogDelivery(CloudWatchLogDeliveryOptions cloudWatchLogDelivery) { this.cloudWatchLogDelivery = cloudWatchLogDelivery; } /** ** Returns information about log delivery to Amazon CloudWatch Logs. *
* * @return Returns information about log delivery to Amazon CloudWatch Logs. */ public CloudWatchLogDeliveryOptions getCloudWatchLogDelivery() { return this.cloudWatchLogDelivery; } /** ** Returns information about log delivery to Amazon CloudWatch Logs. *
* * @param cloudWatchLogDelivery * Returns information about log delivery to Amazon CloudWatch Logs. * @return Returns a reference to this object so that method calls can be chained together. */ public GetLoggingOptionsResult withCloudWatchLogDelivery(CloudWatchLogDeliveryOptions cloudWatchLogDelivery) { setCloudWatchLogDelivery(cloudWatchLogDelivery); 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 (getCloudWatchLogDelivery() != null) sb.append("CloudWatchLogDelivery: ").append(getCloudWatchLogDelivery()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof GetLoggingOptionsResult == false) return false; GetLoggingOptionsResult other = (GetLoggingOptionsResult) obj; if (other.getCloudWatchLogDelivery() == null ^ this.getCloudWatchLogDelivery() == null) return false; if (other.getCloudWatchLogDelivery() != null && other.getCloudWatchLogDelivery().equals(this.getCloudWatchLogDelivery()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getCloudWatchLogDelivery() == null) ? 0 : getCloudWatchLogDelivery().hashCode()); return hashCode; } @Override public GetLoggingOptionsResult clone() { try { return (GetLoggingOptionsResult) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } }