interface CfnQuerySuggestionsBlockListMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Kendra.CfnQuerySuggestionsBlockListMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awskendra#CfnQuerySuggestionsBlockListMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.kendra.CfnQuerySuggestionsBlockListMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_kendra.CfnQuerySuggestionsBlockListMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_kendra » CfnQuerySuggestionsBlockListMixinProps |
Properties for CfnQuerySuggestionsBlockListPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_kendra as kendra } from '@aws-cdk/cfn-property-mixins';
const cfnQuerySuggestionsBlockListMixinProps: kendra.CfnQuerySuggestionsBlockListMixinProps = {
description: 'description',
indexId: 'indexId',
name: 'name',
roleArn: 'roleArn',
sourceS3Path: {
bucket: 'bucket',
key: 'key',
},
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | A description for the block list. |
| index | string | The identifier of the index for the block list. |
| name? | string | The name of the block list. |
| role | string | The Amazon Resource Name (ARN) of an IAM role with permission to access the S3 bucket that contains the block list text file. |
| source | IResolvable | S3 | Information required to find a specific file in an Amazon S3 bucket. |
| tags? | Cfn[] | A list of key-value pairs that identify or categorize the block list. |
description?
Type:
string
(optional)
A description for the block list.
indexId?
Type:
string
(optional)
The identifier of the index for the block list.
name?
Type:
string
(optional)
The name of the block list.
roleArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of an IAM role with permission to access the S3 bucket that contains the block list text file.
sourceS3Path?
Type:
IResolvable | S3
(optional)
Information required to find a specific file in an Amazon S3 bucket.
tags?
Type:
Cfn[]
(optional)
A list of key-value pairs that identify or categorize the block list.

.NET
Go
Java
Python
TypeScript