interface TargetConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Timestream.Mixins.CfnScheduledQueryPropsMixin.TargetConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awstimestream/mixins#CfnScheduledQueryPropsMixin_TargetConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.timestream.mixins.CfnScheduledQueryPropsMixin.TargetConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_timestream.mixins.CfnScheduledQueryPropsMixin.TargetConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_timestream » mixins » 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 { mixins as timestream_mixins } from '@aws-cdk/mixins-preview/aws-timestream';
const targetConfigurationProperty: timestream_mixins.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