interface KendraSourceDetailProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.IoTSiteWise.CfnDatasetPropsMixin.KendraSourceDetailProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsiotsitewise#CfnDatasetPropsMixin_KendraSourceDetailProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.iotsitewise.CfnDatasetPropsMixin.KendraSourceDetailProperty |
Python | aws_cdk.cfn_property_mixins.aws_iotsitewise.CfnDatasetPropsMixin.KendraSourceDetailProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_iotsitewise » CfnDatasetPropsMixin » KendraSourceDetailProperty |
The source details for the Kendra dataset source.
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 kendraSourceDetailProperty: iotsitewise.CfnDatasetPropsMixin.KendraSourceDetailProperty = {
knowledgeBaseArn: 'knowledgeBaseArn',
roleArn: 'roleArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| knowledge | string | The knowledgeBaseArn details for the Kendra dataset source. |
| role | string | The roleARN details for the Kendra dataset source. |
knowledgeBaseArn?
Type:
string
(optional)
The knowledgeBaseArn details for the Kendra dataset source.
roleArn?
Type:
string
(optional)
The roleARN details for the Kendra dataset source.

.NET
Go
Java
Python
TypeScript