ThesaurusArgs

data class ThesaurusArgs(val description: Output<String>? = null, val indexId: Output<String>? = null, val name: Output<String>? = null, val roleArn: Output<String>? = null, val sourceS3Path: Output<ThesaurusSourceS3PathArgs>? = null, val tags: Output<Map<String, String>>? = null) : ConvertibleToJava<ThesaurusArgs>

Resource for managing an AWS Kendra Thesaurus.

Example Usage

package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.kendra.Thesaurus;
import com.pulumi.aws.kendra.ThesaurusArgs;
import com.pulumi.aws.kendra.inputs.ThesaurusSourceS3PathArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var example = new Thesaurus("example", ThesaurusArgs.builder()
.indexId(aws_kendra_index.example().id())
.roleArn(aws_iam_role.example().arn())
.sourceS3Path(ThesaurusSourceS3PathArgs.builder()
.bucket(aws_s3_bucket.example().id())
.key(aws_s3_object.example().key())
.build())
.tags(Map.of("Name", "Example Kendra Thesaurus"))
.build());
}
}

Import

aws_kendra_thesaurus can be imported using the unique identifiers of the thesaurus and index separated by a slash (/), e.g.,

$ pulumi import aws:kendra/thesaurus:Thesaurus example thesaurus-123456780/idx-8012925589

Constructors

Link copied to clipboard
constructor(description: Output<String>? = null, indexId: Output<String>? = null, name: Output<String>? = null, roleArn: Output<String>? = null, sourceS3Path: Output<ThesaurusSourceS3PathArgs>? = null, tags: Output<Map<String, String>>? = null)

Properties

Link copied to clipboard
val description: Output<String>? = null

The description for a thesaurus.

Link copied to clipboard
val indexId: Output<String>? = null

The identifier of the index for a thesaurus.

Link copied to clipboard
val name: Output<String>? = null

The name for the thesaurus.

Link copied to clipboard
val roleArn: Output<String>? = null

The IAM (Identity and Access Management) role used to access the thesaurus file in S3.

Link copied to clipboard

The S3 path where your thesaurus file sits in S3. Detailed below. The source_s3_path configuration block supports the following arguments:

Link copied to clipboard
val tags: Output<Map<String, String>>? = null

Key-value map of resource tags. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

Functions

Link copied to clipboard
open override fun toJava(): ThesaurusArgs