/* * 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* 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* 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* 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* 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