FaqReference
- class aws_cdk.aws_kendra.FaqReference(*, faq_arn, faq_id, index_id)
Bases:
object
A reference to a Faq resource.
- Parameters:
faq_arn (
str
) – The ARN of the Faq resource.faq_id (
str
) – The Id of the Faq resource.index_id (
str
) – The IndexId of the Faq resource.
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_kendra as kendra faq_reference = kendra.FaqReference( faq_arn="faqArn", faq_id="faqId", index_id="indexId" )
Attributes
- faq_arn
The ARN of the Faq resource.
- faq_id
The Id of the Faq resource.
- index_id
The IndexId of the Faq resource.