interface FaqReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Kendra.FaqReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awskendra#FaqReference |
Java | software.amazon.awscdk.interfaces.kendra.FaqReference |
Python | aws_cdk.interfaces.aws_kendra.FaqReference |
TypeScript | aws-cdk-lib » interfaces » aws_kendra » FaqReference |
A reference to a Faq resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_kendra as interfaces_aws_kendra } from 'aws-cdk-lib/interfaces';
const faqReference: interfaces_aws_kendra.FaqReference = {
faqArn: 'faqArn',
faqId: 'faqId',
indexId: 'indexId',
};
Properties
| Name | Type | Description |
|---|---|---|
| faq | string | The ARN of the Faq resource. |
| faq | string | The Id of the Faq resource. |
| index | string | The IndexId of the Faq resource. |
faqArn
Type:
string
The ARN of the Faq resource.
faqId
Type:
string
The Id of the Faq resource.
indexId
Type:
string
The IndexId of the Faq resource.

.NET
Go
Java
Python
TypeScript