@Override public String toString() { StringBuilder sb = new StringBuilder("DeleteMessageRequest("); boolean first = true; sb.append("queueName:"); if (this.queueName == null) { sb.append("null"); } else { sb.append(this.queueName); } first = false; if (!first) sb.append(", "); sb.append("receiptHandle:"); if (this.receiptHandle == null) { sb.append("null"); } else { sb.append(this.receiptHandle); } first = false; sb.append(")"); return sb.toString(); }
@Override public String toString() { StringBuilder sb = new StringBuilder("ListQueueResponse("); boolean first = true; sb.append("queueName:"); if (this.queueName == null) { sb.append("null"); } else { sb.append(this.queueName); } first = false; sb.append(")"); return sb.toString(); }
@Override public String toString() { StringBuilder sb = new StringBuilder("Credential("); boolean first = true; if (isSetType()) { sb.append("type:"); if (this.type == null) { sb.append("null"); } else { sb.append(this.type); } first = false; } if (isSetSecretKeyId()) { if (!first) sb.append(", "); sb.append("secretKeyId:"); if (this.secretKeyId == null) { sb.append("null"); } else { sb.append(this.secretKeyId); } first = false; } if (isSetSecretKey()) { if (!first) sb.append(", "); sb.append("secretKey:"); if (this.secretKey == null) { sb.append("null"); } else { sb.append(this.secretKey); } first = false; } sb.append(")"); return sb.toString(); }