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

shiver.me.timbers.aws.iotanalytics.DatasetDatasetContentDeliveryRuleDestination Maven / Gradle / Ivy

Go to download

This library is a complete mapping of the AWS CloudFormation Resource Specification into Java objects. The objects have been generated directly from the specification so should be a direct one to one mapping.

The newest version!

package shiver.me.timbers.aws.iotanalytics;

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;


/**
 * DatasetDatasetContentDeliveryRuleDestination
 * 

* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-dataset-datasetcontentdeliveryruledestination.html * */ @JsonInclude(JsonInclude.Include.NON_EMPTY) @JsonPropertyOrder({ "IotEventsDestinationConfiguration", "S3DestinationConfiguration" }) public class DatasetDatasetContentDeliveryRuleDestination implements Property { /** * DatasetIotEventsDestinationConfiguration *

* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-dataset-ioteventsdestinationconfiguration.html * */ @JsonProperty("IotEventsDestinationConfiguration") @JsonPropertyDescription("http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-dataset-ioteventsdestinationconfiguration.html") private Property iotEventsDestinationConfiguration; /** * DatasetS3DestinationConfiguration *

* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-dataset-s3destinationconfiguration.html * */ @JsonProperty("S3DestinationConfiguration") @JsonPropertyDescription("http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-dataset-s3destinationconfiguration.html") private Property s3DestinationConfiguration; /** * DatasetIotEventsDestinationConfiguration *

* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-dataset-ioteventsdestinationconfiguration.html * */ @JsonIgnore public Property getIotEventsDestinationConfiguration() { return iotEventsDestinationConfiguration; } /** * DatasetIotEventsDestinationConfiguration *

* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-dataset-ioteventsdestinationconfiguration.html * */ @JsonIgnore public void setIotEventsDestinationConfiguration(Property iotEventsDestinationConfiguration) { this.iotEventsDestinationConfiguration = iotEventsDestinationConfiguration; } public DatasetDatasetContentDeliveryRuleDestination withIotEventsDestinationConfiguration(Property iotEventsDestinationConfiguration) { this.iotEventsDestinationConfiguration = iotEventsDestinationConfiguration; return this; } /** * DatasetS3DestinationConfiguration *

* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-dataset-s3destinationconfiguration.html * */ @JsonIgnore public Property getS3DestinationConfiguration() { return s3DestinationConfiguration; } /** * DatasetS3DestinationConfiguration *

* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-dataset-s3destinationconfiguration.html * */ @JsonIgnore public void setS3DestinationConfiguration(Property s3DestinationConfiguration) { this.s3DestinationConfiguration = s3DestinationConfiguration; } public DatasetDatasetContentDeliveryRuleDestination withS3DestinationConfiguration(Property s3DestinationConfiguration) { this.s3DestinationConfiguration = s3DestinationConfiguration; return this; } @Override public String toString() { return new ToStringBuilder(this).append("iotEventsDestinationConfiguration", iotEventsDestinationConfiguration).append("s3DestinationConfiguration", s3DestinationConfiguration).toString(); } @Override public int hashCode() { return new HashCodeBuilder().append(iotEventsDestinationConfiguration).append(s3DestinationConfiguration).toHashCode(); } @Override public boolean equals(Object other) { if (other == this) { return true; } if ((other instanceof DatasetDatasetContentDeliveryRuleDestination) == false) { return false; } DatasetDatasetContentDeliveryRuleDestination rhs = ((DatasetDatasetContentDeliveryRuleDestination) other); return new EqualsBuilder().append(iotEventsDestinationConfiguration, rhs.iotEventsDestinationConfiguration).append(s3DestinationConfiguration, rhs.s3DestinationConfiguration).isEquals(); } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy