interface DatasetSourceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoTSiteWise.Mixins.CfnDatasetPropsMixin.DatasetSourceProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiotsitewise/mixins#CfnDatasetPropsMixin_DatasetSourceProperty |
Java | software.amazon.awscdk.mixins.preview.services.iotsitewise.mixins.CfnDatasetPropsMixin.DatasetSourceProperty |
Python | aws_cdk.mixins_preview.aws_iotsitewise.mixins.CfnDatasetPropsMixin.DatasetSourceProperty |
TypeScript | @aws-cdk/mixins-preview » aws_iotsitewise » mixins » 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 { mixins as iotsitewise_mixins } from '@aws-cdk/mixins-preview/aws-iotsitewise';
const datasetSourceProperty: iotsitewise_mixins.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