CfnThesaurusMixinProps
- class aws_cdk.cfn_property_mixins.aws_kendra.CfnThesaurusMixinProps(*, description=None, index_id=None, name=None, role_arn=None, source_s3_path=None, tags=None)
Bases:
objectProperties for CfnThesaurusPropsMixin.
- Parameters:
description (
Optional[str]) – A description for the thesaurus.index_id (
Optional[str]) – The identifier of the index for the thesaurus.name (
Optional[str]) – A name for the thesaurus.role_arn (
Optional[str]) – An IAM role that gives Amazon Kendra permissions to access the thesaurus file specified in SourceS3Path.source_s3_path (
Union[IResolvable,S3PathProperty,Dict[str,Any],None]) – Information required to find a specific file in an Amazon S3 bucket.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – A list of key-value pairs that identify or categorize the thesaurus.
- See:
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kendra-thesaurus.html
- ExampleMetadata:
fixture=_generated
Example:
from aws_cdk import CfnTag # The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.cfn_property_mixins import aws_kendra as kendra cfn_thesaurus_mixin_props = kendra.CfnThesaurusMixinProps( description="description", index_id="indexId", name="name", role_arn="roleArn", source_s3_path=kendra.CfnThesaurusPropsMixin.S3PathProperty( bucket="bucket", key="key" ), tags=[CfnTag( key="key", value="value" )] )
Attributes
- description
A description for the thesaurus.
- index_id
The identifier of the index for the thesaurus.
- name
A name for the thesaurus.
- role_arn
An IAM role that gives Amazon Kendra permissions to access the thesaurus file specified in SourceS3Path.
- source_s3_path
Information required to find a specific file in an Amazon S3 bucket.
- tags
A list of key-value pairs that identify or categorize the thesaurus.