* Logging-configuration ARN, from the request (if identifier
was an ARN).
*
* Time when the logging configuration was created. This is an ISO 8601 timestamp; note that this is returned as * a string. *
*/ private java.util.Date createTime; /** *
* A complex type that contains a destination configuration for where chat content will be logged. There is only one
* type of destination (cloudWatchLogs
, firehose
, or s3
) in a
* destinationConfiguration
.
*
* Logging-configuration ID, generated by the system. This is a relative identifier, the part of the ARN that * uniquely identifies the logging configuration. *
*/ private String id; /** ** Logging-configuration name. This value does not need to be unique. *
*/ private String name; /** *
* The state of the logging configuration. When the state is ACTIVE
, the configuration is ready to log
* chat content.
*
* Tags attached to the resource. Array of maps, each of the form string:string (key:value)
.
*
* Time of the logging configuration’s last update. This is an ISO 8601 timestamp; note that this is returned as * a string. *
*/ private java.util.Date updateTime; /** *
* Logging-configuration ARN, from the request (if identifier
was an ARN).
*
identifier
was an ARN).
*/
public void setArn(String arn) {
this.arn = arn;
}
/**
*
* Logging-configuration ARN, from the request (if identifier
was an ARN).
*
identifier
was an ARN).
*/
public String getArn() {
return this.arn;
}
/**
*
* Logging-configuration ARN, from the request (if identifier
was an ARN).
*
identifier
was an ARN).
* @return Returns a reference to this object so that method calls can be chained together.
*/
public GetLoggingConfigurationResult withArn(String arn) {
setArn(arn);
return this;
}
/**
* * Time when the logging configuration was created. This is an ISO 8601 timestamp; note that this is returned as * a string. *
* * @param createTime * Time when the logging configuration was created. This is an ISO 8601 timestamp; note that this is * returned as a string. */ public void setCreateTime(java.util.Date createTime) { this.createTime = createTime; } /** ** Time when the logging configuration was created. This is an ISO 8601 timestamp; note that this is returned as * a string. *
* * @return Time when the logging configuration was created. This is an ISO 8601 timestamp; note that this is * returned as a string. */ public java.util.Date getCreateTime() { return this.createTime; } /** ** Time when the logging configuration was created. This is an ISO 8601 timestamp; note that this is returned as * a string. *
* * @param createTime * Time when the logging configuration was created. This is an ISO 8601 timestamp; note that this is * returned as a string. * @return Returns a reference to this object so that method calls can be chained together. */ public GetLoggingConfigurationResult withCreateTime(java.util.Date createTime) { setCreateTime(createTime); return this; } /** *
* A complex type that contains a destination configuration for where chat content will be logged. There is only one
* type of destination (cloudWatchLogs
, firehose
, or s3
) in a
* destinationConfiguration
.
*
cloudWatchLogs
, firehose
, or s3
) in a
* destinationConfiguration
.
*/
public void setDestinationConfiguration(DestinationConfiguration destinationConfiguration) {
this.destinationConfiguration = destinationConfiguration;
}
/**
*
* A complex type that contains a destination configuration for where chat content will be logged. There is only one
* type of destination (cloudWatchLogs
, firehose
, or s3
) in a
* destinationConfiguration
.
*
cloudWatchLogs
, firehose
, or s3
) in
* a destinationConfiguration
.
*/
public DestinationConfiguration getDestinationConfiguration() {
return this.destinationConfiguration;
}
/**
*
* A complex type that contains a destination configuration for where chat content will be logged. There is only one
* type of destination (cloudWatchLogs
, firehose
, or s3
) in a
* destinationConfiguration
.
*
cloudWatchLogs
, firehose
, or s3
) in a
* destinationConfiguration
.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public GetLoggingConfigurationResult withDestinationConfiguration(DestinationConfiguration destinationConfiguration) {
setDestinationConfiguration(destinationConfiguration);
return this;
}
/**
* * Logging-configuration ID, generated by the system. This is a relative identifier, the part of the ARN that * uniquely identifies the logging configuration. *
* * @param id * Logging-configuration ID, generated by the system. This is a relative identifier, the part of the ARN that * uniquely identifies the logging configuration. */ public void setId(String id) { this.id = id; } /** ** Logging-configuration ID, generated by the system. This is a relative identifier, the part of the ARN that * uniquely identifies the logging configuration. *
* * @return Logging-configuration ID, generated by the system. This is a relative identifier, the part of the ARN * that uniquely identifies the logging configuration. */ public String getId() { return this.id; } /** ** Logging-configuration ID, generated by the system. This is a relative identifier, the part of the ARN that * uniquely identifies the logging configuration. *
* * @param id * Logging-configuration ID, generated by the system. This is a relative identifier, the part of the ARN that * uniquely identifies the logging configuration. * @return Returns a reference to this object so that method calls can be chained together. */ public GetLoggingConfigurationResult withId(String id) { setId(id); return this; } /** ** Logging-configuration name. This value does not need to be unique. *
* * @param name * Logging-configuration name. This value does not need to be unique. */ public void setName(String name) { this.name = name; } /** ** Logging-configuration name. This value does not need to be unique. *
* * @return Logging-configuration name. This value does not need to be unique. */ public String getName() { return this.name; } /** ** Logging-configuration name. This value does not need to be unique. *
* * @param name * Logging-configuration name. This value does not need to be unique. * @return Returns a reference to this object so that method calls can be chained together. */ public GetLoggingConfigurationResult withName(String name) { setName(name); return this; } /** *
* The state of the logging configuration. When the state is ACTIVE
, the configuration is ready to log
* chat content.
*
ACTIVE
, the configuration is ready
* to log chat content.
* @see LoggingConfigurationState
*/
public void setState(String state) {
this.state = state;
}
/**
*
* The state of the logging configuration. When the state is ACTIVE
, the configuration is ready to log
* chat content.
*
ACTIVE
, the configuration is ready
* to log chat content.
* @see LoggingConfigurationState
*/
public String getState() {
return this.state;
}
/**
*
* The state of the logging configuration. When the state is ACTIVE
, the configuration is ready to log
* chat content.
*
ACTIVE
, the configuration is ready
* to log chat content.
* @return Returns a reference to this object so that method calls can be chained together.
* @see LoggingConfigurationState
*/
public GetLoggingConfigurationResult withState(String state) {
setState(state);
return this;
}
/**
*
* The state of the logging configuration. When the state is ACTIVE
, the configuration is ready to log
* chat content.
*
ACTIVE
, the configuration is ready
* to log chat content.
* @return Returns a reference to this object so that method calls can be chained together.
* @see LoggingConfigurationState
*/
public GetLoggingConfigurationResult withState(LoggingConfigurationState state) {
this.state = state.toString();
return this;
}
/**
*
* Tags attached to the resource. Array of maps, each of the form string:string (key:value)
.
*
string:string (key:value)
.
*/
public java.util.Map
* Tags attached to the resource. Array of maps, each of the form string:string (key:value)
.
*
string:string (key:value)
.
*/
public void setTags(java.util.Map
* Tags attached to the resource. Array of maps, each of the form string:string (key:value)
.
*
string:string (key:value)
.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public GetLoggingConfigurationResult withTags(java.util.Map* Time of the logging configuration’s last update. This is an ISO 8601 timestamp; note that this is returned as * a string. *
* * @param updateTime * Time of the logging configuration’s last update. This is an ISO 8601 timestamp; note that this is * returned as a string. */ public void setUpdateTime(java.util.Date updateTime) { this.updateTime = updateTime; } /** ** Time of the logging configuration’s last update. This is an ISO 8601 timestamp; note that this is returned as * a string. *
* * @return Time of the logging configuration’s last update. This is an ISO 8601 timestamp; note that this is * returned as a string. */ public java.util.Date getUpdateTime() { return this.updateTime; } /** ** Time of the logging configuration’s last update. This is an ISO 8601 timestamp; note that this is returned as * a string. *
* * @param updateTime * Time of the logging configuration’s last update. This is an ISO 8601 timestamp; note that this is * returned as a string. * @return Returns a reference to this object so that method calls can be chained together. */ public GetLoggingConfigurationResult withUpdateTime(java.util.Date updateTime) { setUpdateTime(updateTime); 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 (getArn() != null) sb.append("Arn: ").append(getArn()).append(","); if (getCreateTime() != null) sb.append("CreateTime: ").append(getCreateTime()).append(","); if (getDestinationConfiguration() != null) sb.append("DestinationConfiguration: ").append(getDestinationConfiguration()).append(","); if (getId() != null) sb.append("Id: ").append(getId()).append(","); if (getName() != null) sb.append("Name: ").append(getName()).append(","); if (getState() != null) sb.append("State: ").append(getState()).append(","); if (getTags() != null) sb.append("Tags: ").append(getTags()).append(","); if (getUpdateTime() != null) sb.append("UpdateTime: ").append(getUpdateTime()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof GetLoggingConfigurationResult == false) return false; GetLoggingConfigurationResult other = (GetLoggingConfigurationResult) obj; if (other.getArn() == null ^ this.getArn() == null) return false; if (other.getArn() != null && other.getArn().equals(this.getArn()) == false) return false; if (other.getCreateTime() == null ^ this.getCreateTime() == null) return false; if (other.getCreateTime() != null && other.getCreateTime().equals(this.getCreateTime()) == false) return false; if (other.getDestinationConfiguration() == null ^ this.getDestinationConfiguration() == null) return false; if (other.getDestinationConfiguration() != null && other.getDestinationConfiguration().equals(this.getDestinationConfiguration()) == false) return false; if (other.getId() == null ^ this.getId() == null) return false; if (other.getId() != null && other.getId().equals(this.getId()) == false) return false; if (other.getName() == null ^ this.getName() == null) return false; if (other.getName() != null && other.getName().equals(this.getName()) == false) return false; if (other.getState() == null ^ this.getState() == null) return false; if (other.getState() != null && other.getState().equals(this.getState()) == false) return false; if (other.getTags() == null ^ this.getTags() == null) return false; if (other.getTags() != null && other.getTags().equals(this.getTags()) == false) return false; if (other.getUpdateTime() == null ^ this.getUpdateTime() == null) return false; if (other.getUpdateTime() != null && other.getUpdateTime().equals(this.getUpdateTime()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getArn() == null) ? 0 : getArn().hashCode()); hashCode = prime * hashCode + ((getCreateTime() == null) ? 0 : getCreateTime().hashCode()); hashCode = prime * hashCode + ((getDestinationConfiguration() == null) ? 0 : getDestinationConfiguration().hashCode()); hashCode = prime * hashCode + ((getId() == null) ? 0 : getId().hashCode()); hashCode = prime * hashCode + ((getName() == null) ? 0 : getName().hashCode()); hashCode = prime * hashCode + ((getState() == null) ? 0 : getState().hashCode()); hashCode = prime * hashCode + ((getTags() == null) ? 0 : getTags().hashCode()); hashCode = prime * hashCode + ((getUpdateTime() == null) ? 0 : getUpdateTime().hashCode()); return hashCode; } @Override public GetLoggingConfigurationResult clone() { try { return (GetLoggingConfigurationResult) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } }