interface DatasetSourceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.IoTSiteWise.CfnDatasetPropsMixin.DatasetSourceProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsiotsitewise#CfnDatasetPropsMixin_DatasetSourceProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.iotsitewise.CfnDatasetPropsMixin.DatasetSourceProperty |
Python | aws_cdk.cfn_property_mixins.aws_iotsitewise.CfnDatasetPropsMixin.DatasetSourceProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_iotsitewise » CfnDatasetPropsMixin » DatasetSourceProperty |
The data source for the dataset.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_iotsitewise as iotsitewise } from '@aws-cdk/cfn-property-mixins';
const datasetSourceProperty: iotsitewise.CfnDatasetPropsMixin.DatasetSourceProperty = {
sourceDetail: {
kendra: {
knowledgeBaseArn: 'knowledgeBaseArn',
roleArn: 'roleArn',
},
},
sourceFormat: 'sourceFormat',
sourceType: 'sourceType',
};
Properties
| Name | Type | Description |
|---|---|---|
| source | IResolvable | Source | The details of the dataset source associated with the dataset. |
| source | string | The format of the dataset source associated with the dataset. |
| source | string | The type of data source for the dataset. |
sourceDetail?
Type:
IResolvable | Source
(optional)
The details of the dataset source associated with the dataset.
sourceFormat?
Type:
string
(optional)
The format of the dataset source associated with the dataset.
sourceType?
Type:
string
(optional)
The type of data source for the dataset.

.NET
Go
Java
Python
TypeScript