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

com.amazonaws.services.iot.model.Action Maven / Gradle / Ivy

Go to download

The AWS SDK for Java with support for OSGi. The AWS SDK for Java provides Java APIs for building software on AWS' cost-effective, scalable, and reliable infrastructure products. The AWS Java SDK allows developers to code against APIs for all of Amazon's infrastructure web services (Amazon S3, Amazon EC2, Amazon SQS, Amazon Relational Database Service, Amazon AutoScaling, etc).

There is a newer version: 1.11.60
Show newest version
/*
 * Copyright 2011-2016 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.iot.model;

import java.io.Serializable;

/**
 * 

* Describes the actions associated with a rule. *

*/ public class Action implements Serializable, Cloneable { /** *

* Write to a DynamoDB table. *

*/ private DynamoDBAction dynamoDB; /** *

* Invoke a Lambda function. *

*/ private LambdaAction lambda; /** *

* Publish to an Amazon SNS topic. *

*/ private SnsAction sns; /** *

* Publish to an Amazon SQS queue. *

*/ private SqsAction sqs; /** *

* Write data to an Amazon Kinesis stream. *

*/ private KinesisAction kinesis; /** *

* Publish to another MQTT topic. *

*/ private RepublishAction republish; /** *

* Write to an Amazon S3 bucket. *

*/ private S3Action s3; /** *

* Write to an Amazon Kinesis Firehose stream. *

*/ private FirehoseAction firehose; /** *

* Capture a CloudWatch metric. *

*/ private CloudwatchMetricAction cloudwatchMetric; /** *

* Change the state of a CloudWatch alarm. *

*/ private CloudwatchAlarmAction cloudwatchAlarm; /** *

* Write data to an Amazon Elasticsearch Service; domain. *

*/ private ElasticsearchAction elasticsearch; /** *

* Write to a DynamoDB table. *

* * @param dynamoDB * Write to a DynamoDB table. */ public void setDynamoDB(DynamoDBAction dynamoDB) { this.dynamoDB = dynamoDB; } /** *

* Write to a DynamoDB table. *

* * @return Write to a DynamoDB table. */ public DynamoDBAction getDynamoDB() { return this.dynamoDB; } /** *

* Write to a DynamoDB table. *

* * @param dynamoDB * Write to a DynamoDB table. * @return Returns a reference to this object so that method calls can be * chained together. */ public Action withDynamoDB(DynamoDBAction dynamoDB) { setDynamoDB(dynamoDB); return this; } /** *

* Invoke a Lambda function. *

* * @param lambda * Invoke a Lambda function. */ public void setLambda(LambdaAction lambda) { this.lambda = lambda; } /** *

* Invoke a Lambda function. *

* * @return Invoke a Lambda function. */ public LambdaAction getLambda() { return this.lambda; } /** *

* Invoke a Lambda function. *

* * @param lambda * Invoke a Lambda function. * @return Returns a reference to this object so that method calls can be * chained together. */ public Action withLambda(LambdaAction lambda) { setLambda(lambda); return this; } /** *

* Publish to an Amazon SNS topic. *

* * @param sns * Publish to an Amazon SNS topic. */ public void setSns(SnsAction sns) { this.sns = sns; } /** *

* Publish to an Amazon SNS topic. *

* * @return Publish to an Amazon SNS topic. */ public SnsAction getSns() { return this.sns; } /** *

* Publish to an Amazon SNS topic. *

* * @param sns * Publish to an Amazon SNS topic. * @return Returns a reference to this object so that method calls can be * chained together. */ public Action withSns(SnsAction sns) { setSns(sns); return this; } /** *

* Publish to an Amazon SQS queue. *

* * @param sqs * Publish to an Amazon SQS queue. */ public void setSqs(SqsAction sqs) { this.sqs = sqs; } /** *

* Publish to an Amazon SQS queue. *

* * @return Publish to an Amazon SQS queue. */ public SqsAction getSqs() { return this.sqs; } /** *

* Publish to an Amazon SQS queue. *

* * @param sqs * Publish to an Amazon SQS queue. * @return Returns a reference to this object so that method calls can be * chained together. */ public Action withSqs(SqsAction sqs) { setSqs(sqs); return this; } /** *

* Write data to an Amazon Kinesis stream. *

* * @param kinesis * Write data to an Amazon Kinesis stream. */ public void setKinesis(KinesisAction kinesis) { this.kinesis = kinesis; } /** *

* Write data to an Amazon Kinesis stream. *

* * @return Write data to an Amazon Kinesis stream. */ public KinesisAction getKinesis() { return this.kinesis; } /** *

* Write data to an Amazon Kinesis stream. *

* * @param kinesis * Write data to an Amazon Kinesis stream. * @return Returns a reference to this object so that method calls can be * chained together. */ public Action withKinesis(KinesisAction kinesis) { setKinesis(kinesis); return this; } /** *

* Publish to another MQTT topic. *

* * @param republish * Publish to another MQTT topic. */ public void setRepublish(RepublishAction republish) { this.republish = republish; } /** *

* Publish to another MQTT topic. *

* * @return Publish to another MQTT topic. */ public RepublishAction getRepublish() { return this.republish; } /** *

* Publish to another MQTT topic. *

* * @param republish * Publish to another MQTT topic. * @return Returns a reference to this object so that method calls can be * chained together. */ public Action withRepublish(RepublishAction republish) { setRepublish(republish); return this; } /** *

* Write to an Amazon S3 bucket. *

* * @param s3 * Write to an Amazon S3 bucket. */ public void setS3(S3Action s3) { this.s3 = s3; } /** *

* Write to an Amazon S3 bucket. *

* * @return Write to an Amazon S3 bucket. */ public S3Action getS3() { return this.s3; } /** *

* Write to an Amazon S3 bucket. *

* * @param s3 * Write to an Amazon S3 bucket. * @return Returns a reference to this object so that method calls can be * chained together. */ public Action withS3(S3Action s3) { setS3(s3); return this; } /** *

* Write to an Amazon Kinesis Firehose stream. *

* * @param firehose * Write to an Amazon Kinesis Firehose stream. */ public void setFirehose(FirehoseAction firehose) { this.firehose = firehose; } /** *

* Write to an Amazon Kinesis Firehose stream. *

* * @return Write to an Amazon Kinesis Firehose stream. */ public FirehoseAction getFirehose() { return this.firehose; } /** *

* Write to an Amazon Kinesis Firehose stream. *

* * @param firehose * Write to an Amazon Kinesis Firehose stream. * @return Returns a reference to this object so that method calls can be * chained together. */ public Action withFirehose(FirehoseAction firehose) { setFirehose(firehose); return this; } /** *

* Capture a CloudWatch metric. *

* * @param cloudwatchMetric * Capture a CloudWatch metric. */ public void setCloudwatchMetric(CloudwatchMetricAction cloudwatchMetric) { this.cloudwatchMetric = cloudwatchMetric; } /** *

* Capture a CloudWatch metric. *

* * @return Capture a CloudWatch metric. */ public CloudwatchMetricAction getCloudwatchMetric() { return this.cloudwatchMetric; } /** *

* Capture a CloudWatch metric. *

* * @param cloudwatchMetric * Capture a CloudWatch metric. * @return Returns a reference to this object so that method calls can be * chained together. */ public Action withCloudwatchMetric(CloudwatchMetricAction cloudwatchMetric) { setCloudwatchMetric(cloudwatchMetric); return this; } /** *

* Change the state of a CloudWatch alarm. *

* * @param cloudwatchAlarm * Change the state of a CloudWatch alarm. */ public void setCloudwatchAlarm(CloudwatchAlarmAction cloudwatchAlarm) { this.cloudwatchAlarm = cloudwatchAlarm; } /** *

* Change the state of a CloudWatch alarm. *

* * @return Change the state of a CloudWatch alarm. */ public CloudwatchAlarmAction getCloudwatchAlarm() { return this.cloudwatchAlarm; } /** *

* Change the state of a CloudWatch alarm. *

* * @param cloudwatchAlarm * Change the state of a CloudWatch alarm. * @return Returns a reference to this object so that method calls can be * chained together. */ public Action withCloudwatchAlarm(CloudwatchAlarmAction cloudwatchAlarm) { setCloudwatchAlarm(cloudwatchAlarm); return this; } /** *

* Write data to an Amazon Elasticsearch Service; domain. *

* * @param elasticsearch * Write data to an Amazon Elasticsearch Service; domain. */ public void setElasticsearch(ElasticsearchAction elasticsearch) { this.elasticsearch = elasticsearch; } /** *

* Write data to an Amazon Elasticsearch Service; domain. *

* * @return Write data to an Amazon Elasticsearch Service; domain. */ public ElasticsearchAction getElasticsearch() { return this.elasticsearch; } /** *

* Write data to an Amazon Elasticsearch Service; domain. *

* * @param elasticsearch * Write data to an Amazon Elasticsearch Service; domain. * @return Returns a reference to this object so that method calls can be * chained together. */ public Action withElasticsearch(ElasticsearchAction elasticsearch) { setElasticsearch(elasticsearch); return this; } /** * Returns a string representation of this object; useful for testing and * debugging. * * @return A string representation of this object. * * @see java.lang.Object#toString() */ @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("{"); if (getDynamoDB() != null) sb.append("DynamoDB: " + getDynamoDB() + ","); if (getLambda() != null) sb.append("Lambda: " + getLambda() + ","); if (getSns() != null) sb.append("Sns: " + getSns() + ","); if (getSqs() != null) sb.append("Sqs: " + getSqs() + ","); if (getKinesis() != null) sb.append("Kinesis: " + getKinesis() + ","); if (getRepublish() != null) sb.append("Republish: " + getRepublish() + ","); if (getS3() != null) sb.append("S3: " + getS3() + ","); if (getFirehose() != null) sb.append("Firehose: " + getFirehose() + ","); if (getCloudwatchMetric() != null) sb.append("CloudwatchMetric: " + getCloudwatchMetric() + ","); if (getCloudwatchAlarm() != null) sb.append("CloudwatchAlarm: " + getCloudwatchAlarm() + ","); if (getElasticsearch() != null) sb.append("Elasticsearch: " + getElasticsearch()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof Action == false) return false; Action other = (Action) obj; if (other.getDynamoDB() == null ^ this.getDynamoDB() == null) return false; if (other.getDynamoDB() != null && other.getDynamoDB().equals(this.getDynamoDB()) == false) return false; if (other.getLambda() == null ^ this.getLambda() == null) return false; if (other.getLambda() != null && other.getLambda().equals(this.getLambda()) == false) return false; if (other.getSns() == null ^ this.getSns() == null) return false; if (other.getSns() != null && other.getSns().equals(this.getSns()) == false) return false; if (other.getSqs() == null ^ this.getSqs() == null) return false; if (other.getSqs() != null && other.getSqs().equals(this.getSqs()) == false) return false; if (other.getKinesis() == null ^ this.getKinesis() == null) return false; if (other.getKinesis() != null && other.getKinesis().equals(this.getKinesis()) == false) return false; if (other.getRepublish() == null ^ this.getRepublish() == null) return false; if (other.getRepublish() != null && other.getRepublish().equals(this.getRepublish()) == false) return false; if (other.getS3() == null ^ this.getS3() == null) return false; if (other.getS3() != null && other.getS3().equals(this.getS3()) == false) return false; if (other.getFirehose() == null ^ this.getFirehose() == null) return false; if (other.getFirehose() != null && other.getFirehose().equals(this.getFirehose()) == false) return false; if (other.getCloudwatchMetric() == null ^ this.getCloudwatchMetric() == null) return false; if (other.getCloudwatchMetric() != null && other.getCloudwatchMetric().equals( this.getCloudwatchMetric()) == false) return false; if (other.getCloudwatchAlarm() == null ^ this.getCloudwatchAlarm() == null) return false; if (other.getCloudwatchAlarm() != null && other.getCloudwatchAlarm().equals(this.getCloudwatchAlarm()) == false) return false; if (other.getElasticsearch() == null ^ this.getElasticsearch() == null) return false; if (other.getElasticsearch() != null && other.getElasticsearch().equals(this.getElasticsearch()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getDynamoDB() == null) ? 0 : getDynamoDB().hashCode()); hashCode = prime * hashCode + ((getLambda() == null) ? 0 : getLambda().hashCode()); hashCode = prime * hashCode + ((getSns() == null) ? 0 : getSns().hashCode()); hashCode = prime * hashCode + ((getSqs() == null) ? 0 : getSqs().hashCode()); hashCode = prime * hashCode + ((getKinesis() == null) ? 0 : getKinesis().hashCode()); hashCode = prime * hashCode + ((getRepublish() == null) ? 0 : getRepublish().hashCode()); hashCode = prime * hashCode + ((getS3() == null) ? 0 : getS3().hashCode()); hashCode = prime * hashCode + ((getFirehose() == null) ? 0 : getFirehose().hashCode()); hashCode = prime * hashCode + ((getCloudwatchMetric() == null) ? 0 : getCloudwatchMetric() .hashCode()); hashCode = prime * hashCode + ((getCloudwatchAlarm() == null) ? 0 : getCloudwatchAlarm() .hashCode()); hashCode = prime * hashCode + ((getElasticsearch() == null) ? 0 : getElasticsearch() .hashCode()); return hashCode; } @Override public Action clone() { try { return (Action) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException( "Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy