Interface CfnThesaurusMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnThesaurusMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.139.0 (build 26a6b54)",
date="2026-09-02T11:03:29.006Z")
@Stability(Stable)
public interface CfnThesaurusMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnThesaurusPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.kendra.*;
CfnThesaurusMixinProps cfnThesaurusMixinProps = CfnThesaurusMixinProps.builder()
.description("description")
.indexId("indexId")
.name("name")
.roleArn("roleArn")
.sourceS3Path(S3PathProperty.builder()
.bucket("bucket")
.key("key")
.build())
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnThesaurusMixinPropsstatic final classAn implementation forCfnThesaurusMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringA description for the thesaurus.default StringThe identifier of the index for the thesaurus.default StringgetName()A name for the thesaurus.default StringAn IAM role that gives Amazon Kendra permissions to access the thesaurus file specified in SourceS3Path.default ObjectInformation required to find a specific file in an Amazon S3 bucket.getTags()A list of key-value pairs that identify or categorize the thesaurus.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDescription
A description for the thesaurus.- See Also:
-
getIndexId
The identifier of the index for the thesaurus.- See Also:
-
getName
A name for the thesaurus.- See Also:
-
getRoleArn
An IAM role that gives Amazon Kendra permissions to access the thesaurus file specified in SourceS3Path.- See Also:
-
getSourceS3Path
Information required to find a specific file in an Amazon S3 bucket.Returns union: either
IResolvableorCfnThesaurusPropsMixin.S3PathProperty- See Also:
-
getTags
A list of key-value pairs that identify or categorize the thesaurus.- See Also:
-
builder
- Returns:
- a
CfnThesaurusMixinProps.BuilderofCfnThesaurusMixinProps
-