/* * 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.iotfleetwise.model; import java.io.Serializable; import javax.annotation.Generated; import com.amazonaws.protocol.StructuredPojo; import com.amazonaws.protocol.ProtocolMarshaller; /** *

* The registered Amazon Timestream resources that Amazon Web Services IoT FleetWise edge agent software can transfer * your vehicle data to. *

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

* The name of the registered Amazon Timestream database. *

*/ private String timestreamDatabaseName; /** *

* The name of the registered Amazon Timestream database table. *

*/ private String timestreamTableName; /** *

* The name of the registered Amazon Timestream database. *

* * @param timestreamDatabaseName * The name of the registered Amazon Timestream database. */ public void setTimestreamDatabaseName(String timestreamDatabaseName) { this.timestreamDatabaseName = timestreamDatabaseName; } /** *

* The name of the registered Amazon Timestream database. *

* * @return The name of the registered Amazon Timestream database. */ public String getTimestreamDatabaseName() { return this.timestreamDatabaseName; } /** *

* The name of the registered Amazon Timestream database. *

* * @param timestreamDatabaseName * The name of the registered Amazon Timestream database. * @return Returns a reference to this object so that method calls can be chained together. */ public TimestreamResources withTimestreamDatabaseName(String timestreamDatabaseName) { setTimestreamDatabaseName(timestreamDatabaseName); return this; } /** *

* The name of the registered Amazon Timestream database table. *

* * @param timestreamTableName * The name of the registered Amazon Timestream database table. */ public void setTimestreamTableName(String timestreamTableName) { this.timestreamTableName = timestreamTableName; } /** *

* The name of the registered Amazon Timestream database table. *

* * @return The name of the registered Amazon Timestream database table. */ public String getTimestreamTableName() { return this.timestreamTableName; } /** *

* The name of the registered Amazon Timestream database table. *

* * @param timestreamTableName * The name of the registered Amazon Timestream database table. * @return Returns a reference to this object so that method calls can be chained together. */ public TimestreamResources withTimestreamTableName(String timestreamTableName) { setTimestreamTableName(timestreamTableName); 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 (getTimestreamDatabaseName() != null) sb.append("TimestreamDatabaseName: ").append(getTimestreamDatabaseName()).append(","); if (getTimestreamTableName() != null) sb.append("TimestreamTableName: ").append(getTimestreamTableName()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof TimestreamResources == false) return false; TimestreamResources other = (TimestreamResources) obj; if (other.getTimestreamDatabaseName() == null ^ this.getTimestreamDatabaseName() == null) return false; if (other.getTimestreamDatabaseName() != null && other.getTimestreamDatabaseName().equals(this.getTimestreamDatabaseName()) == false) return false; if (other.getTimestreamTableName() == null ^ this.getTimestreamTableName() == null) return false; if (other.getTimestreamTableName() != null && other.getTimestreamTableName().equals(this.getTimestreamTableName()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getTimestreamDatabaseName() == null) ? 0 : getTimestreamDatabaseName().hashCode()); hashCode = prime * hashCode + ((getTimestreamTableName() == null) ? 0 : getTimestreamTableName().hashCode()); return hashCode; } @Override public TimestreamResources clone() { try { return (TimestreamResources) 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.iotfleetwise.model.transform.TimestreamResourcesMarshaller.getInstance().marshall(this, protocolMarshaller); } }