interface TargetConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Timestream.CfnScheduledQueryPropsMixin.TargetConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awstimestream#CfnScheduledQueryPropsMixin_TargetConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.timestream.CfnScheduledQueryPropsMixin.TargetConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_timestream.CfnScheduledQueryPropsMixin.TargetConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_timestream » CfnScheduledQueryPropsMixin » TargetConfigurationProperty |
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 { aws_timestream as timestream } from '@aws-cdk/cfn-property-mixins';
const targetConfigurationProperty: timestream.CfnScheduledQueryPropsMixin.TargetConfigurationProperty = {
timestreamConfiguration: {
databaseName: 'databaseName',
dimensionMappings: [{
dimensionValueType: 'dimensionValueType',
name: 'name',
}],
measureNameColumn: 'measureNameColumn',
mixedMeasureMappings: [{
measureName: 'measureName',
measureValueType: 'measureValueType',
multiMeasureAttributeMappings: [{
measureValueType: 'measureValueType',
sourceColumn: 'sourceColumn',
targetMultiMeasureAttributeName: 'targetMultiMeasureAttributeName',
}],
sourceColumn: 'sourceColumn',
targetMeasureName: 'targetMeasureName',
}],
multiMeasureMappings: {
multiMeasureAttributeMappings: [{
measureValueType: 'measureValueType',
sourceColumn: 'sourceColumn',
targetMultiMeasureAttributeName: 'targetMultiMeasureAttributeName',
}],
targetMultiMeasureName: 'targetMultiMeasureName',
},
tableName: 'tableName',
timeColumn: 'timeColumn',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| timestream | IResolvable | Timestream | Configuration needed to write data into the Timestream database and table. |
timestreamConfiguration?
Type:
IResolvable | Timestream
(optional)
Configuration needed to write data into the Timestream database and table.

.NET
Go
Java
Python
TypeScript