Interface CfnQuerySuggestionsBlockListMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnQuerySuggestionsBlockListMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.139.0 (build 26a6b54)",
date="2026-09-02T11:03:29.005Z")
@Stability(Stable)
public interface CfnQuerySuggestionsBlockListMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnQuerySuggestionsBlockListPropsMixin.
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.*;
CfnQuerySuggestionsBlockListMixinProps cfnQuerySuggestionsBlockListMixinProps = CfnQuerySuggestionsBlockListMixinProps.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 forCfnQuerySuggestionsBlockListMixinPropsstatic final classAn implementation forCfnQuerySuggestionsBlockListMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringA description for the block list.default StringThe identifier of the index for the block list.default StringgetName()The name of the block list.default StringThe Amazon Resource Name (ARN) of an IAM role with permission to access the S3 bucket that contains the block list text file.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 block list.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDescription
A description for the block list.- See Also:
-
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
IResolvableorCfnQuerySuggestionsBlockListPropsMixin.S3PathProperty- See Also:
-
getTags
A list of key-value pairs that identify or categorize the block list.- See Also:
-
builder
-