com.amazonaws.services.securityhub.model.AwsAmazonMqBrokerLogsPendingDetails Maven / Gradle / Ivy
Show all versions of aws-java-sdk-securityhub Show documentation
/*
* Copyright 2019-2024 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with
* the License. A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
* CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions
* and limitations under the License.
*/
package com.amazonaws.services.securityhub.model;
import java.io.Serializable;
import javax.annotation.Generated;
import com.amazonaws.protocol.StructuredPojo;
import com.amazonaws.protocol.ProtocolMarshaller;
/**
*
* Provides information about logs to be activated for the specified broker.
*
*
* @see AWS API Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class AwsAmazonMqBrokerLogsPendingDetails implements Serializable, Cloneable, StructuredPojo {
/**
*
* Activates audit logging. Every user management action made using JMX or the ActiveMQ Web Console is logged.
* Doesn't apply to RabbitMQ brokers.
*
*/
private Boolean audit;
/**
*
* Activates general logging.
*
*/
private Boolean general;
/**
*
* Activates audit logging. Every user management action made using JMX or the ActiveMQ Web Console is logged.
* Doesn't apply to RabbitMQ brokers.
*
*
* @param audit
* Activates audit logging. Every user management action made using JMX or the ActiveMQ Web Console is
* logged. Doesn't apply to RabbitMQ brokers.
*/
public void setAudit(Boolean audit) {
this.audit = audit;
}
/**
*
* Activates audit logging. Every user management action made using JMX or the ActiveMQ Web Console is logged.
* Doesn't apply to RabbitMQ brokers.
*
*
* @return Activates audit logging. Every user management action made using JMX or the ActiveMQ Web Console is
* logged. Doesn't apply to RabbitMQ brokers.
*/
public Boolean getAudit() {
return this.audit;
}
/**
*
* Activates audit logging. Every user management action made using JMX or the ActiveMQ Web Console is logged.
* Doesn't apply to RabbitMQ brokers.
*
*
* @param audit
* Activates audit logging. Every user management action made using JMX or the ActiveMQ Web Console is
* logged. Doesn't apply to RabbitMQ brokers.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public AwsAmazonMqBrokerLogsPendingDetails withAudit(Boolean audit) {
setAudit(audit);
return this;
}
/**
*
* Activates audit logging. Every user management action made using JMX or the ActiveMQ Web Console is logged.
* Doesn't apply to RabbitMQ brokers.
*
*
* @return Activates audit logging. Every user management action made using JMX or the ActiveMQ Web Console is
* logged. Doesn't apply to RabbitMQ brokers.
*/
public Boolean isAudit() {
return this.audit;
}
/**
*
* Activates general logging.
*
*
* @param general
* Activates general logging.
*/
public void setGeneral(Boolean general) {
this.general = general;
}
/**
*
* Activates general logging.
*
*
* @return Activates general logging.
*/
public Boolean getGeneral() {
return this.general;
}
/**
*
* Activates general logging.
*
*
* @param general
* Activates general logging.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public AwsAmazonMqBrokerLogsPendingDetails withGeneral(Boolean general) {
setGeneral(general);
return this;
}
/**
*
* Activates general logging.
*
*
* @return Activates general logging.
*/
public Boolean isGeneral() {
return this.general;
}
/**
* 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 (getAudit() != null)
sb.append("Audit: ").append(getAudit()).append(",");
if (getGeneral() != null)
sb.append("General: ").append(getGeneral());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof AwsAmazonMqBrokerLogsPendingDetails == false)
return false;
AwsAmazonMqBrokerLogsPendingDetails other = (AwsAmazonMqBrokerLogsPendingDetails) obj;
if (other.getAudit() == null ^ this.getAudit() == null)
return false;
if (other.getAudit() != null && other.getAudit().equals(this.getAudit()) == false)
return false;
if (other.getGeneral() == null ^ this.getGeneral() == null)
return false;
if (other.getGeneral() != null && other.getGeneral().equals(this.getGeneral()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getAudit() == null) ? 0 : getAudit().hashCode());
hashCode = prime * hashCode + ((getGeneral() == null) ? 0 : getGeneral().hashCode());
return hashCode;
}
@Override
public AwsAmazonMqBrokerLogsPendingDetails clone() {
try {
return (AwsAmazonMqBrokerLogsPendingDetails) super.clone();
} catch (CloneNotSupportedException e) {
throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e);
}
}
@com.amazonaws.annotation.SdkInternalApi
@Override
public void marshall(ProtocolMarshaller protocolMarshaller) {
com.amazonaws.services.securityhub.model.transform.AwsAmazonMqBrokerLogsPendingDetailsMarshaller.getInstance().marshall(this, protocolMarshaller);
}
}