All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.amazonaws.services.ecs.model.ExecuteCommandLogConfiguration Maven / Gradle / Ivy

Go to download

The AWS Java SDK for the Amazon EC2 Container Service holds the client classes that are used for communicating with the Amazon EC2 Container Service

There is a newer version: 1.12.780
Show newest version
/*
 * Copyright 2016-2021 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.ecs.model;

import java.io.Serializable;
import javax.annotation.Generated;
import com.amazonaws.protocol.StructuredPojo;
import com.amazonaws.protocol.ProtocolMarshaller;

/**
 * 

* The log configuration for the results of the execute command actions. The logs can be sent to CloudWatch Logs or an * Amazon S3 bucket. *

* * @see AWS * API Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class ExecuteCommandLogConfiguration implements Serializable, Cloneable, StructuredPojo { /** *

* The name of the CloudWatch log group to send logs to. *

* *

* The CloudWatch log group must already be created. *

*
*/ private String cloudWatchLogGroupName; /** *

* Whether or not to enable encryption on the CloudWatch logs. If not specified, encryption will be disabled. *

*/ private Boolean cloudWatchEncryptionEnabled; /** *

* The name of the S3 bucket to send logs to. *

* *

* The S3 bucket must already be created. *

*
*/ private String s3BucketName; /** *

* Whether or not to enable encryption on the CloudWatch logs. If not specified, encryption will be disabled. *

*/ private Boolean s3EncryptionEnabled; /** *

* An optional folder in the S3 bucket to place logs in. *

*/ private String s3KeyPrefix; /** *

* The name of the CloudWatch log group to send logs to. *

* *

* The CloudWatch log group must already be created. *

*
* * @param cloudWatchLogGroupName * The name of the CloudWatch log group to send logs to.

*

* The CloudWatch log group must already be created. *

*/ public void setCloudWatchLogGroupName(String cloudWatchLogGroupName) { this.cloudWatchLogGroupName = cloudWatchLogGroupName; } /** *

* The name of the CloudWatch log group to send logs to. *

* *

* The CloudWatch log group must already be created. *

*
* * @return The name of the CloudWatch log group to send logs to.

*

* The CloudWatch log group must already be created. *

*/ public String getCloudWatchLogGroupName() { return this.cloudWatchLogGroupName; } /** *

* The name of the CloudWatch log group to send logs to. *

* *

* The CloudWatch log group must already be created. *

*
* * @param cloudWatchLogGroupName * The name of the CloudWatch log group to send logs to.

*

* The CloudWatch log group must already be created. *

* @return Returns a reference to this object so that method calls can be chained together. */ public ExecuteCommandLogConfiguration withCloudWatchLogGroupName(String cloudWatchLogGroupName) { setCloudWatchLogGroupName(cloudWatchLogGroupName); return this; } /** *

* Whether or not to enable encryption on the CloudWatch logs. If not specified, encryption will be disabled. *

* * @param cloudWatchEncryptionEnabled * Whether or not to enable encryption on the CloudWatch logs. If not specified, encryption will be disabled. */ public void setCloudWatchEncryptionEnabled(Boolean cloudWatchEncryptionEnabled) { this.cloudWatchEncryptionEnabled = cloudWatchEncryptionEnabled; } /** *

* Whether or not to enable encryption on the CloudWatch logs. If not specified, encryption will be disabled. *

* * @return Whether or not to enable encryption on the CloudWatch logs. If not specified, encryption will be * disabled. */ public Boolean getCloudWatchEncryptionEnabled() { return this.cloudWatchEncryptionEnabled; } /** *

* Whether or not to enable encryption on the CloudWatch logs. If not specified, encryption will be disabled. *

* * @param cloudWatchEncryptionEnabled * Whether or not to enable encryption on the CloudWatch logs. If not specified, encryption will be disabled. * @return Returns a reference to this object so that method calls can be chained together. */ public ExecuteCommandLogConfiguration withCloudWatchEncryptionEnabled(Boolean cloudWatchEncryptionEnabled) { setCloudWatchEncryptionEnabled(cloudWatchEncryptionEnabled); return this; } /** *

* Whether or not to enable encryption on the CloudWatch logs. If not specified, encryption will be disabled. *

* * @return Whether or not to enable encryption on the CloudWatch logs. If not specified, encryption will be * disabled. */ public Boolean isCloudWatchEncryptionEnabled() { return this.cloudWatchEncryptionEnabled; } /** *

* The name of the S3 bucket to send logs to. *

* *

* The S3 bucket must already be created. *

*
* * @param s3BucketName * The name of the S3 bucket to send logs to.

*

* The S3 bucket must already be created. *

*/ public void setS3BucketName(String s3BucketName) { this.s3BucketName = s3BucketName; } /** *

* The name of the S3 bucket to send logs to. *

* *

* The S3 bucket must already be created. *

*
* * @return The name of the S3 bucket to send logs to.

*

* The S3 bucket must already be created. *

*/ public String getS3BucketName() { return this.s3BucketName; } /** *

* The name of the S3 bucket to send logs to. *

* *

* The S3 bucket must already be created. *

*
* * @param s3BucketName * The name of the S3 bucket to send logs to.

*

* The S3 bucket must already be created. *

* @return Returns a reference to this object so that method calls can be chained together. */ public ExecuteCommandLogConfiguration withS3BucketName(String s3BucketName) { setS3BucketName(s3BucketName); return this; } /** *

* Whether or not to enable encryption on the CloudWatch logs. If not specified, encryption will be disabled. *

* * @param s3EncryptionEnabled * Whether or not to enable encryption on the CloudWatch logs. If not specified, encryption will be disabled. */ public void setS3EncryptionEnabled(Boolean s3EncryptionEnabled) { this.s3EncryptionEnabled = s3EncryptionEnabled; } /** *

* Whether or not to enable encryption on the CloudWatch logs. If not specified, encryption will be disabled. *

* * @return Whether or not to enable encryption on the CloudWatch logs. If not specified, encryption will be * disabled. */ public Boolean getS3EncryptionEnabled() { return this.s3EncryptionEnabled; } /** *

* Whether or not to enable encryption on the CloudWatch logs. If not specified, encryption will be disabled. *

* * @param s3EncryptionEnabled * Whether or not to enable encryption on the CloudWatch logs. If not specified, encryption will be disabled. * @return Returns a reference to this object so that method calls can be chained together. */ public ExecuteCommandLogConfiguration withS3EncryptionEnabled(Boolean s3EncryptionEnabled) { setS3EncryptionEnabled(s3EncryptionEnabled); return this; } /** *

* Whether or not to enable encryption on the CloudWatch logs. If not specified, encryption will be disabled. *

* * @return Whether or not to enable encryption on the CloudWatch logs. If not specified, encryption will be * disabled. */ public Boolean isS3EncryptionEnabled() { return this.s3EncryptionEnabled; } /** *

* An optional folder in the S3 bucket to place logs in. *

* * @param s3KeyPrefix * An optional folder in the S3 bucket to place logs in. */ public void setS3KeyPrefix(String s3KeyPrefix) { this.s3KeyPrefix = s3KeyPrefix; } /** *

* An optional folder in the S3 bucket to place logs in. *

* * @return An optional folder in the S3 bucket to place logs in. */ public String getS3KeyPrefix() { return this.s3KeyPrefix; } /** *

* An optional folder in the S3 bucket to place logs in. *

* * @param s3KeyPrefix * An optional folder in the S3 bucket to place logs in. * @return Returns a reference to this object so that method calls can be chained together. */ public ExecuteCommandLogConfiguration withS3KeyPrefix(String s3KeyPrefix) { setS3KeyPrefix(s3KeyPrefix); 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 (getCloudWatchLogGroupName() != null) sb.append("CloudWatchLogGroupName: ").append(getCloudWatchLogGroupName()).append(","); if (getCloudWatchEncryptionEnabled() != null) sb.append("CloudWatchEncryptionEnabled: ").append(getCloudWatchEncryptionEnabled()).append(","); if (getS3BucketName() != null) sb.append("S3BucketName: ").append(getS3BucketName()).append(","); if (getS3EncryptionEnabled() != null) sb.append("S3EncryptionEnabled: ").append(getS3EncryptionEnabled()).append(","); if (getS3KeyPrefix() != null) sb.append("S3KeyPrefix: ").append(getS3KeyPrefix()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof ExecuteCommandLogConfiguration == false) return false; ExecuteCommandLogConfiguration other = (ExecuteCommandLogConfiguration) obj; if (other.getCloudWatchLogGroupName() == null ^ this.getCloudWatchLogGroupName() == null) return false; if (other.getCloudWatchLogGroupName() != null && other.getCloudWatchLogGroupName().equals(this.getCloudWatchLogGroupName()) == false) return false; if (other.getCloudWatchEncryptionEnabled() == null ^ this.getCloudWatchEncryptionEnabled() == null) return false; if (other.getCloudWatchEncryptionEnabled() != null && other.getCloudWatchEncryptionEnabled().equals(this.getCloudWatchEncryptionEnabled()) == false) return false; if (other.getS3BucketName() == null ^ this.getS3BucketName() == null) return false; if (other.getS3BucketName() != null && other.getS3BucketName().equals(this.getS3BucketName()) == false) return false; if (other.getS3EncryptionEnabled() == null ^ this.getS3EncryptionEnabled() == null) return false; if (other.getS3EncryptionEnabled() != null && other.getS3EncryptionEnabled().equals(this.getS3EncryptionEnabled()) == false) return false; if (other.getS3KeyPrefix() == null ^ this.getS3KeyPrefix() == null) return false; if (other.getS3KeyPrefix() != null && other.getS3KeyPrefix().equals(this.getS3KeyPrefix()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getCloudWatchLogGroupName() == null) ? 0 : getCloudWatchLogGroupName().hashCode()); hashCode = prime * hashCode + ((getCloudWatchEncryptionEnabled() == null) ? 0 : getCloudWatchEncryptionEnabled().hashCode()); hashCode = prime * hashCode + ((getS3BucketName() == null) ? 0 : getS3BucketName().hashCode()); hashCode = prime * hashCode + ((getS3EncryptionEnabled() == null) ? 0 : getS3EncryptionEnabled().hashCode()); hashCode = prime * hashCode + ((getS3KeyPrefix() == null) ? 0 : getS3KeyPrefix().hashCode()); return hashCode; } @Override public ExecuteCommandLogConfiguration clone() { try { return (ExecuteCommandLogConfiguration) 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.ecs.model.transform.ExecuteCommandLogConfigurationMarshaller.getInstance().marshall(this, protocolMarshaller); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy