Interface CfnScheduledQueryPropsMixin.TargetConfigurationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnScheduledQueryPropsMixin.TargetConfigurationProperty.Jsii$Proxy
Enclosing class:
CfnScheduledQueryPropsMixin

@Stability(Stable) public static interface CfnScheduledQueryPropsMixin.TargetConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Configuration used for writing the output of a query.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.cfnpropertymixins.services.timestream.*;
 TargetConfigurationProperty targetConfigurationProperty = TargetConfigurationProperty.builder()
         .timestreamConfiguration(TimestreamConfigurationProperty.builder()
                 .databaseName("databaseName")
                 .dimensionMappings(List.of(DimensionMappingProperty.builder()
                         .dimensionValueType("dimensionValueType")
                         .name("name")
                         .build()))
                 .measureNameColumn("measureNameColumn")
                 .mixedMeasureMappings(List.of(MixedMeasureMappingProperty.builder()
                         .measureName("measureName")
                         .measureValueType("measureValueType")
                         .multiMeasureAttributeMappings(List.of(MultiMeasureAttributeMappingProperty.builder()
                                 .measureValueType("measureValueType")
                                 .sourceColumn("sourceColumn")
                                 .targetMultiMeasureAttributeName("targetMultiMeasureAttributeName")
                                 .build()))
                         .sourceColumn("sourceColumn")
                         .targetMeasureName("targetMeasureName")
                         .build()))
                 .multiMeasureMappings(MultiMeasureMappingsProperty.builder()
                         .multiMeasureAttributeMappings(List.of(MultiMeasureAttributeMappingProperty.builder()
                                 .measureValueType("measureValueType")
                                 .sourceColumn("sourceColumn")
                                 .targetMultiMeasureAttributeName("targetMultiMeasureAttributeName")
                                 .build()))
                         .targetMultiMeasureName("targetMultiMeasureName")
                         .build())
                 .tableName("tableName")
                 .timeColumn("timeColumn")
                 .build())
         .build();
 

See Also: