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

shiver.me.timbers.aws.msk.ClusterBrokerLogs Maven / Gradle / Ivy


package shiver.me.timbers.aws.msk;

import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyDescription;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import org.apache.commons.lang.builder.EqualsBuilder;
import org.apache.commons.lang.builder.HashCodeBuilder;
import org.apache.commons.lang.builder.ToStringBuilder;
import shiver.me.timbers.aws.Property;


/**
 * ClusterBrokerLogs
 * 

* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-brokerlogs.html * */ @JsonInclude(JsonInclude.Include.NON_EMPTY) @JsonPropertyOrder({ "S3", "Firehose", "CloudWatchLogs" }) public class ClusterBrokerLogs implements Property { /** * ClusterS3 *

* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-s3.html * */ @JsonProperty("S3") @JsonPropertyDescription("http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-s3.html") private Property s3; /** * ClusterFirehose *

* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-firehose.html * */ @JsonProperty("Firehose") @JsonPropertyDescription("http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-firehose.html") private Property firehose; /** * ClusterCloudWatchLogs *

* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-cloudwatchlogs.html * */ @JsonProperty("CloudWatchLogs") @JsonPropertyDescription("http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-cloudwatchlogs.html") private Property cloudWatchLogs; /** * ClusterS3 *

* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-s3.html * */ @JsonIgnore public Property getS3() { return s3; } /** * ClusterS3 *

* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-s3.html * */ @JsonIgnore public void setS3(Property s3) { this.s3 = s3; } public ClusterBrokerLogs withS3(Property s3) { this.s3 = s3; return this; } /** * ClusterFirehose *

* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-firehose.html * */ @JsonIgnore public Property getFirehose() { return firehose; } /** * ClusterFirehose *

* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-firehose.html * */ @JsonIgnore public void setFirehose(Property firehose) { this.firehose = firehose; } public ClusterBrokerLogs withFirehose(Property firehose) { this.firehose = firehose; return this; } /** * ClusterCloudWatchLogs *

* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-cloudwatchlogs.html * */ @JsonIgnore public Property getCloudWatchLogs() { return cloudWatchLogs; } /** * ClusterCloudWatchLogs *

* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-cloudwatchlogs.html * */ @JsonIgnore public void setCloudWatchLogs(Property cloudWatchLogs) { this.cloudWatchLogs = cloudWatchLogs; } public ClusterBrokerLogs withCloudWatchLogs(Property cloudWatchLogs) { this.cloudWatchLogs = cloudWatchLogs; return this; } @Override public String toString() { return new ToStringBuilder(this).append("s3", s3).append("firehose", firehose).append("cloudWatchLogs", cloudWatchLogs).toString(); } @Override public int hashCode() { return new HashCodeBuilder().append(s3).append(firehose).append(cloudWatchLogs).toHashCode(); } @Override public boolean equals(Object other) { if (other == this) { return true; } if ((other instanceof ClusterBrokerLogs) == false) { return false; } ClusterBrokerLogs rhs = ((ClusterBrokerLogs) other); return new EqualsBuilder().append(s3, rhs.s3).append(firehose, rhs.firehose).append(cloudWatchLogs, rhs.cloudWatchLogs).isEquals(); } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy