com.amazonaws.services.ec2.model.CloudWatchLogOptions Maven / Gradle / Ivy
Show all versions of aws-java-sdk-ec2 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.ec2.model;
import java.io.Serializable;
import javax.annotation.Generated;
/**
*
* Options for sending VPN tunnel logs to CloudWatch.
*
*
* @see AWS API
* Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class CloudWatchLogOptions implements Serializable, Cloneable {
/**
*
* Status of VPN tunnel logging feature. Default value is False
.
*
*
* Valid values: True
| False
*
*/
private Boolean logEnabled;
/**
*
* The Amazon Resource Name (ARN) of the CloudWatch log group to send logs to.
*
*/
private String logGroupArn;
/**
*
* Configured log format. Default format is json
.
*
*
* Valid values: json
| text
*
*/
private String logOutputFormat;
/**
*
* Status of VPN tunnel logging feature. Default value is False
.
*
*
* Valid values: True
| False
*
*
* @param logEnabled
* Status of VPN tunnel logging feature. Default value is False
.
*
* Valid values: True
| False
*/
public void setLogEnabled(Boolean logEnabled) {
this.logEnabled = logEnabled;
}
/**
*
* Status of VPN tunnel logging feature. Default value is False
.
*
*
* Valid values: True
| False
*
*
* @return Status of VPN tunnel logging feature. Default value is False
.
*
* Valid values: True
| False
*/
public Boolean getLogEnabled() {
return this.logEnabled;
}
/**
*
* Status of VPN tunnel logging feature. Default value is False
.
*
*
* Valid values: True
| False
*
*
* @param logEnabled
* Status of VPN tunnel logging feature. Default value is False
.
*
* Valid values: True
| False
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CloudWatchLogOptions withLogEnabled(Boolean logEnabled) {
setLogEnabled(logEnabled);
return this;
}
/**
*
* Status of VPN tunnel logging feature. Default value is False
.
*
*
* Valid values: True
| False
*
*
* @return Status of VPN tunnel logging feature. Default value is False
.
*
* Valid values: True
| False
*/
public Boolean isLogEnabled() {
return this.logEnabled;
}
/**
*
* The Amazon Resource Name (ARN) of the CloudWatch log group to send logs to.
*
*
* @param logGroupArn
* The Amazon Resource Name (ARN) of the CloudWatch log group to send logs to.
*/
public void setLogGroupArn(String logGroupArn) {
this.logGroupArn = logGroupArn;
}
/**
*
* The Amazon Resource Name (ARN) of the CloudWatch log group to send logs to.
*
*
* @return The Amazon Resource Name (ARN) of the CloudWatch log group to send logs to.
*/
public String getLogGroupArn() {
return this.logGroupArn;
}
/**
*
* The Amazon Resource Name (ARN) of the CloudWatch log group to send logs to.
*
*
* @param logGroupArn
* The Amazon Resource Name (ARN) of the CloudWatch log group to send logs to.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CloudWatchLogOptions withLogGroupArn(String logGroupArn) {
setLogGroupArn(logGroupArn);
return this;
}
/**
*
* Configured log format. Default format is json
.
*
*
* Valid values: json
| text
*
*
* @param logOutputFormat
* Configured log format. Default format is json
.
*
* Valid values: json
| text
*/
public void setLogOutputFormat(String logOutputFormat) {
this.logOutputFormat = logOutputFormat;
}
/**
*
* Configured log format. Default format is json
.
*
*
* Valid values: json
| text
*
*
* @return Configured log format. Default format is json
.
*
* Valid values: json
| text
*/
public String getLogOutputFormat() {
return this.logOutputFormat;
}
/**
*
* Configured log format. Default format is json
.
*
*
* Valid values: json
| text
*
*
* @param logOutputFormat
* Configured log format. Default format is json
.
*
* Valid values: json
| text
* @return Returns a reference to this object so that method calls can be chained together.
*/
public CloudWatchLogOptions withLogOutputFormat(String logOutputFormat) {
setLogOutputFormat(logOutputFormat);
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 (getLogEnabled() != null)
sb.append("LogEnabled: ").append(getLogEnabled()).append(",");
if (getLogGroupArn() != null)
sb.append("LogGroupArn: ").append(getLogGroupArn()).append(",");
if (getLogOutputFormat() != null)
sb.append("LogOutputFormat: ").append(getLogOutputFormat());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof CloudWatchLogOptions == false)
return false;
CloudWatchLogOptions other = (CloudWatchLogOptions) obj;
if (other.getLogEnabled() == null ^ this.getLogEnabled() == null)
return false;
if (other.getLogEnabled() != null && other.getLogEnabled().equals(this.getLogEnabled()) == false)
return false;
if (other.getLogGroupArn() == null ^ this.getLogGroupArn() == null)
return false;
if (other.getLogGroupArn() != null && other.getLogGroupArn().equals(this.getLogGroupArn()) == false)
return false;
if (other.getLogOutputFormat() == null ^ this.getLogOutputFormat() == null)
return false;
if (other.getLogOutputFormat() != null && other.getLogOutputFormat().equals(this.getLogOutputFormat()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getLogEnabled() == null) ? 0 : getLogEnabled().hashCode());
hashCode = prime * hashCode + ((getLogGroupArn() == null) ? 0 : getLogGroupArn().hashCode());
hashCode = prime * hashCode + ((getLogOutputFormat() == null) ? 0 : getLogOutputFormat().hashCode());
return hashCode;
}
@Override
public CloudWatchLogOptions clone() {
try {
return (CloudWatchLogOptions) super.clone();
} catch (CloneNotSupportedException e) {
throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e);
}
}
}