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

com.amazonaws.services.kinesisanalytics.model.Output Maven / Gradle / Ivy

Go to download

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

There is a newer version: 1.12.765
Show newest version
/*
 * Copyright 2018-2023 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.kinesisanalytics.model;

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

/**
 * 

* Describes application output configuration in which you identify an in-application stream and a destination where you * want the in-application stream data to be written. The destination can be an Amazon Kinesis stream or an Amazon * Kinesis Firehose delivery stream. *

*

*

* For limits on how many destinations an application can write and other limitations, see Limits. *

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

* Name of the in-application stream. *

*/ private String name; /** *

* Identifies an Amazon Kinesis stream as the destination. *

*/ private KinesisStreamsOutput kinesisStreamsOutput; /** *

* Identifies an Amazon Kinesis Firehose delivery stream as the destination. *

*/ private KinesisFirehoseOutput kinesisFirehoseOutput; /** *

* Identifies an AWS Lambda function as the destination. *

*/ private LambdaOutput lambdaOutput; /** *

* Describes the data format when records are written to the destination. For more information, see Configuring Application * Output. *

*/ private DestinationSchema destinationSchema; /** *

* Name of the in-application stream. *

* * @param name * Name of the in-application stream. */ public void setName(String name) { this.name = name; } /** *

* Name of the in-application stream. *

* * @return Name of the in-application stream. */ public String getName() { return this.name; } /** *

* Name of the in-application stream. *

* * @param name * Name of the in-application stream. * @return Returns a reference to this object so that method calls can be chained together. */ public Output withName(String name) { setName(name); return this; } /** *

* Identifies an Amazon Kinesis stream as the destination. *

* * @param kinesisStreamsOutput * Identifies an Amazon Kinesis stream as the destination. */ public void setKinesisStreamsOutput(KinesisStreamsOutput kinesisStreamsOutput) { this.kinesisStreamsOutput = kinesisStreamsOutput; } /** *

* Identifies an Amazon Kinesis stream as the destination. *

* * @return Identifies an Amazon Kinesis stream as the destination. */ public KinesisStreamsOutput getKinesisStreamsOutput() { return this.kinesisStreamsOutput; } /** *

* Identifies an Amazon Kinesis stream as the destination. *

* * @param kinesisStreamsOutput * Identifies an Amazon Kinesis stream as the destination. * @return Returns a reference to this object so that method calls can be chained together. */ public Output withKinesisStreamsOutput(KinesisStreamsOutput kinesisStreamsOutput) { setKinesisStreamsOutput(kinesisStreamsOutput); return this; } /** *

* Identifies an Amazon Kinesis Firehose delivery stream as the destination. *

* * @param kinesisFirehoseOutput * Identifies an Amazon Kinesis Firehose delivery stream as the destination. */ public void setKinesisFirehoseOutput(KinesisFirehoseOutput kinesisFirehoseOutput) { this.kinesisFirehoseOutput = kinesisFirehoseOutput; } /** *

* Identifies an Amazon Kinesis Firehose delivery stream as the destination. *

* * @return Identifies an Amazon Kinesis Firehose delivery stream as the destination. */ public KinesisFirehoseOutput getKinesisFirehoseOutput() { return this.kinesisFirehoseOutput; } /** *

* Identifies an Amazon Kinesis Firehose delivery stream as the destination. *

* * @param kinesisFirehoseOutput * Identifies an Amazon Kinesis Firehose delivery stream as the destination. * @return Returns a reference to this object so that method calls can be chained together. */ public Output withKinesisFirehoseOutput(KinesisFirehoseOutput kinesisFirehoseOutput) { setKinesisFirehoseOutput(kinesisFirehoseOutput); return this; } /** *

* Identifies an AWS Lambda function as the destination. *

* * @param lambdaOutput * Identifies an AWS Lambda function as the destination. */ public void setLambdaOutput(LambdaOutput lambdaOutput) { this.lambdaOutput = lambdaOutput; } /** *

* Identifies an AWS Lambda function as the destination. *

* * @return Identifies an AWS Lambda function as the destination. */ public LambdaOutput getLambdaOutput() { return this.lambdaOutput; } /** *

* Identifies an AWS Lambda function as the destination. *

* * @param lambdaOutput * Identifies an AWS Lambda function as the destination. * @return Returns a reference to this object so that method calls can be chained together. */ public Output withLambdaOutput(LambdaOutput lambdaOutput) { setLambdaOutput(lambdaOutput); return this; } /** *

* Describes the data format when records are written to the destination. For more information, see Configuring Application * Output. *

* * @param destinationSchema * Describes the data format when records are written to the destination. For more information, see Configuring * Application Output. */ public void setDestinationSchema(DestinationSchema destinationSchema) { this.destinationSchema = destinationSchema; } /** *

* Describes the data format when records are written to the destination. For more information, see Configuring Application * Output. *

* * @return Describes the data format when records are written to the destination. For more information, see Configuring * Application Output. */ public DestinationSchema getDestinationSchema() { return this.destinationSchema; } /** *

* Describes the data format when records are written to the destination. For more information, see Configuring Application * Output. *

* * @param destinationSchema * Describes the data format when records are written to the destination. For more information, see Configuring * Application Output. * @return Returns a reference to this object so that method calls can be chained together. */ public Output withDestinationSchema(DestinationSchema destinationSchema) { setDestinationSchema(destinationSchema); 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 (getName() != null) sb.append("Name: ").append(getName()).append(","); if (getKinesisStreamsOutput() != null) sb.append("KinesisStreamsOutput: ").append(getKinesisStreamsOutput()).append(","); if (getKinesisFirehoseOutput() != null) sb.append("KinesisFirehoseOutput: ").append(getKinesisFirehoseOutput()).append(","); if (getLambdaOutput() != null) sb.append("LambdaOutput: ").append(getLambdaOutput()).append(","); if (getDestinationSchema() != null) sb.append("DestinationSchema: ").append(getDestinationSchema()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof Output == false) return false; Output other = (Output) obj; if (other.getName() == null ^ this.getName() == null) return false; if (other.getName() != null && other.getName().equals(this.getName()) == false) return false; if (other.getKinesisStreamsOutput() == null ^ this.getKinesisStreamsOutput() == null) return false; if (other.getKinesisStreamsOutput() != null && other.getKinesisStreamsOutput().equals(this.getKinesisStreamsOutput()) == false) return false; if (other.getKinesisFirehoseOutput() == null ^ this.getKinesisFirehoseOutput() == null) return false; if (other.getKinesisFirehoseOutput() != null && other.getKinesisFirehoseOutput().equals(this.getKinesisFirehoseOutput()) == false) return false; if (other.getLambdaOutput() == null ^ this.getLambdaOutput() == null) return false; if (other.getLambdaOutput() != null && other.getLambdaOutput().equals(this.getLambdaOutput()) == false) return false; if (other.getDestinationSchema() == null ^ this.getDestinationSchema() == null) return false; if (other.getDestinationSchema() != null && other.getDestinationSchema().equals(this.getDestinationSchema()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getName() == null) ? 0 : getName().hashCode()); hashCode = prime * hashCode + ((getKinesisStreamsOutput() == null) ? 0 : getKinesisStreamsOutput().hashCode()); hashCode = prime * hashCode + ((getKinesisFirehoseOutput() == null) ? 0 : getKinesisFirehoseOutput().hashCode()); hashCode = prime * hashCode + ((getLambdaOutput() == null) ? 0 : getLambdaOutput().hashCode()); hashCode = prime * hashCode + ((getDestinationSchema() == null) ? 0 : getDestinationSchema().hashCode()); return hashCode; } @Override public Output clone() { try { return (Output) 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.kinesisanalytics.model.transform.OutputMarshaller.getInstance().marshall(this, protocolMarshaller); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy