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

* MixedMeasureMappings are mappings that can be used to ingest data into a mixture of narrow and multi measures in the * derived table. *

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

* Refers to the value of measure_name in a result row. This field is required if MeasureNameColumn is provided. *

*/ private String measureName; /** *

* This field refers to the source column from which measure-value is to be read for result materialization. *

*/ private String sourceColumn; /** *

* Target measure name to be used. If not provided, the target measure name by default would be measure-name if * provided, or sourceColumn otherwise. *

*/ private String targetMeasureName; /** *

* Type of the value that is to be read from sourceColumn. If the mapping is for MULTI, use MeasureValueType.MULTI. *

*/ private String measureValueType; /** *

* Required when measureValueType is MULTI. Attribute mappings for MULTI value measures. *

*/ private java.util.List multiMeasureAttributeMappings; /** *

* Refers to the value of measure_name in a result row. This field is required if MeasureNameColumn is provided. *

* * @param measureName * Refers to the value of measure_name in a result row. This field is required if MeasureNameColumn is * provided. */ public void setMeasureName(String measureName) { this.measureName = measureName; } /** *

* Refers to the value of measure_name in a result row. This field is required if MeasureNameColumn is provided. *

* * @return Refers to the value of measure_name in a result row. This field is required if MeasureNameColumn is * provided. */ public String getMeasureName() { return this.measureName; } /** *

* Refers to the value of measure_name in a result row. This field is required if MeasureNameColumn is provided. *

* * @param measureName * Refers to the value of measure_name in a result row. This field is required if MeasureNameColumn is * provided. * @return Returns a reference to this object so that method calls can be chained together. */ public MixedMeasureMapping withMeasureName(String measureName) { setMeasureName(measureName); return this; } /** *

* This field refers to the source column from which measure-value is to be read for result materialization. *

* * @param sourceColumn * This field refers to the source column from which measure-value is to be read for result materialization. */ public void setSourceColumn(String sourceColumn) { this.sourceColumn = sourceColumn; } /** *

* This field refers to the source column from which measure-value is to be read for result materialization. *

* * @return This field refers to the source column from which measure-value is to be read for result materialization. */ public String getSourceColumn() { return this.sourceColumn; } /** *

* This field refers to the source column from which measure-value is to be read for result materialization. *

* * @param sourceColumn * This field refers to the source column from which measure-value is to be read for result materialization. * @return Returns a reference to this object so that method calls can be chained together. */ public MixedMeasureMapping withSourceColumn(String sourceColumn) { setSourceColumn(sourceColumn); return this; } /** *

* Target measure name to be used. If not provided, the target measure name by default would be measure-name if * provided, or sourceColumn otherwise. *

* * @param targetMeasureName * Target measure name to be used. If not provided, the target measure name by default would be measure-name * if provided, or sourceColumn otherwise. */ public void setTargetMeasureName(String targetMeasureName) { this.targetMeasureName = targetMeasureName; } /** *

* Target measure name to be used. If not provided, the target measure name by default would be measure-name if * provided, or sourceColumn otherwise. *

* * @return Target measure name to be used. If not provided, the target measure name by default would be measure-name * if provided, or sourceColumn otherwise. */ public String getTargetMeasureName() { return this.targetMeasureName; } /** *

* Target measure name to be used. If not provided, the target measure name by default would be measure-name if * provided, or sourceColumn otherwise. *

* * @param targetMeasureName * Target measure name to be used. If not provided, the target measure name by default would be measure-name * if provided, or sourceColumn otherwise. * @return Returns a reference to this object so that method calls can be chained together. */ public MixedMeasureMapping withTargetMeasureName(String targetMeasureName) { setTargetMeasureName(targetMeasureName); return this; } /** *

* Type of the value that is to be read from sourceColumn. If the mapping is for MULTI, use MeasureValueType.MULTI. *

* * @param measureValueType * Type of the value that is to be read from sourceColumn. If the mapping is for MULTI, use * MeasureValueType.MULTI. * @see MeasureValueType */ public void setMeasureValueType(String measureValueType) { this.measureValueType = measureValueType; } /** *

* Type of the value that is to be read from sourceColumn. If the mapping is for MULTI, use MeasureValueType.MULTI. *

* * @return Type of the value that is to be read from sourceColumn. If the mapping is for MULTI, use * MeasureValueType.MULTI. * @see MeasureValueType */ public String getMeasureValueType() { return this.measureValueType; } /** *

* Type of the value that is to be read from sourceColumn. If the mapping is for MULTI, use MeasureValueType.MULTI. *

* * @param measureValueType * Type of the value that is to be read from sourceColumn. If the mapping is for MULTI, use * MeasureValueType.MULTI. * @return Returns a reference to this object so that method calls can be chained together. * @see MeasureValueType */ public MixedMeasureMapping withMeasureValueType(String measureValueType) { setMeasureValueType(measureValueType); return this; } /** *

* Type of the value that is to be read from sourceColumn. If the mapping is for MULTI, use MeasureValueType.MULTI. *

* * @param measureValueType * Type of the value that is to be read from sourceColumn. If the mapping is for MULTI, use * MeasureValueType.MULTI. * @return Returns a reference to this object so that method calls can be chained together. * @see MeasureValueType */ public MixedMeasureMapping withMeasureValueType(MeasureValueType measureValueType) { this.measureValueType = measureValueType.toString(); return this; } /** *

* Required when measureValueType is MULTI. Attribute mappings for MULTI value measures. *

* * @return Required when measureValueType is MULTI. Attribute mappings for MULTI value measures. */ public java.util.List getMultiMeasureAttributeMappings() { return multiMeasureAttributeMappings; } /** *

* Required when measureValueType is MULTI. Attribute mappings for MULTI value measures. *

* * @param multiMeasureAttributeMappings * Required when measureValueType is MULTI. Attribute mappings for MULTI value measures. */ public void setMultiMeasureAttributeMappings(java.util.Collection multiMeasureAttributeMappings) { if (multiMeasureAttributeMappings == null) { this.multiMeasureAttributeMappings = null; return; } this.multiMeasureAttributeMappings = new java.util.ArrayList(multiMeasureAttributeMappings); } /** *

* Required when measureValueType is MULTI. Attribute mappings for MULTI value measures. *

*

* NOTE: This method appends the values to the existing list (if any). Use * {@link #setMultiMeasureAttributeMappings(java.util.Collection)} or * {@link #withMultiMeasureAttributeMappings(java.util.Collection)} if you want to override the existing values. *

* * @param multiMeasureAttributeMappings * Required when measureValueType is MULTI. Attribute mappings for MULTI value measures. * @return Returns a reference to this object so that method calls can be chained together. */ public MixedMeasureMapping withMultiMeasureAttributeMappings(MultiMeasureAttributeMapping... multiMeasureAttributeMappings) { if (this.multiMeasureAttributeMappings == null) { setMultiMeasureAttributeMappings(new java.util.ArrayList(multiMeasureAttributeMappings.length)); } for (MultiMeasureAttributeMapping ele : multiMeasureAttributeMappings) { this.multiMeasureAttributeMappings.add(ele); } return this; } /** *

* Required when measureValueType is MULTI. Attribute mappings for MULTI value measures. *

* * @param multiMeasureAttributeMappings * Required when measureValueType is MULTI. Attribute mappings for MULTI value measures. * @return Returns a reference to this object so that method calls can be chained together. */ public MixedMeasureMapping withMultiMeasureAttributeMappings(java.util.Collection multiMeasureAttributeMappings) { setMultiMeasureAttributeMappings(multiMeasureAttributeMappings); 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 (getMeasureName() != null) sb.append("MeasureName: ").append(getMeasureName()).append(","); if (getSourceColumn() != null) sb.append("SourceColumn: ").append(getSourceColumn()).append(","); if (getTargetMeasureName() != null) sb.append("TargetMeasureName: ").append(getTargetMeasureName()).append(","); if (getMeasureValueType() != null) sb.append("MeasureValueType: ").append(getMeasureValueType()).append(","); if (getMultiMeasureAttributeMappings() != null) sb.append("MultiMeasureAttributeMappings: ").append(getMultiMeasureAttributeMappings()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof MixedMeasureMapping == false) return false; MixedMeasureMapping other = (MixedMeasureMapping) obj; if (other.getMeasureName() == null ^ this.getMeasureName() == null) return false; if (other.getMeasureName() != null && other.getMeasureName().equals(this.getMeasureName()) == false) return false; if (other.getSourceColumn() == null ^ this.getSourceColumn() == null) return false; if (other.getSourceColumn() != null && other.getSourceColumn().equals(this.getSourceColumn()) == false) return false; if (other.getTargetMeasureName() == null ^ this.getTargetMeasureName() == null) return false; if (other.getTargetMeasureName() != null && other.getTargetMeasureName().equals(this.getTargetMeasureName()) == false) return false; if (other.getMeasureValueType() == null ^ this.getMeasureValueType() == null) return false; if (other.getMeasureValueType() != null && other.getMeasureValueType().equals(this.getMeasureValueType()) == false) return false; if (other.getMultiMeasureAttributeMappings() == null ^ this.getMultiMeasureAttributeMappings() == null) return false; if (other.getMultiMeasureAttributeMappings() != null && other.getMultiMeasureAttributeMappings().equals(this.getMultiMeasureAttributeMappings()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getMeasureName() == null) ? 0 : getMeasureName().hashCode()); hashCode = prime * hashCode + ((getSourceColumn() == null) ? 0 : getSourceColumn().hashCode()); hashCode = prime * hashCode + ((getTargetMeasureName() == null) ? 0 : getTargetMeasureName().hashCode()); hashCode = prime * hashCode + ((getMeasureValueType() == null) ? 0 : getMeasureValueType().hashCode()); hashCode = prime * hashCode + ((getMultiMeasureAttributeMappings() == null) ? 0 : getMultiMeasureAttributeMappings().hashCode()); return hashCode; } @Override public MixedMeasureMapping clone() { try { return (MixedMeasureMapping) 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.timestreamquery.model.transform.MixedMeasureMappingMarshaller.getInstance().marshall(this, protocolMarshaller); } }