/* * 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; /** *
* Only one of MixedMeasureMappings or MultiMeasureMappings is to be provided. MultiMeasureMappings can be used to * ingest data as multi measures in the derived table. *
* * @see AWS API Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class MultiMeasureMappings implements Serializable, Cloneable, StructuredPojo { /** ** The name of the target multi-measure name in the derived table. This input is required when measureNameColumn is * not provided. If MeasureNameColumn is provided, then value from that column will be used as multi-measure name. *
*/ private String targetMultiMeasureName; /** ** Required. Attribute mappings to be used for mapping query results to ingest data for multi-measure attributes. *
*/ private java.util.List* The name of the target multi-measure name in the derived table. This input is required when measureNameColumn is * not provided. If MeasureNameColumn is provided, then value from that column will be used as multi-measure name. *
* * @param targetMultiMeasureName * The name of the target multi-measure name in the derived table. This input is required when * measureNameColumn is not provided. If MeasureNameColumn is provided, then value from that column will be * used as multi-measure name. */ public void setTargetMultiMeasureName(String targetMultiMeasureName) { this.targetMultiMeasureName = targetMultiMeasureName; } /** ** The name of the target multi-measure name in the derived table. This input is required when measureNameColumn is * not provided. If MeasureNameColumn is provided, then value from that column will be used as multi-measure name. *
* * @return The name of the target multi-measure name in the derived table. This input is required when * measureNameColumn is not provided. If MeasureNameColumn is provided, then value from that column will be * used as multi-measure name. */ public String getTargetMultiMeasureName() { return this.targetMultiMeasureName; } /** ** The name of the target multi-measure name in the derived table. This input is required when measureNameColumn is * not provided. If MeasureNameColumn is provided, then value from that column will be used as multi-measure name. *
* * @param targetMultiMeasureName * The name of the target multi-measure name in the derived table. This input is required when * measureNameColumn is not provided. If MeasureNameColumn is provided, then value from that column will be * used as multi-measure name. * @return Returns a reference to this object so that method calls can be chained together. */ public MultiMeasureMappings withTargetMultiMeasureName(String targetMultiMeasureName) { setTargetMultiMeasureName(targetMultiMeasureName); return this; } /** ** Required. Attribute mappings to be used for mapping query results to ingest data for multi-measure attributes. *
* * @return Required. Attribute mappings to be used for mapping query results to ingest data for multi-measure * attributes. */ public java.util.List* Required. Attribute mappings to be used for mapping query results to ingest data for multi-measure attributes. *
* * @param multiMeasureAttributeMappings * Required. Attribute mappings to be used for mapping query results to ingest data for multi-measure * attributes. */ public void setMultiMeasureAttributeMappings(java.util.Collection* Required. Attribute mappings to be used for mapping query results to ingest data for multi-measure attributes. *
** 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. Attribute mappings to be used for mapping query results to ingest data for multi-measure * attributes. * @return Returns a reference to this object so that method calls can be chained together. */ public MultiMeasureMappings withMultiMeasureAttributeMappings(MultiMeasureAttributeMapping... multiMeasureAttributeMappings) { if (this.multiMeasureAttributeMappings == null) { setMultiMeasureAttributeMappings(new java.util.ArrayList* Required. Attribute mappings to be used for mapping query results to ingest data for multi-measure attributes. *
* * @param multiMeasureAttributeMappings * Required. Attribute mappings to be used for mapping query results to ingest data for multi-measure * attributes. * @return Returns a reference to this object so that method calls can be chained together. */ public MultiMeasureMappings withMultiMeasureAttributeMappings(java.util.Collection