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

com.amazonaws.services.kinesisfirehose.model.RedshiftDestinationDescription Maven / Gradle / Ivy

/*
 * Copyright 2014-2019 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.kinesisfirehose.model;

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

/**
 * 

* Describes a destination in Amazon Redshift. *

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

* The Amazon Resource Name (ARN) of the AWS credentials. For more information, see Amazon Resource Names (ARNs) * and AWS Service Namespaces. *

*/ private String roleARN; /** *

* The database connection string. *

*/ private String clusterJDBCURL; /** *

* The COPY command. *

*/ private CopyCommand copyCommand; /** *

* The name of the user. *

*/ private String username; /** *

* The retry behavior in case Kinesis Data Firehose is unable to deliver documents to Amazon Redshift. Default value * is 3600 (60 minutes). *

*/ private RedshiftRetryOptions retryOptions; /** *

* The Amazon S3 destination. *

*/ private S3DestinationDescription s3DestinationDescription; /** *

* The data processing configuration. *

*/ private ProcessingConfiguration processingConfiguration; /** *

* The Amazon S3 backup mode. *

*/ private String s3BackupMode; /** *

* The configuration for backup in Amazon S3. *

*/ private S3DestinationDescription s3BackupDescription; /** *

* The Amazon CloudWatch logging options for your delivery stream. *

*/ private CloudWatchLoggingOptions cloudWatchLoggingOptions; /** *

* The Amazon Resource Name (ARN) of the AWS credentials. For more information, see Amazon Resource Names (ARNs) * and AWS Service Namespaces. *

* * @param roleARN * The Amazon Resource Name (ARN) of the AWS credentials. For more information, see Amazon Resource Names * (ARNs) and AWS Service Namespaces. */ public void setRoleARN(String roleARN) { this.roleARN = roleARN; } /** *

* The Amazon Resource Name (ARN) of the AWS credentials. For more information, see Amazon Resource Names (ARNs) * and AWS Service Namespaces. *

* * @return The Amazon Resource Name (ARN) of the AWS credentials. For more information, see Amazon Resource Names * (ARNs) and AWS Service Namespaces. */ public String getRoleARN() { return this.roleARN; } /** *

* The Amazon Resource Name (ARN) of the AWS credentials. For more information, see Amazon Resource Names (ARNs) * and AWS Service Namespaces. *

* * @param roleARN * The Amazon Resource Name (ARN) of the AWS credentials. For more information, see Amazon Resource Names * (ARNs) and AWS Service Namespaces. * @return Returns a reference to this object so that method calls can be chained together. */ public RedshiftDestinationDescription withRoleARN(String roleARN) { setRoleARN(roleARN); return this; } /** *

* The database connection string. *

* * @param clusterJDBCURL * The database connection string. */ public void setClusterJDBCURL(String clusterJDBCURL) { this.clusterJDBCURL = clusterJDBCURL; } /** *

* The database connection string. *

* * @return The database connection string. */ public String getClusterJDBCURL() { return this.clusterJDBCURL; } /** *

* The database connection string. *

* * @param clusterJDBCURL * The database connection string. * @return Returns a reference to this object so that method calls can be chained together. */ public RedshiftDestinationDescription withClusterJDBCURL(String clusterJDBCURL) { setClusterJDBCURL(clusterJDBCURL); return this; } /** *

* The COPY command. *

* * @param copyCommand * The COPY command. */ public void setCopyCommand(CopyCommand copyCommand) { this.copyCommand = copyCommand; } /** *

* The COPY command. *

* * @return The COPY command. */ public CopyCommand getCopyCommand() { return this.copyCommand; } /** *

* The COPY command. *

* * @param copyCommand * The COPY command. * @return Returns a reference to this object so that method calls can be chained together. */ public RedshiftDestinationDescription withCopyCommand(CopyCommand copyCommand) { setCopyCommand(copyCommand); return this; } /** *

* The name of the user. *

* * @param username * The name of the user. */ public void setUsername(String username) { this.username = username; } /** *

* The name of the user. *

* * @return The name of the user. */ public String getUsername() { return this.username; } /** *

* The name of the user. *

* * @param username * The name of the user. * @return Returns a reference to this object so that method calls can be chained together. */ public RedshiftDestinationDescription withUsername(String username) { setUsername(username); return this; } /** *

* The retry behavior in case Kinesis Data Firehose is unable to deliver documents to Amazon Redshift. Default value * is 3600 (60 minutes). *

* * @param retryOptions * The retry behavior in case Kinesis Data Firehose is unable to deliver documents to Amazon Redshift. * Default value is 3600 (60 minutes). */ public void setRetryOptions(RedshiftRetryOptions retryOptions) { this.retryOptions = retryOptions; } /** *

* The retry behavior in case Kinesis Data Firehose is unable to deliver documents to Amazon Redshift. Default value * is 3600 (60 minutes). *

* * @return The retry behavior in case Kinesis Data Firehose is unable to deliver documents to Amazon Redshift. * Default value is 3600 (60 minutes). */ public RedshiftRetryOptions getRetryOptions() { return this.retryOptions; } /** *

* The retry behavior in case Kinesis Data Firehose is unable to deliver documents to Amazon Redshift. Default value * is 3600 (60 minutes). *

* * @param retryOptions * The retry behavior in case Kinesis Data Firehose is unable to deliver documents to Amazon Redshift. * Default value is 3600 (60 minutes). * @return Returns a reference to this object so that method calls can be chained together. */ public RedshiftDestinationDescription withRetryOptions(RedshiftRetryOptions retryOptions) { setRetryOptions(retryOptions); return this; } /** *

* The Amazon S3 destination. *

* * @param s3DestinationDescription * The Amazon S3 destination. */ public void setS3DestinationDescription(S3DestinationDescription s3DestinationDescription) { this.s3DestinationDescription = s3DestinationDescription; } /** *

* The Amazon S3 destination. *

* * @return The Amazon S3 destination. */ public S3DestinationDescription getS3DestinationDescription() { return this.s3DestinationDescription; } /** *

* The Amazon S3 destination. *

* * @param s3DestinationDescription * The Amazon S3 destination. * @return Returns a reference to this object so that method calls can be chained together. */ public RedshiftDestinationDescription withS3DestinationDescription(S3DestinationDescription s3DestinationDescription) { setS3DestinationDescription(s3DestinationDescription); return this; } /** *

* The data processing configuration. *

* * @param processingConfiguration * The data processing configuration. */ public void setProcessingConfiguration(ProcessingConfiguration processingConfiguration) { this.processingConfiguration = processingConfiguration; } /** *

* The data processing configuration. *

* * @return The data processing configuration. */ public ProcessingConfiguration getProcessingConfiguration() { return this.processingConfiguration; } /** *

* The data processing configuration. *

* * @param processingConfiguration * The data processing configuration. * @return Returns a reference to this object so that method calls can be chained together. */ public RedshiftDestinationDescription withProcessingConfiguration(ProcessingConfiguration processingConfiguration) { setProcessingConfiguration(processingConfiguration); return this; } /** *

* The Amazon S3 backup mode. *

* * @param s3BackupMode * The Amazon S3 backup mode. * @see RedshiftS3BackupMode */ public void setS3BackupMode(String s3BackupMode) { this.s3BackupMode = s3BackupMode; } /** *

* The Amazon S3 backup mode. *

* * @return The Amazon S3 backup mode. * @see RedshiftS3BackupMode */ public String getS3BackupMode() { return this.s3BackupMode; } /** *

* The Amazon S3 backup mode. *

* * @param s3BackupMode * The Amazon S3 backup mode. * @return Returns a reference to this object so that method calls can be chained together. * @see RedshiftS3BackupMode */ public RedshiftDestinationDescription withS3BackupMode(String s3BackupMode) { setS3BackupMode(s3BackupMode); return this; } /** *

* The Amazon S3 backup mode. *

* * @param s3BackupMode * The Amazon S3 backup mode. * @see RedshiftS3BackupMode */ public void setS3BackupMode(RedshiftS3BackupMode s3BackupMode) { withS3BackupMode(s3BackupMode); } /** *

* The Amazon S3 backup mode. *

* * @param s3BackupMode * The Amazon S3 backup mode. * @return Returns a reference to this object so that method calls can be chained together. * @see RedshiftS3BackupMode */ public RedshiftDestinationDescription withS3BackupMode(RedshiftS3BackupMode s3BackupMode) { this.s3BackupMode = s3BackupMode.toString(); return this; } /** *

* The configuration for backup in Amazon S3. *

* * @param s3BackupDescription * The configuration for backup in Amazon S3. */ public void setS3BackupDescription(S3DestinationDescription s3BackupDescription) { this.s3BackupDescription = s3BackupDescription; } /** *

* The configuration for backup in Amazon S3. *

* * @return The configuration for backup in Amazon S3. */ public S3DestinationDescription getS3BackupDescription() { return this.s3BackupDescription; } /** *

* The configuration for backup in Amazon S3. *

* * @param s3BackupDescription * The configuration for backup in Amazon S3. * @return Returns a reference to this object so that method calls can be chained together. */ public RedshiftDestinationDescription withS3BackupDescription(S3DestinationDescription s3BackupDescription) { setS3BackupDescription(s3BackupDescription); return this; } /** *

* The Amazon CloudWatch logging options for your delivery stream. *

* * @param cloudWatchLoggingOptions * The Amazon CloudWatch logging options for your delivery stream. */ public void setCloudWatchLoggingOptions(CloudWatchLoggingOptions cloudWatchLoggingOptions) { this.cloudWatchLoggingOptions = cloudWatchLoggingOptions; } /** *

* The Amazon CloudWatch logging options for your delivery stream. *

* * @return The Amazon CloudWatch logging options for your delivery stream. */ public CloudWatchLoggingOptions getCloudWatchLoggingOptions() { return this.cloudWatchLoggingOptions; } /** *

* The Amazon CloudWatch logging options for your delivery stream. *

* * @param cloudWatchLoggingOptions * The Amazon CloudWatch logging options for your delivery stream. * @return Returns a reference to this object so that method calls can be chained together. */ public RedshiftDestinationDescription withCloudWatchLoggingOptions(CloudWatchLoggingOptions cloudWatchLoggingOptions) { setCloudWatchLoggingOptions(cloudWatchLoggingOptions); 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 (getRoleARN() != null) sb.append("RoleARN: ").append(getRoleARN()).append(","); if (getClusterJDBCURL() != null) sb.append("ClusterJDBCURL: ").append(getClusterJDBCURL()).append(","); if (getCopyCommand() != null) sb.append("CopyCommand: ").append(getCopyCommand()).append(","); if (getUsername() != null) sb.append("Username: ").append("***Sensitive Data Redacted***").append(","); if (getRetryOptions() != null) sb.append("RetryOptions: ").append(getRetryOptions()).append(","); if (getS3DestinationDescription() != null) sb.append("S3DestinationDescription: ").append(getS3DestinationDescription()).append(","); if (getProcessingConfiguration() != null) sb.append("ProcessingConfiguration: ").append(getProcessingConfiguration()).append(","); if (getS3BackupMode() != null) sb.append("S3BackupMode: ").append(getS3BackupMode()).append(","); if (getS3BackupDescription() != null) sb.append("S3BackupDescription: ").append(getS3BackupDescription()).append(","); if (getCloudWatchLoggingOptions() != null) sb.append("CloudWatchLoggingOptions: ").append(getCloudWatchLoggingOptions()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof RedshiftDestinationDescription == false) return false; RedshiftDestinationDescription other = (RedshiftDestinationDescription) obj; if (other.getRoleARN() == null ^ this.getRoleARN() == null) return false; if (other.getRoleARN() != null && other.getRoleARN().equals(this.getRoleARN()) == false) return false; if (other.getClusterJDBCURL() == null ^ this.getClusterJDBCURL() == null) return false; if (other.getClusterJDBCURL() != null && other.getClusterJDBCURL().equals(this.getClusterJDBCURL()) == false) return false; if (other.getCopyCommand() == null ^ this.getCopyCommand() == null) return false; if (other.getCopyCommand() != null && other.getCopyCommand().equals(this.getCopyCommand()) == false) return false; if (other.getUsername() == null ^ this.getUsername() == null) return false; if (other.getUsername() != null && other.getUsername().equals(this.getUsername()) == false) return false; if (other.getRetryOptions() == null ^ this.getRetryOptions() == null) return false; if (other.getRetryOptions() != null && other.getRetryOptions().equals(this.getRetryOptions()) == false) return false; if (other.getS3DestinationDescription() == null ^ this.getS3DestinationDescription() == null) return false; if (other.getS3DestinationDescription() != null && other.getS3DestinationDescription().equals(this.getS3DestinationDescription()) == false) return false; if (other.getProcessingConfiguration() == null ^ this.getProcessingConfiguration() == null) return false; if (other.getProcessingConfiguration() != null && other.getProcessingConfiguration().equals(this.getProcessingConfiguration()) == false) return false; if (other.getS3BackupMode() == null ^ this.getS3BackupMode() == null) return false; if (other.getS3BackupMode() != null && other.getS3BackupMode().equals(this.getS3BackupMode()) == false) return false; if (other.getS3BackupDescription() == null ^ this.getS3BackupDescription() == null) return false; if (other.getS3BackupDescription() != null && other.getS3BackupDescription().equals(this.getS3BackupDescription()) == false) return false; if (other.getCloudWatchLoggingOptions() == null ^ this.getCloudWatchLoggingOptions() == null) return false; if (other.getCloudWatchLoggingOptions() != null && other.getCloudWatchLoggingOptions().equals(this.getCloudWatchLoggingOptions()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getRoleARN() == null) ? 0 : getRoleARN().hashCode()); hashCode = prime * hashCode + ((getClusterJDBCURL() == null) ? 0 : getClusterJDBCURL().hashCode()); hashCode = prime * hashCode + ((getCopyCommand() == null) ? 0 : getCopyCommand().hashCode()); hashCode = prime * hashCode + ((getUsername() == null) ? 0 : getUsername().hashCode()); hashCode = prime * hashCode + ((getRetryOptions() == null) ? 0 : getRetryOptions().hashCode()); hashCode = prime * hashCode + ((getS3DestinationDescription() == null) ? 0 : getS3DestinationDescription().hashCode()); hashCode = prime * hashCode + ((getProcessingConfiguration() == null) ? 0 : getProcessingConfiguration().hashCode()); hashCode = prime * hashCode + ((getS3BackupMode() == null) ? 0 : getS3BackupMode().hashCode()); hashCode = prime * hashCode + ((getS3BackupDescription() == null) ? 0 : getS3BackupDescription().hashCode()); hashCode = prime * hashCode + ((getCloudWatchLoggingOptions() == null) ? 0 : getCloudWatchLoggingOptions().hashCode()); return hashCode; } @Override public RedshiftDestinationDescription clone() { try { return (RedshiftDestinationDescription) 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.kinesisfirehose.model.transform.RedshiftDestinationDescriptionMarshaller.getInstance().marshall(this, protocolMarshaller); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy