Interface CfnQuerySuggestionsBlockListProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnQuerySuggestionsBlockListProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.139.0 (build 26a6b54)",
date="2026-09-02T11:03:12.361Z")
@Stability(Stable)
public interface CfnQuerySuggestionsBlockListProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnQuerySuggestionsBlockList.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.kendra.*;
CfnQuerySuggestionsBlockListProps cfnQuerySuggestionsBlockListProps = CfnQuerySuggestionsBlockListProps.builder()
.indexId("indexId")
.name("name")
.roleArn("roleArn")
.sourceS3Path(S3PathProperty.builder()
.bucket("bucket")
.key("key")
.build())
// the properties below are optional
.description("description")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnQuerySuggestionsBlockListPropsstatic final classAn implementation forCfnQuerySuggestionsBlockListProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringA description for the block list.The identifier of the index for the block list.getName()The name of the block list.The Amazon Resource Name (ARN) of an IAM role with permission to access the S3 bucket that contains the block list text file.Information required to find a specific file in an Amazon S3 bucket.getTags()A list of key-value pairs that identify or categorize the block list.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getIndexId
The identifier of the index for the block list.- See Also:
-
getName
The name of the block list.- See Also:
-
getRoleArn
The Amazon Resource Name (ARN) of an IAM role with permission to access the S3 bucket that contains the block list text file.- See Also:
-
getSourceS3Path
Information required to find a specific file in an Amazon S3 bucket.Returns union: either
IResolvableorCfnQuerySuggestionsBlockList.S3PathProperty- See Also:
-
getDescription
A description for the block list.- See Also:
-
getTags
A list of key-value pairs that identify or categorize the block list.- See Also:
-
builder
-