Class CfnDataset.SourceDetailProperty
The details of the dataset source associated with the dataset.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.IoTSiteWise
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnDataset.SourceDetailProperty : CfnDataset.ISourceDetailProperty
Syntax (vb)
Public Class CfnDataset.SourceDetailProperty Implements CfnDataset.ISourceDetailProperty
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 sourceDetailProperty = new SourceDetailProperty {
Kendra = new KendraSourceDetailProperty {
KnowledgeBaseArn = "knowledgeBaseArn",
RoleArn = "roleArn"
}
};
Synopsis
Constructors
| SourceDetailProperty() | The details of the dataset source associated with the dataset. |
Properties
| Kendra | Contains details about the Kendra dataset source. |
Constructors
SourceDetailProperty()
The details of the dataset source associated with the dataset.
public SourceDetailProperty()
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 sourceDetailProperty = new SourceDetailProperty {
Kendra = new KendraSourceDetailProperty {
KnowledgeBaseArn = "knowledgeBaseArn",
RoleArn = "roleArn"
}
};
Properties
Kendra
Contains details about the Kendra dataset source.
public object? Kendra { get; set; }