Class CfnDataset.DatasetSourceProperty
The data source for the dataset.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.IoTSiteWise
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnDataset.DatasetSourceProperty : CfnDataset.IDatasetSourceProperty
Syntax (vb)
Public Class CfnDataset.DatasetSourceProperty Implements CfnDataset.IDatasetSourceProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.IoTSiteWise;
var datasetSourceProperty = new DatasetSourceProperty {
SourceFormat = "sourceFormat",
SourceType = "sourceType",
// the properties below are optional
SourceDetail = new SourceDetailProperty {
Kendra = new KendraSourceDetailProperty {
KnowledgeBaseArn = "knowledgeBaseArn",
RoleArn = "roleArn"
}
}
};
Synopsis
Constructors
| DatasetSourceProperty() | The data source for the dataset. |
Properties
| SourceDetail | The details of the dataset source associated with the dataset. |
| SourceFormat | The format of the dataset source associated with the dataset. |
| SourceType | The type of data source for the dataset. |
Constructors
DatasetSourceProperty()
The data source for the dataset.
public DatasetSourceProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.IoTSiteWise;
var datasetSourceProperty = new DatasetSourceProperty {
SourceFormat = "sourceFormat",
SourceType = "sourceType",
// the properties below are optional
SourceDetail = new SourceDetailProperty {
Kendra = new KendraSourceDetailProperty {
KnowledgeBaseArn = "knowledgeBaseArn",
RoleArn = "roleArn"
}
}
};
Properties
SourceDetail
The details of the dataset source associated with the dataset.
public object? SourceDetail { get; set; }
Property Value
Remarks
SourceFormat
The format of the dataset source associated with the dataset.
public string SourceFormat { get; set; }
Property Value
Remarks
SourceType
The type of data source for the dataset.
public string SourceType { get; set; }