QuerySuggestionsBlockList

class QuerySuggestionsBlockList : KotlinCustomResource

Use the aws_kendra_index_block_list resource to manage an AWS Kendra block list used for query suggestions for an index.

Example Usage

Basic Usage

package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.kendra.QuerySuggestionsBlockList;
import com.pulumi.aws.kendra.QuerySuggestionsBlockListArgs;
import com.pulumi.aws.kendra.inputs.QuerySuggestionsBlockListSourceS3PathArgs;
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 QuerySuggestionsBlockList("example", QuerySuggestionsBlockListArgs.builder()
.indexId(aws_kendra_index.example().id())
.roleArn(aws_iam_role.example().arn())
.sourceS3Path(QuerySuggestionsBlockListSourceS3PathArgs.builder()
.bucket(aws_s3_bucket.example().id())
.key("example/suggestions.txt")
.build())
.tags(Map.of("Name", "Example Kendra Index"))
.build());
}
}

Import

Using pulumi import, import the aws_kendra_query_suggestions_block_list resource using the unique identifiers of the block list and index separated by a slash (/). For example:

$ pulumi import aws:kendra/querySuggestionsBlockList:QuerySuggestionsBlockList example blocklist-123456780/idx-8012925589

Properties

Link copied to clipboard
val arn: Output<String>

ARN of the block list.

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

Description for a block list.

Link copied to clipboard
val id: Output<String>
Link copied to clipboard
val indexId: Output<String>

Identifier of the index for a block list.

Link copied to clipboard
val name: Output<String>

Name for the block list.

Link copied to clipboard
val pulumiChildResources: Set<KotlinResource>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard

Unique identifier of the block list.

Link copied to clipboard
val roleArn: Output<String>

IAM (Identity and Access Management) role used to access the block list text file in S3.

Link copied to clipboard

S3 path where your block list text file is located. See details below. The source_s3_path configuration block supports the following arguments:

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

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

Link copied to clipboard
val tagsAll: Output<Map<String, String>>

Map of tags assigned to the resource, including those inherited from the provider's default_tags configuration block.

Link copied to clipboard
val urn: Output<String>