Interface CfnScheduledQuery.DimensionMappingProperty
- All Superinterfaces:
 software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
 CfnScheduledQuery.DimensionMappingProperty.Jsii$Proxy
- Enclosing class:
 CfnScheduledQuery
@Stability(Stable)
public static interface CfnScheduledQuery.DimensionMappingProperty
extends software.amazon.jsii.JsiiSerializable
This type is used to map column(s) from the query result to a dimension in the destination table.
 
Example:
 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.timestream.*;
 DimensionMappingProperty dimensionMappingProperty = DimensionMappingProperty.builder()
         .dimensionValueType("dimensionValueType")
         .name("name")
         .build();
 
 - See Also:
 
- 
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnScheduledQuery.DimensionMappingPropertystatic final classAn implementation forCfnScheduledQuery.DimensionMappingProperty - 
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson 
- 
Method Details
- 
getDimensionValueType
Type for the dimension: VARCHAR.- See Also:
 
 - 
getName
Column name from query result.- See Also:
 
 - 
builder
 
 -