AWSKendraFrontendService

2020/05/11 - AWSKendraFrontendService - 4 new 11 updated api methods

Changes  Amazon Kendra is now generally available. As part of general availability, we are launching * Developer edition * Ability to scale your Amazon Kendra index with capacity units * Support for new connectors * Support for new tagging API's * Support for Deleting data source * Metrics for data source sync operations * Metrics for query & storage utilization

ListTagsForResource (new) Link ¶

Gets a list of tags associated with a specified resource. Indexes, FAQs, and data sources can have tags associated with them.

See also: AWS API Documentation

Request Syntax

client.list_tags_for_resource(
    ResourceARN='string'
)
type ResourceARN

string

param ResourceARN

[REQUIRED]

The Amazon Resource Name (ARN) of the index, FAQ, or data source to get a list of tags for.

rtype

dict

returns

Response Syntax

{
    'Tags': [
        {
            'Key': 'string',
            'Value': 'string'
        },
    ]
}

Response Structure

  • (dict) --

    • Tags (list) --

      A list of tags associated with the index, FAQ, or data source.

      • (dict) --

        A list of key/value pairs that identify an index, FAQ, or data source. Tag keys and values can consist of Unicode letters, digits, white space, and any of the following symbols: _ . : / = + - @.

        • Key (string) --

          The key for the tag. Keys are not case sensitive and must be unique for the index, FAQ, or data source.

        • Value (string) --

          The value associated with the tag. The value may be an empty string but it can't be null.

DeleteDataSource (new) Link ¶

Deletes an Amazon Kendra data source. An exception is not thrown if the data source is already being deleted. While the data source is being deleted, the Status field returned by a call to the operation is set to DELETING . For more information, see Deleting Data Sources.

See also: AWS API Documentation

Request Syntax

client.delete_data_source(
    Id='string',
    IndexId='string'
)
type Id

string

param Id

[REQUIRED]

The unique identifier of the data source to delete.

type IndexId

string

param IndexId

[REQUIRED]

The unique identifier of the index associated with the data source.

returns

None

UntagResource (new) Link ¶

Removes a tag from an index, FAQ, or a data source.

See also: AWS API Documentation

Request Syntax

client.untag_resource(
    ResourceARN='string',
    TagKeys=[
        'string',
    ]
)
type ResourceARN

string

param ResourceARN

[REQUIRED]

The Amazon Resource Name (ARN) of the index, FAQ, or data source to remove the tag from.

type TagKeys

list

param TagKeys

[REQUIRED]

A list of tag keys to remove from the index, FAQ, or data source. If a tag key does not exist on the resource, it is ignored.

  • (string) --

rtype

dict

returns

Response Syntax

{}

Response Structure

  • (dict) --

TagResource (new) Link ¶

Adds the specified tag to the specified index, FAQ, or data source resource. If the tag already exists, the existing value is replaced with the new value.

See also: AWS API Documentation

Request Syntax

client.tag_resource(
    ResourceARN='string',
    Tags=[
        {
            'Key': 'string',
            'Value': 'string'
        },
    ]
)
type ResourceARN

string

param ResourceARN

[REQUIRED]

The Amazon Resource Name (ARN) of the index, FAQ, or data source to tag.

type Tags

list

param Tags

[REQUIRED]

A list of tag keys to add to the index, FAQ, or data source. If a tag already exists, the existing value is replaced with the new value.

  • (dict) --

    A list of key/value pairs that identify an index, FAQ, or data source. Tag keys and values can consist of Unicode letters, digits, white space, and any of the following symbols: _ . : / = + - @.

    • Key (string) -- [REQUIRED]

      The key for the tag. Keys are not case sensitive and must be unique for the index, FAQ, or data source.

    • Value (string) -- [REQUIRED]

      The value associated with the tag. The value may be an empty string but it can't be null.

rtype

dict

returns

Response Syntax

{}

Response Structure

  • (dict) --

BatchDeleteDocument (updated) Link ¶
Changes (request)
{'DataSourceSyncJobMetricTarget': {'DataSourceId': 'string',
                                   'DataSourceSyncJobId': 'string'}}

Removes one or more documents from an index. The documents must have been added with the BatchPutDocument operation.

The documents are deleted asynchronously. You can see the progress of the deletion by using AWS CloudWatch. Any error messages releated to the processing of the batch are sent to you CloudWatch log.

See also: AWS API Documentation

Request Syntax

client.batch_delete_document(
    IndexId='string',
    DocumentIdList=[
        'string',
    ],
    DataSourceSyncJobMetricTarget={
        'DataSourceId': 'string',
        'DataSourceSyncJobId': 'string'
    }
)
type IndexId

string

param IndexId

[REQUIRED]

The identifier of the index that contains the documents to delete.

type DocumentIdList

list

param DocumentIdList

[REQUIRED]

One or more identifiers for documents to delete from the index.

  • (string) --

type DataSourceSyncJobMetricTarget

dict

param DataSourceSyncJobMetricTarget

Maps a particular data source sync job to a particular data source.

  • DataSourceId (string) -- [REQUIRED]

    The ID of the data source that is running the sync job.

  • DataSourceSyncJobId (string) -- [REQUIRED]

    The ID of the sync job that is running on the data source.

rtype

dict

returns

Response Syntax

{
    'FailedDocuments': [
        {
            'Id': 'string',
            'ErrorCode': 'InternalError'|'InvalidRequest',
            'ErrorMessage': 'string'
        },
    ]
}

Response Structure

  • (dict) --

    • FailedDocuments (list) --

      A list of documents that could not be removed from the index. Each entry contains an error message that indicates why the document couldn't be removed from the index.

      • (dict) --

        Provides information about documents that could not be removed from an index by the BatchDeleteDocument operation.

        • Id (string) --

          The identifier of the document that couldn't be removed from the index.

        • ErrorCode (string) --

          The error code for why the document couldn't be removed from the index.

        • ErrorMessage (string) --

          An explanation for why the document couldn't be removed from the index.

CreateDataSource (updated) Link ¶
Changes (request)
{'Configuration': {'OneDriveConfiguration': {'ExclusionPatterns': ['string'],
                                             'FieldMappings': [{'DataSourceFieldName': 'string',
                                                                'DateFieldFormat': 'string',
                                                                'IndexFieldName': 'string'}],
                                             'InclusionPatterns': ['string'],
                                             'OneDriveUsers': {'OneDriveUserList': ['string'],
                                                               'OneDriveUserS3Path': {'Bucket': 'string',
                                                                                      'Key': 'string'}},
                                             'SecretArn': 'string',
                                             'TenantDomain': 'string'},
                   'SalesforceConfiguration': {'ChatterFeedConfiguration': {'DocumentDataFieldName': 'string',
                                                                            'DocumentTitleFieldName': 'string',
                                                                            'FieldMappings': [{'DataSourceFieldName': 'string',
                                                                                               'DateFieldFormat': 'string',
                                                                                               'IndexFieldName': 'string'}],
                                                                            'IncludeFilterTypes': ['ACTIVE_USER '
                                                                                                   '| '
                                                                                                   'STANDARD_USER']},
                                               'CrawlAttachments': 'boolean',
                                               'ExcludeAttachmentFilePatterns': ['string'],
                                               'IncludeAttachmentFilePatterns': ['string'],
                                               'KnowledgeArticleConfiguration': {'CustomKnowledgeArticleTypeConfigurations': [{'DocumentDataFieldName': 'string',
                                                                                                                               'DocumentTitleFieldName': 'string',
                                                                                                                               'FieldMappings': [{'DataSourceFieldName': 'string',
                                                                                                                                                  'DateFieldFormat': 'string',
                                                                                                                                                  'IndexFieldName': 'string'}],
                                                                                                                               'Name': 'string'}],
                                                                                 'IncludedStates': ['DRAFT '
                                                                                                    '| '
                                                                                                    'PUBLISHED '
                                                                                                    '| '
                                                                                                    'ARCHIVED'],
                                                                                 'StandardKnowledgeArticleTypeConfiguration': {'DocumentDataFieldName': 'string',
                                                                                                                               'DocumentTitleFieldName': 'string',
                                                                                                                               'FieldMappings': [{'DataSourceFieldName': 'string',
                                                                                                                                                  'DateFieldFormat': 'string',
                                                                                                                                                  'IndexFieldName': 'string'}]}},
                                               'SecretArn': 'string',
                                               'ServerUrl': 'string',
                                               'StandardObjectAttachmentConfiguration': {'DocumentTitleFieldName': 'string',
                                                                                         'FieldMappings': [{'DataSourceFieldName': 'string',
                                                                                                            'DateFieldFormat': 'string',
                                                                                                            'IndexFieldName': 'string'}]},
                                               'StandardObjectConfigurations': [{'DocumentDataFieldName': 'string',
                                                                                 'DocumentTitleFieldName': 'string',
                                                                                 'FieldMappings': [{'DataSourceFieldName': 'string',
                                                                                                    'DateFieldFormat': 'string',
                                                                                                    'IndexFieldName': 'string'}],
                                                                                 'Name': 'ACCOUNT '
                                                                                         '| '
                                                                                         'CAMPAIGN '
                                                                                         '| '
                                                                                         'CASE '
                                                                                         '| '
                                                                                         'CONTACT '
                                                                                         '| '
                                                                                         'CONTRACT '
                                                                                         '| '
                                                                                         'DOCUMENT '
                                                                                         '| '
                                                                                         'GROUP '
                                                                                         '| '
                                                                                         'IDEA '
                                                                                         '| '
                                                                                         'LEAD '
                                                                                         '| '
                                                                                         'OPPORTUNITY '
                                                                                         '| '
                                                                                         'PARTNER '
                                                                                         '| '
                                                                                         'PRICEBOOK '
                                                                                         '| '
                                                                                         'PRODUCT '
                                                                                         '| '
                                                                                         'PROFILE '
                                                                                         '| '
                                                                                         'SOLUTION '
                                                                                         '| '
                                                                                         'TASK '
                                                                                         '| '
                                                                                         'USER'}]},
                   'ServiceNowConfiguration': {'HostUrl': 'string',
                                               'KnowledgeArticleConfiguration': {'CrawlAttachments': 'boolean',
                                                                                 'DocumentDataFieldName': 'string',
                                                                                 'DocumentTitleFieldName': 'string',
                                                                                 'ExcludeAttachmentFilePatterns': ['string'],
                                                                                 'FieldMappings': [{'DataSourceFieldName': 'string',
                                                                                                    'DateFieldFormat': 'string',
                                                                                                    'IndexFieldName': 'string'}],
                                                                                 'IncludeAttachmentFilePatterns': ['string']},
                                               'SecretArn': 'string',
                                               'ServiceCatalogConfiguration': {'CrawlAttachments': 'boolean',
                                                                               'DocumentDataFieldName': 'string',
                                                                               'DocumentTitleFieldName': 'string',
                                                                               'ExcludeAttachmentFilePatterns': ['string'],
                                                                               'FieldMappings': [{'DataSourceFieldName': 'string',
                                                                                                  'DateFieldFormat': 'string',
                                                                                                  'IndexFieldName': 'string'}],
                                                                               'IncludeAttachmentFilePatterns': ['string']},
                                               'ServiceNowBuildVersion': 'LONDON '
                                                                         '| '
                                                                         'OTHERS'}},
 'Tags': [{'Key': 'string', 'Value': 'string'}],
 'Type': {'SERVICENOW', 'SALESFORCE', 'ONEDRIVE'}}

Creates a data source that you use to with an Amazon Kendra index.

You specify a name, connector type and description for your data source. You can choose between an S3 connector, a SharePoint Online connector, and a database connector.

You also specify configuration information such as document metadata (author, source URI, and so on) and user context information.

CreateDataSource is a synchronous operation. The operation returns 200 if the data source was successfully created. Otherwise, an exception is raised.

See also: AWS API Documentation

Request Syntax

client.create_data_source(
    Name='string',
    IndexId='string',
    Type='S3'|'SHAREPOINT'|'DATABASE'|'SALESFORCE'|'ONEDRIVE'|'SERVICENOW',
    Configuration={
        'S3Configuration': {
            'BucketName': 'string',
            'InclusionPrefixes': [
                'string',
            ],
            'ExclusionPatterns': [
                'string',
            ],
            'DocumentsMetadataConfiguration': {
                'S3Prefix': 'string'
            },
            'AccessControlListConfiguration': {
                'KeyPath': 'string'
            }
        },
        'SharePointConfiguration': {
            'SharePointVersion': 'SHAREPOINT_ONLINE',
            'Urls': [
                'string',
            ],
            'SecretArn': 'string',
            'CrawlAttachments': True|False,
            'UseChangeLog': True|False,
            'InclusionPatterns': [
                'string',
            ],
            'ExclusionPatterns': [
                'string',
            ],
            'VpcConfiguration': {
                'SubnetIds': [
                    'string',
                ],
                'SecurityGroupIds': [
                    'string',
                ]
            },
            'FieldMappings': [
                {
                    'DataSourceFieldName': 'string',
                    'DateFieldFormat': 'string',
                    'IndexFieldName': 'string'
                },
            ],
            'DocumentTitleFieldName': 'string'
        },
        'DatabaseConfiguration': {
            'DatabaseEngineType': 'RDS_AURORA_MYSQL'|'RDS_AURORA_POSTGRESQL'|'RDS_MYSQL'|'RDS_POSTGRESQL',
            'ConnectionConfiguration': {
                'DatabaseHost': 'string',
                'DatabasePort': 123,
                'DatabaseName': 'string',
                'TableName': 'string',
                'SecretArn': 'string'
            },
            'VpcConfiguration': {
                'SubnetIds': [
                    'string',
                ],
                'SecurityGroupIds': [
                    'string',
                ]
            },
            'ColumnConfiguration': {
                'DocumentIdColumnName': 'string',
                'DocumentDataColumnName': 'string',
                'DocumentTitleColumnName': 'string',
                'FieldMappings': [
                    {
                        'DataSourceFieldName': 'string',
                        'DateFieldFormat': 'string',
                        'IndexFieldName': 'string'
                    },
                ],
                'ChangeDetectingColumns': [
                    'string',
                ]
            },
            'AclConfiguration': {
                'AllowedGroupsColumnName': 'string'
            }
        },
        'SalesforceConfiguration': {
            'ServerUrl': 'string',
            'SecretArn': 'string',
            'StandardObjectConfigurations': [
                {
                    'Name': 'ACCOUNT'|'CAMPAIGN'|'CASE'|'CONTACT'|'CONTRACT'|'DOCUMENT'|'GROUP'|'IDEA'|'LEAD'|'OPPORTUNITY'|'PARTNER'|'PRICEBOOK'|'PRODUCT'|'PROFILE'|'SOLUTION'|'TASK'|'USER',
                    'DocumentDataFieldName': 'string',
                    'DocumentTitleFieldName': 'string',
                    'FieldMappings': [
                        {
                            'DataSourceFieldName': 'string',
                            'DateFieldFormat': 'string',
                            'IndexFieldName': 'string'
                        },
                    ]
                },
            ],
            'KnowledgeArticleConfiguration': {
                'IncludedStates': [
                    'DRAFT'|'PUBLISHED'|'ARCHIVED',
                ],
                'StandardKnowledgeArticleTypeConfiguration': {
                    'DocumentDataFieldName': 'string',
                    'DocumentTitleFieldName': 'string',
                    'FieldMappings': [
                        {
                            'DataSourceFieldName': 'string',
                            'DateFieldFormat': 'string',
                            'IndexFieldName': 'string'
                        },
                    ]
                },
                'CustomKnowledgeArticleTypeConfigurations': [
                    {
                        'Name': 'string',
                        'DocumentDataFieldName': 'string',
                        'DocumentTitleFieldName': 'string',
                        'FieldMappings': [
                            {
                                'DataSourceFieldName': 'string',
                                'DateFieldFormat': 'string',
                                'IndexFieldName': 'string'
                            },
                        ]
                    },
                ]
            },
            'ChatterFeedConfiguration': {
                'DocumentDataFieldName': 'string',
                'DocumentTitleFieldName': 'string',
                'FieldMappings': [
                    {
                        'DataSourceFieldName': 'string',
                        'DateFieldFormat': 'string',
                        'IndexFieldName': 'string'
                    },
                ],
                'IncludeFilterTypes': [
                    'ACTIVE_USER'|'STANDARD_USER',
                ]
            },
            'CrawlAttachments': True|False,
            'StandardObjectAttachmentConfiguration': {
                'DocumentTitleFieldName': 'string',
                'FieldMappings': [
                    {
                        'DataSourceFieldName': 'string',
                        'DateFieldFormat': 'string',
                        'IndexFieldName': 'string'
                    },
                ]
            },
            'IncludeAttachmentFilePatterns': [
                'string',
            ],
            'ExcludeAttachmentFilePatterns': [
                'string',
            ]
        },
        'OneDriveConfiguration': {
            'TenantDomain': 'string',
            'SecretArn': 'string',
            'OneDriveUsers': {
                'OneDriveUserList': [
                    'string',
                ],
                'OneDriveUserS3Path': {
                    'Bucket': 'string',
                    'Key': 'string'
                }
            },
            'InclusionPatterns': [
                'string',
            ],
            'ExclusionPatterns': [
                'string',
            ],
            'FieldMappings': [
                {
                    'DataSourceFieldName': 'string',
                    'DateFieldFormat': 'string',
                    'IndexFieldName': 'string'
                },
            ]
        },
        'ServiceNowConfiguration': {
            'HostUrl': 'string',
            'SecretArn': 'string',
            'ServiceNowBuildVersion': 'LONDON'|'OTHERS',
            'KnowledgeArticleConfiguration': {
                'CrawlAttachments': True|False,
                'IncludeAttachmentFilePatterns': [
                    'string',
                ],
                'ExcludeAttachmentFilePatterns': [
                    'string',
                ],
                'DocumentDataFieldName': 'string',
                'DocumentTitleFieldName': 'string',
                'FieldMappings': [
                    {
                        'DataSourceFieldName': 'string',
                        'DateFieldFormat': 'string',
                        'IndexFieldName': 'string'
                    },
                ]
            },
            'ServiceCatalogConfiguration': {
                'CrawlAttachments': True|False,
                'IncludeAttachmentFilePatterns': [
                    'string',
                ],
                'ExcludeAttachmentFilePatterns': [
                    'string',
                ],
                'DocumentDataFieldName': 'string',
                'DocumentTitleFieldName': 'string',
                'FieldMappings': [
                    {
                        'DataSourceFieldName': 'string',
                        'DateFieldFormat': 'string',
                        'IndexFieldName': 'string'
                    },
                ]
            }
        }
    },
    Description='string',
    Schedule='string',
    RoleArn='string',
    Tags=[
        {
            'Key': 'string',
            'Value': 'string'
        },
    ]
)
type Name

string

param Name

[REQUIRED]

A unique name for the data source. A data source name can't be changed without deleting and recreating the data source.

type IndexId

string

param IndexId

[REQUIRED]

The identifier of the index that should be associated with this data source.

type Type

string

param Type

[REQUIRED]

The type of repository that contains the data source.

type Configuration

dict

param Configuration

[REQUIRED]

The connector configuration information that is required to access the repository.

  • S3Configuration (dict) --

    Provides information to create a connector for a document repository in an Amazon S3 bucket.

    • BucketName (string) -- [REQUIRED]

      The name of the bucket that contains the documents.

    • InclusionPrefixes (list) --

      A list of S3 prefixes for the documents that should be included in the index.

      • (string) --

    • ExclusionPatterns (list) --

      A list of glob patterns for documents that should not be indexed. If a document that matches an inclusion prefix also matches an exclusion pattern, the document is not indexed.

      For more information about glob patterns, see glob (programming) in Wikipedia .

      • (string) --

    • DocumentsMetadataConfiguration (dict) --

      Document metadata files that contain information such as the document access control information, source URI, document author, and custom attributes. Each metadata file contains metadata about a single document.

      • S3Prefix (string) --

        A prefix used to filter metadata configuration files in the AWS S3 bucket. The S3 bucket might contain multiple metadata files. Use S3Prefix to include only the desired metadata files.

    • AccessControlListConfiguration (dict) --

      Provides the path to the S3 bucket that contains the user context filtering files for the data source.

      • KeyPath (string) --

        Path to the AWS S3 bucket that contains the ACL files.

  • SharePointConfiguration (dict) --

    Provides information necessary to create a connector for a Microsoft SharePoint site.

    • SharePointVersion (string) -- [REQUIRED]

      The version of Microsoft SharePoint that you are using as a data source.

    • Urls (list) -- [REQUIRED]

      The URLs of the Microsoft SharePoint site that contains the documents that should be indexed.

      • (string) --

    • SecretArn (string) -- [REQUIRED]

      The Amazon Resource Name (ARN) of credentials stored in AWS Secrets Manager. The credentials should be a user/password pair. For more information, see Using a Microsoft SharePoint Data Source. For more information about AWS Secrets Manager, see What Is AWS Secrets Manager in the AWS Secrets Manager user guide.

    • CrawlAttachments (boolean) --

      TRUE to include attachments to documents stored in your Microsoft SharePoint site in the index; otherwise, FALSE .

    • UseChangeLog (boolean) --

      Set to TRUE to use the Microsoft SharePoint change log to determine the documents that need to be updated in the index. Depending on the size of the SharePoint change log, it may take longer for Amazon Kendra to use the change log than it takes it to determine the changed documents using the Amazon Kendra document crawler.

    • InclusionPatterns (list) --

      A list of regular expression patterns. Documents that match the patterns are included in the index. Documents that don't match the patterns are excluded from the index. If a document matches both an inclusion pattern and an exclusion pattern, the document is not included in the index.

      The regex is applied to the display URL of the SharePoint document.

      • (string) --

    • ExclusionPatterns (list) --

      A list of regulary expression patterns. Documents that match the patterns are excluded from the index. Documents that don't match the patterns are included in the index. If a document matches both an exclusion pattern and an inclusion pattern, the document is not included in the index.

      The regex is applied to the display URL of the SharePoint document.

      • (string) --

    • VpcConfiguration (dict) --

      Provides information for connecting to an Amazon VPC.

      • SubnetIds (list) -- [REQUIRED]

        A list of identifiers for subnets within your Amazon VPC. The subnets should be able to connect to each other in the VPC, and they should have outgoing access to the Internet through a NAT device.

        • (string) --

      • SecurityGroupIds (list) -- [REQUIRED]

        A list of identifiers of security groups within your Amazon VPC. The security groups should enable Amazon Kendra to connect to the data source.

        • (string) --

    • FieldMappings (list) --

      A list of DataSourceToIndexFieldMapping objects that map Microsoft SharePoint attributes to custom fields in the Amazon Kendra index. You must first create the index fields using the operation before you map SharePoint attributes. For more information, see Mapping Data Source Fields.

      • (dict) --

        Maps a column or attribute in the data source to an index field. You must first create the fields in the index using the UpdateIndex operation.

        • DataSourceFieldName (string) -- [REQUIRED]

          The name of the column or attribute in the data source.

        • DateFieldFormat (string) --

          The type of data stored in the column or attribute.

        • IndexFieldName (string) -- [REQUIRED]

          The name of the field in the index.

    • DocumentTitleFieldName (string) --

      The Microsoft SharePoint attribute field that contains the title of the document.

  • DatabaseConfiguration (dict) --

    Provides information necessary to create a connector for a database.

    • DatabaseEngineType (string) -- [REQUIRED]

      The type of database engine that runs the database.

    • ConnectionConfiguration (dict) -- [REQUIRED]

      The information necessary to connect to a database.

      • DatabaseHost (string) -- [REQUIRED]

        The name of the host for the database. Can be either a string (host.subdomain.domain.tld) or an IPv4 or IPv6 address.

      • DatabasePort (integer) -- [REQUIRED]

        The port that the database uses for connections.

      • DatabaseName (string) -- [REQUIRED]

        The name of the database containing the document data.

      • TableName (string) -- [REQUIRED]

        The name of the table that contains the document data.

      • SecretArn (string) -- [REQUIRED]

        The Amazon Resource Name (ARN) of credentials stored in AWS Secrets Manager. The credentials should be a user/password pair. For more information, see Using a Database Data Source. For more information about AWS Secrets Manager, see What Is AWS Secrets Manager in the AWS Secrets Manager user guide.

    • VpcConfiguration (dict) --

      Provides information for connecting to an Amazon VPC.

      • SubnetIds (list) -- [REQUIRED]

        A list of identifiers for subnets within your Amazon VPC. The subnets should be able to connect to each other in the VPC, and they should have outgoing access to the Internet through a NAT device.

        • (string) --

      • SecurityGroupIds (list) -- [REQUIRED]

        A list of identifiers of security groups within your Amazon VPC. The security groups should enable Amazon Kendra to connect to the data source.

        • (string) --

    • ColumnConfiguration (dict) -- [REQUIRED]

      Information about where the index should get the document information from the database.

      • DocumentIdColumnName (string) -- [REQUIRED]

        The column that provides the document's unique identifier.

      • DocumentDataColumnName (string) -- [REQUIRED]

        The column that contains the contents of the document.

      • DocumentTitleColumnName (string) --

        The column that contains the title of the document.

      • FieldMappings (list) --

        An array of objects that map database column names to the corresponding fields in an index. You must first create the fields in the index using the UpdateIndex operation.

        • (dict) --

          Maps a column or attribute in the data source to an index field. You must first create the fields in the index using the UpdateIndex operation.

          • DataSourceFieldName (string) -- [REQUIRED]

            The name of the column or attribute in the data source.

          • DateFieldFormat (string) --

            The type of data stored in the column or attribute.

          • IndexFieldName (string) -- [REQUIRED]

            The name of the field in the index.

      • ChangeDetectingColumns (list) -- [REQUIRED]

        One to five columns that indicate when a document in the database has changed.

        • (string) --

    • AclConfiguration (dict) --

      Information about the database column that provides information for user context filtering.

      • AllowedGroupsColumnName (string) -- [REQUIRED]

        A list of groups, separated by semi-colons, that filters a query response based on user context. The document is only returned to users that are in one of the groups specified in the UserContext field of the Query operation.

  • SalesforceConfiguration (dict) --

    Provides configuration information for data sources that connect to a Salesforce site.

    • ServerUrl (string) -- [REQUIRED]

      The instance URL for the Salesforce site that you want to index.

    • SecretArn (string) -- [REQUIRED]

      The Amazon Resource Name (ARN) of an AWS Secrets Manager secret that contains the key/value pairs required to connect to your Salesforce instance. The secret must contain a JSON structure with the following keys:

      • authenticationUrl - The OAUTH endpoint that Amazon Kendra connects to get an OAUTH token.

      • consumerKey - The application public key generated when you created your Salesforce application.

      • consumerSecret - The application private key generated when you created your Salesforce application.

      • password - The password associated with the user logging in to the Salesforce instance.

      • securityToken - The token associated with the user account logging in to the Salesforce instance.

      • username - The user name of the user logging in to the Salesforce instance.

    • StandardObjectConfigurations (list) --

      Specifies the Salesforce standard objects that Amazon Kendra indexes.

      • (dict) --

        Specifies confguration information for indexing a single standard object.

        • Name (string) -- [REQUIRED]

          The name of the standard object.

        • DocumentDataFieldName (string) -- [REQUIRED]

          The name of the field in the standard object table that contains the document contents.

        • DocumentTitleFieldName (string) --

          The name of the field in the standard object table that contains the document titleB.

        • FieldMappings (list) --

          One or more objects that map fields in the standard object to Amazon Kendra index fields. The index field must exist before you can map a Salesforce field to it.

          • (dict) --

            Maps a column or attribute in the data source to an index field. You must first create the fields in the index using the UpdateIndex operation.

            • DataSourceFieldName (string) -- [REQUIRED]

              The name of the column or attribute in the data source.

            • DateFieldFormat (string) --

              The type of data stored in the column or attribute.

            • IndexFieldName (string) -- [REQUIRED]

              The name of the field in the index.

    • KnowledgeArticleConfiguration (dict) --

      Specifies configuration information for the knowlege article types that Amazon Kendra indexes. Amazon Kendra indexes standard knowledge articles and the standard fields of knowledge articles, or the custom fields of custom knowledge articles, but not both.

      • IncludedStates (list) -- [REQUIRED]

        Specifies the document states that should be included when Amazon Kendra indexes knowledge articles. You must specify at least one state.

        • (string) --

      • StandardKnowledgeArticleTypeConfiguration (dict) --

        Provides configuration information for standard Salesforce knowledge articles.

        • DocumentDataFieldName (string) -- [REQUIRED]

          The name of the field that contains the document data to index.

        • DocumentTitleFieldName (string) --

          The name of the field that contains the document title.

        • FieldMappings (list) --

          One or more objects that map fields in the knowledge article to Amazon Kendra index fields. The index field must exist before you can map a Salesforce field to it.

          • (dict) --

            Maps a column or attribute in the data source to an index field. You must first create the fields in the index using the UpdateIndex operation.

            • DataSourceFieldName (string) -- [REQUIRED]

              The name of the column or attribute in the data source.

            • DateFieldFormat (string) --

              The type of data stored in the column or attribute.

            • IndexFieldName (string) -- [REQUIRED]

              The name of the field in the index.

      • CustomKnowledgeArticleTypeConfigurations (list) --

        Provides configuration information for custom Salesforce knowledge articles.

        • (dict) --

          Provides configuration information for indexing Salesforce custom articles.

          • Name (string) -- [REQUIRED]

            The name of the configuration.

          • DocumentDataFieldName (string) -- [REQUIRED]

            The name of the field in the custom knowledge article that contains the document data to index.

          • DocumentTitleFieldName (string) --

            The name of the field in the custom knowledge article that contains the document title.

          • FieldMappings (list) --

            One or more objects that map fields in the custom knowledge article to fields in the Amazon Kendra index.

            • (dict) --

              Maps a column or attribute in the data source to an index field. You must first create the fields in the index using the UpdateIndex operation.

              • DataSourceFieldName (string) -- [REQUIRED]

                The name of the column or attribute in the data source.

              • DateFieldFormat (string) --

                The type of data stored in the column or attribute.

              • IndexFieldName (string) -- [REQUIRED]

                The name of the field in the index.

    • ChatterFeedConfiguration (dict) --

      Specifies configuration information for Salesforce chatter feeds.

      • DocumentDataFieldName (string) -- [REQUIRED]

        The name of the column in the Salesforce FeedItem table that contains the content to index. Typically this is the Body column.

      • DocumentTitleFieldName (string) --

        The name of the column in the Salesforce FeedItem table that contains the title of the document. This is typically the Title collumn.

      • FieldMappings (list) --

        Maps fields from a Salesforce chatter feed into Amazon Kendra index fields.

        • (dict) --

          Maps a column or attribute in the data source to an index field. You must first create the fields in the index using the UpdateIndex operation.

          • DataSourceFieldName (string) -- [REQUIRED]

            The name of the column or attribute in the data source.

          • DateFieldFormat (string) --

            The type of data stored in the column or attribute.

          • IndexFieldName (string) -- [REQUIRED]

            The name of the field in the index.

      • IncludeFilterTypes (list) --

        Filters the documents in the feed based on status of the user. When you specify ACTIVE_USERS only documents from users who have an active account are indexed. When you specify STANDARD_USER only documents for Salesforce standard users are documented. You can specify both.

        • (string) --

    • CrawlAttachments (boolean) --

      Indicates whether Amazon Kendra should index attachments to Salesforce objects.

    • StandardObjectAttachmentConfiguration (dict) --

      Provides configuration information for processing attachments to Salesforce standard objects.

      • DocumentTitleFieldName (string) --

        The name of the field used for the document title.

      • FieldMappings (list) --

        One or more objects that map fields in attachments to Amazon Kendra index fields.

        • (dict) --

          Maps a column or attribute in the data source to an index field. You must first create the fields in the index using the UpdateIndex operation.

          • DataSourceFieldName (string) -- [REQUIRED]

            The name of the column or attribute in the data source.

          • DateFieldFormat (string) --

            The type of data stored in the column or attribute.

          • IndexFieldName (string) -- [REQUIRED]

            The name of the field in the index.

    • IncludeAttachmentFilePatterns (list) --

      A list of regular expression patterns. Documents that match the patterns are included in the index. Documents that don't match the patterns are excluded from the index. If a document matches both an inclusion pattern and an exclusion pattern, the document is not included in the index.

      The regex is applied to the name of the attached file.

      • (string) --

    • ExcludeAttachmentFilePatterns (list) --

      A list of regular expression patterns. Documents that match the patterns are excluded from the index. Documents that don't match the patterns are included in the index. If a document matches both an exclusion pattern and an inclusion pattern, the document is not included in the index.

      The regex is applied to the name of the attached file.

      • (string) --

  • OneDriveConfiguration (dict) --

    Provided configuration for data sources that connect to Microsoft OneDrive.

    • TenantDomain (string) -- [REQUIRED]

      Tha Azure Active Directory domain of the organization.

    • SecretArn (string) -- [REQUIRED]

      The Amazon Resource Name (ARN) of an AWS Secrets Manager secret that contains the user name and password to connect to OneDrive. The user namd should be the application ID for the OneDrive application, and the password is the application key for the OneDrive application.

    • OneDriveUsers (dict) -- [REQUIRED]

      A list of user accounts whose documents should be indexed.

      • OneDriveUserList (list) --

        A list of users whose documents should be indexed. Specify the user names in email format, for example, username@tenantdomain . If you need to index the documents of more than 100 users, use the OneDriveUserS3Path field to specify the location of a file containing a list of users.

        • (string) --

      • OneDriveUserS3Path (dict) --

        The S3 bucket location of a file containing a list of users whose documents should be indexed.

        • Bucket (string) -- [REQUIRED]

          The name of the S3 bucket that contains the file.

        • Key (string) -- [REQUIRED]

          The name of the file.

    • InclusionPatterns (list) --

      A list of regular expression patterns. Documents that match the pattern are included in the index. Documents that don't match the pattern are excluded from the index. If a document matches both an inclusion pattern and an exclusion pattern, the document is not included in the index.

      The exclusion pattern is applied to the file name.

      • (string) --

    • ExclusionPatterns (list) --

      List of regular expressions applied to documents. Items that match the exclusion pattern are not indexed. If you provide both an inclusion pattern and an exclusion pattern, any item that matches the exclusion pattern isn't indexed.

      The exclusion pattern is applied to the file name.

      • (string) --

    • FieldMappings (list) --

      A list of DataSourceToIndexFieldMapping objects that map Microsoft OneDrive fields to custom fields in the Amazon Kendra index. You must first create the index fields before you map OneDrive fields.

      • (dict) --

        Maps a column or attribute in the data source to an index field. You must first create the fields in the index using the UpdateIndex operation.

        • DataSourceFieldName (string) -- [REQUIRED]

          The name of the column or attribute in the data source.

        • DateFieldFormat (string) --

          The type of data stored in the column or attribute.

        • IndexFieldName (string) -- [REQUIRED]

          The name of the field in the index.

  • ServiceNowConfiguration (dict) --

    Provides configuration for data sources that connect to ServiceNow instances.

    • HostUrl (string) -- [REQUIRED]

      The ServiceNow instance that the data source connects to. The host endpoint should look like the following: {instance}.service-now.com.

    • SecretArn (string) -- [REQUIRED]

      The Amazon Resource Name (ARN) of the AWS Secret Manager secret that contains the user name and password required to connect to the ServiceNow instance.

    • ServiceNowBuildVersion (string) -- [REQUIRED]

      The identifier of the release that the ServiceNow host is running. If the host is not running the LONDON release, use OTHERS .

    • KnowledgeArticleConfiguration (dict) --

      Provides configuration information for crawling knowledge articles in the ServiceNow site.

      • CrawlAttachments (boolean) --

        Indicates whether Amazon Kendra should index attachments to knowledge articles.

      • IncludeAttachmentFilePatterns (list) --

        List of regular expressions applied to knowledge articles. Items that don't match the inclusion pattern are not indexed. The regex is applied to the field specified in the PatternTargetField .

        • (string) --

      • ExcludeAttachmentFilePatterns (list) --

        List of regular expressions applied to knowledge articles. Items that don't match the inclusion pattern are not indexed. The regex is applied to the field specified in the PatternTargetField

        • (string) --

      • DocumentDataFieldName (string) -- [REQUIRED]

        The name of the ServiceNow field that is mapped to the index document contents field in the Amazon Kendra index.

      • DocumentTitleFieldName (string) --

        The name of the ServiceNow field that is mapped to the index document title field.

      • FieldMappings (list) --

        Mapping between ServiceNow fields and Amazon Kendra index fields. You must create the index field before you map the field.

        • (dict) --

          Maps a column or attribute in the data source to an index field. You must first create the fields in the index using the UpdateIndex operation.

          • DataSourceFieldName (string) -- [REQUIRED]

            The name of the column or attribute in the data source.

          • DateFieldFormat (string) --

            The type of data stored in the column or attribute.

          • IndexFieldName (string) -- [REQUIRED]

            The name of the field in the index.

    • ServiceCatalogConfiguration (dict) --

      Provides configuration information for crawling service catalogs in the ServiceNow site.

      • CrawlAttachments (boolean) --

        Indicates whether Amazon Kendra should crawl attachments to the service catalog items.

      • IncludeAttachmentFilePatterns (list) --

        Determines the types of file attachments that are included in the index.

        • (string) --

      • ExcludeAttachmentFilePatterns (list) --

        Determines the types of file attachments that are excluded from the index.

        • (string) --

      • DocumentDataFieldName (string) -- [REQUIRED]

        The name of the ServiceNow field that is mapped to the index document contents field in the Amazon Kendra index.

      • DocumentTitleFieldName (string) --

        The name of the ServiceNow field that is mapped to the index document title field.

      • FieldMappings (list) --

        Mapping between ServiceNow fields and Amazon Kendra index fields. You must create the index field before you map the field.

        • (dict) --

          Maps a column or attribute in the data source to an index field. You must first create the fields in the index using the UpdateIndex operation.

          • DataSourceFieldName (string) -- [REQUIRED]

            The name of the column or attribute in the data source.

          • DateFieldFormat (string) --

            The type of data stored in the column or attribute.

          • IndexFieldName (string) -- [REQUIRED]

            The name of the field in the index.

type Description

string

param Description

A description for the data source.

type Schedule

string

param Schedule

Sets the frequency that Amazon Kendra will check the documents in your repository and update the index. If you don't set a schedule Amazon Kendra will not periodically update the index. You can call the StartDataSourceSyncJob operation to update the index.

type RoleArn

string

param RoleArn

[REQUIRED]

The Amazon Resource Name (ARN) of a role with permission to access the data source. For more information, see IAM Roles for Amazon Kendra.

type Tags

list

param Tags

A list of key-value pairs that identify the data source. You can use the tags to identify and organize your resources and to control access to resources.

  • (dict) --

    A list of key/value pairs that identify an index, FAQ, or data source. Tag keys and values can consist of Unicode letters, digits, white space, and any of the following symbols: _ . : / = + - @.

    • Key (string) -- [REQUIRED]

      The key for the tag. Keys are not case sensitive and must be unique for the index, FAQ, or data source.

    • Value (string) -- [REQUIRED]

      The value associated with the tag. The value may be an empty string but it can't be null.

rtype

dict

returns

Response Syntax

{
    'Id': 'string'
}

Response Structure

  • (dict) --

    • Id (string) --

      A unique identifier for the data source.

CreateFaq (updated) Link ¶
Changes (request)
{'Tags': [{'Key': 'string', 'Value': 'string'}]}

Creates an new set of frequently asked question (FAQ) questions and answers.

See also: AWS API Documentation

Request Syntax

client.create_faq(
    IndexId='string',
    Name='string',
    Description='string',
    S3Path={
        'Bucket': 'string',
        'Key': 'string'
    },
    RoleArn='string',
    Tags=[
        {
            'Key': 'string',
            'Value': 'string'
        },
    ]
)
type IndexId

string

param IndexId

[REQUIRED]

The identifier of the index that contains the FAQ.

type Name

string

param Name

[REQUIRED]

The name that should be associated with the FAQ.

type Description

string

param Description

A description of the FAQ.

type S3Path

dict

param S3Path

[REQUIRED]

The S3 location of the FAQ input data.

  • Bucket (string) -- [REQUIRED]

    The name of the S3 bucket that contains the file.

  • Key (string) -- [REQUIRED]

    The name of the file.

type RoleArn

string

param RoleArn

[REQUIRED]

The Amazon Resource Name (ARN) of a role with permission to access the S3 bucket that contains the FAQs. For more information, see IAM Roles for Amazon Kendra.

type Tags

list

param Tags

A list of key-value pairs that identify the FAQ. You can use the tags to identify and organize your resources and to control access to resources.

  • (dict) --

    A list of key/value pairs that identify an index, FAQ, or data source. Tag keys and values can consist of Unicode letters, digits, white space, and any of the following symbols: _ . : / = + - @.

    • Key (string) -- [REQUIRED]

      The key for the tag. Keys are not case sensitive and must be unique for the index, FAQ, or data source.

    • Value (string) -- [REQUIRED]

      The value associated with the tag. The value may be an empty string but it can't be null.

rtype

dict

returns

Response Syntax

{
    'Id': 'string'
}

Response Structure

  • (dict) --

    • Id (string) --

      The unique identifier of the FAQ.

CreateIndex (updated) Link ¶
Changes (request)
{'Edition': 'DEVELOPER_EDITION | ENTERPRISE_EDITION',
 'Tags': [{'Key': 'string', 'Value': 'string'}]}

Creates a new Amazon Kendra index. Index creation is an asynchronous operation. To determine if index creation has completed, check the Status field returned from a call to . The Status field is set to ACTIVE when the index is ready to use.

Once the index is active you can index your documents using the operation or using one of the supported data sources.

See also: AWS API Documentation

Request Syntax

client.create_index(
    Name='string',
    Edition='DEVELOPER_EDITION'|'ENTERPRISE_EDITION',
    RoleArn='string',
    ServerSideEncryptionConfiguration={
        'KmsKeyId': 'string'
    },
    Description='string',
    ClientToken='string',
    Tags=[
        {
            'Key': 'string',
            'Value': 'string'
        },
    ]
)
type Name

string

param Name

[REQUIRED]

The name for the new index.

type Edition

string

param Edition

The Amazon Kendra edition to use for the index. Choose DEVELOPER_EDITION for indexes intended for development, testing, or proof of concept. Use ENTERPRISE_EDITION for your production databases. Once you set the edition for an index, it can't be changed.

type RoleArn

string

param RoleArn

[REQUIRED]

An IAM role that gives Amazon Kendra permissions to access your Amazon CloudWatch logs and metrics. This is also the role used when you use the BatchPutDocument operation to index documents from an Amazon S3 bucket.

type ServerSideEncryptionConfiguration

dict

param ServerSideEncryptionConfiguration

The identifier of the AWS KMS customer managed key (CMK) to use to encrypt data indexed by Amazon Kendra. Amazon Kendra doesn't support asymmetric CMKs.

  • KmsKeyId (string) --

    The identifier of the AWS KMS customer master key (CMK). Amazon Kendra doesn't support asymmetric CMKs.

type Description

string

param Description

A description for the index.

type ClientToken

string

param ClientToken

A token that you provide to identify the request to create an index. Multiple calls to the CreateIndex operation with the same client token will create only one index.”

This field is autopopulated if not provided.

type Tags

list

param Tags

A list of key-value pairs that identify the index. You can use the tags to identify and organize your resources and to control access to resources.

  • (dict) --

    A list of key/value pairs that identify an index, FAQ, or data source. Tag keys and values can consist of Unicode letters, digits, white space, and any of the following symbols: _ . : / = + - @.

    • Key (string) -- [REQUIRED]

      The key for the tag. Keys are not case sensitive and must be unique for the index, FAQ, or data source.

    • Value (string) -- [REQUIRED]

      The value associated with the tag. The value may be an empty string but it can't be null.

rtype

dict

returns

Response Syntax

{
    'Id': 'string'
}

Response Structure

  • (dict) --

    • Id (string) --

      The unique identifier of the index. Use this identifier when you query an index, set up a data source, or index a document.

DescribeDataSource (updated) Link ¶
Changes (response)
{'Configuration': {'OneDriveConfiguration': {'ExclusionPatterns': ['string'],
                                             'FieldMappings': [{'DataSourceFieldName': 'string',
                                                                'DateFieldFormat': 'string',
                                                                'IndexFieldName': 'string'}],
                                             'InclusionPatterns': ['string'],
                                             'OneDriveUsers': {'OneDriveUserList': ['string'],
                                                               'OneDriveUserS3Path': {'Bucket': 'string',
                                                                                      'Key': 'string'}},
                                             'SecretArn': 'string',
                                             'TenantDomain': 'string'},
                   'SalesforceConfiguration': {'ChatterFeedConfiguration': {'DocumentDataFieldName': 'string',
                                                                            'DocumentTitleFieldName': 'string',
                                                                            'FieldMappings': [{'DataSourceFieldName': 'string',
                                                                                               'DateFieldFormat': 'string',
                                                                                               'IndexFieldName': 'string'}],
                                                                            'IncludeFilterTypes': ['ACTIVE_USER '
                                                                                                   '| '
                                                                                                   'STANDARD_USER']},
                                               'CrawlAttachments': 'boolean',
                                               'ExcludeAttachmentFilePatterns': ['string'],
                                               'IncludeAttachmentFilePatterns': ['string'],
                                               'KnowledgeArticleConfiguration': {'CustomKnowledgeArticleTypeConfigurations': [{'DocumentDataFieldName': 'string',
                                                                                                                               'DocumentTitleFieldName': 'string',
                                                                                                                               'FieldMappings': [{'DataSourceFieldName': 'string',
                                                                                                                                                  'DateFieldFormat': 'string',
                                                                                                                                                  'IndexFieldName': 'string'}],
                                                                                                                               'Name': 'string'}],
                                                                                 'IncludedStates': ['DRAFT '
                                                                                                    '| '
                                                                                                    'PUBLISHED '
                                                                                                    '| '
                                                                                                    'ARCHIVED'],
                                                                                 'StandardKnowledgeArticleTypeConfiguration': {'DocumentDataFieldName': 'string',
                                                                                                                               'DocumentTitleFieldName': 'string',
                                                                                                                               'FieldMappings': [{'DataSourceFieldName': 'string',
                                                                                                                                                  'DateFieldFormat': 'string',
                                                                                                                                                  'IndexFieldName': 'string'}]}},
                                               'SecretArn': 'string',
                                               'ServerUrl': 'string',
                                               'StandardObjectAttachmentConfiguration': {'DocumentTitleFieldName': 'string',
                                                                                         'FieldMappings': [{'DataSourceFieldName': 'string',
                                                                                                            'DateFieldFormat': 'string',
                                                                                                            'IndexFieldName': 'string'}]},
                                               'StandardObjectConfigurations': [{'DocumentDataFieldName': 'string',
                                                                                 'DocumentTitleFieldName': 'string',
                                                                                 'FieldMappings': [{'DataSourceFieldName': 'string',
                                                                                                    'DateFieldFormat': 'string',
                                                                                                    'IndexFieldName': 'string'}],
                                                                                 'Name': 'ACCOUNT '
                                                                                         '| '
                                                                                         'CAMPAIGN '
                                                                                         '| '
                                                                                         'CASE '
                                                                                         '| '
                                                                                         'CONTACT '
                                                                                         '| '
                                                                                         'CONTRACT '
                                                                                         '| '
                                                                                         'DOCUMENT '
                                                                                         '| '
                                                                                         'GROUP '
                                                                                         '| '
                                                                                         'IDEA '
                                                                                         '| '
                                                                                         'LEAD '
                                                                                         '| '
                                                                                         'OPPORTUNITY '
                                                                                         '| '
                                                                                         'PARTNER '
                                                                                         '| '
                                                                                         'PRICEBOOK '
                                                                                         '| '
                                                                                         'PRODUCT '
                                                                                         '| '
                                                                                         'PROFILE '
                                                                                         '| '
                                                                                         'SOLUTION '
                                                                                         '| '
                                                                                         'TASK '
                                                                                         '| '
                                                                                         'USER'}]},
                   'ServiceNowConfiguration': {'HostUrl': 'string',
                                               'KnowledgeArticleConfiguration': {'CrawlAttachments': 'boolean',
                                                                                 'DocumentDataFieldName': 'string',
                                                                                 'DocumentTitleFieldName': 'string',
                                                                                 'ExcludeAttachmentFilePatterns': ['string'],
                                                                                 'FieldMappings': [{'DataSourceFieldName': 'string',
                                                                                                    'DateFieldFormat': 'string',
                                                                                                    'IndexFieldName': 'string'}],
                                                                                 'IncludeAttachmentFilePatterns': ['string']},
                                               'SecretArn': 'string',
                                               'ServiceCatalogConfiguration': {'CrawlAttachments': 'boolean',
                                                                               'DocumentDataFieldName': 'string',
                                                                               'DocumentTitleFieldName': 'string',
                                                                               'ExcludeAttachmentFilePatterns': ['string'],
                                                                               'FieldMappings': [{'DataSourceFieldName': 'string',
                                                                                                  'DateFieldFormat': 'string',
                                                                                                  'IndexFieldName': 'string'}],
                                                                               'IncludeAttachmentFilePatterns': ['string']},
                                               'ServiceNowBuildVersion': 'LONDON '
                                                                         '| '
                                                                         'OTHERS'}},
 'Type': {'SERVICENOW', 'SALESFORCE', 'ONEDRIVE'}}

Gets information about a Amazon Kendra data source.

See also: AWS API Documentation

Request Syntax

client.describe_data_source(
    Id='string',
    IndexId='string'
)
type Id

string

param Id

[REQUIRED]

The unique identifier of the data source to describe.

type IndexId

string

param IndexId

[REQUIRED]

The identifier of the index that contains the data source.

rtype

dict

returns

Response Syntax

{
    'Id': 'string',
    'IndexId': 'string',
    'Name': 'string',
    'Type': 'S3'|'SHAREPOINT'|'DATABASE'|'SALESFORCE'|'ONEDRIVE'|'SERVICENOW',
    'Configuration': {
        'S3Configuration': {
            'BucketName': 'string',
            'InclusionPrefixes': [
                'string',
            ],
            'ExclusionPatterns': [
                'string',
            ],
            'DocumentsMetadataConfiguration': {
                'S3Prefix': 'string'
            },
            'AccessControlListConfiguration': {
                'KeyPath': 'string'
            }
        },
        'SharePointConfiguration': {
            'SharePointVersion': 'SHAREPOINT_ONLINE',
            'Urls': [
                'string',
            ],
            'SecretArn': 'string',
            'CrawlAttachments': True|False,
            'UseChangeLog': True|False,
            'InclusionPatterns': [
                'string',
            ],
            'ExclusionPatterns': [
                'string',
            ],
            'VpcConfiguration': {
                'SubnetIds': [
                    'string',
                ],
                'SecurityGroupIds': [
                    'string',
                ]
            },
            'FieldMappings': [
                {
                    'DataSourceFieldName': 'string',
                    'DateFieldFormat': 'string',
                    'IndexFieldName': 'string'
                },
            ],
            'DocumentTitleFieldName': 'string'
        },
        'DatabaseConfiguration': {
            'DatabaseEngineType': 'RDS_AURORA_MYSQL'|'RDS_AURORA_POSTGRESQL'|'RDS_MYSQL'|'RDS_POSTGRESQL',
            'ConnectionConfiguration': {
                'DatabaseHost': 'string',
                'DatabasePort': 123,
                'DatabaseName': 'string',
                'TableName': 'string',
                'SecretArn': 'string'
            },
            'VpcConfiguration': {
                'SubnetIds': [
                    'string',
                ],
                'SecurityGroupIds': [
                    'string',
                ]
            },
            'ColumnConfiguration': {
                'DocumentIdColumnName': 'string',
                'DocumentDataColumnName': 'string',
                'DocumentTitleColumnName': 'string',
                'FieldMappings': [
                    {
                        'DataSourceFieldName': 'string',
                        'DateFieldFormat': 'string',
                        'IndexFieldName': 'string'
                    },
                ],
                'ChangeDetectingColumns': [
                    'string',
                ]
            },
            'AclConfiguration': {
                'AllowedGroupsColumnName': 'string'
            }
        },
        'SalesforceConfiguration': {
            'ServerUrl': 'string',
            'SecretArn': 'string',
            'StandardObjectConfigurations': [
                {
                    'Name': 'ACCOUNT'|'CAMPAIGN'|'CASE'|'CONTACT'|'CONTRACT'|'DOCUMENT'|'GROUP'|'IDEA'|'LEAD'|'OPPORTUNITY'|'PARTNER'|'PRICEBOOK'|'PRODUCT'|'PROFILE'|'SOLUTION'|'TASK'|'USER',
                    'DocumentDataFieldName': 'string',
                    'DocumentTitleFieldName': 'string',
                    'FieldMappings': [
                        {
                            'DataSourceFieldName': 'string',
                            'DateFieldFormat': 'string',
                            'IndexFieldName': 'string'
                        },
                    ]
                },
            ],
            'KnowledgeArticleConfiguration': {
                'IncludedStates': [
                    'DRAFT'|'PUBLISHED'|'ARCHIVED',
                ],
                'StandardKnowledgeArticleTypeConfiguration': {
                    'DocumentDataFieldName': 'string',
                    'DocumentTitleFieldName': 'string',
                    'FieldMappings': [
                        {
                            'DataSourceFieldName': 'string',
                            'DateFieldFormat': 'string',
                            'IndexFieldName': 'string'
                        },
                    ]
                },
                'CustomKnowledgeArticleTypeConfigurations': [
                    {
                        'Name': 'string',
                        'DocumentDataFieldName': 'string',
                        'DocumentTitleFieldName': 'string',
                        'FieldMappings': [
                            {
                                'DataSourceFieldName': 'string',
                                'DateFieldFormat': 'string',
                                'IndexFieldName': 'string'
                            },
                        ]
                    },
                ]
            },
            'ChatterFeedConfiguration': {
                'DocumentDataFieldName': 'string',
                'DocumentTitleFieldName': 'string',
                'FieldMappings': [
                    {
                        'DataSourceFieldName': 'string',
                        'DateFieldFormat': 'string',
                        'IndexFieldName': 'string'
                    },
                ],
                'IncludeFilterTypes': [
                    'ACTIVE_USER'|'STANDARD_USER',
                ]
            },
            'CrawlAttachments': True|False,
            'StandardObjectAttachmentConfiguration': {
                'DocumentTitleFieldName': 'string',
                'FieldMappings': [
                    {
                        'DataSourceFieldName': 'string',
                        'DateFieldFormat': 'string',
                        'IndexFieldName': 'string'
                    },
                ]
            },
            'IncludeAttachmentFilePatterns': [
                'string',
            ],
            'ExcludeAttachmentFilePatterns': [
                'string',
            ]
        },
        'OneDriveConfiguration': {
            'TenantDomain': 'string',
            'SecretArn': 'string',
            'OneDriveUsers': {
                'OneDriveUserList': [
                    'string',
                ],
                'OneDriveUserS3Path': {
                    'Bucket': 'string',
                    'Key': 'string'
                }
            },
            'InclusionPatterns': [
                'string',
            ],
            'ExclusionPatterns': [
                'string',
            ],
            'FieldMappings': [
                {
                    'DataSourceFieldName': 'string',
                    'DateFieldFormat': 'string',
                    'IndexFieldName': 'string'
                },
            ]
        },
        'ServiceNowConfiguration': {
            'HostUrl': 'string',
            'SecretArn': 'string',
            'ServiceNowBuildVersion': 'LONDON'|'OTHERS',
            'KnowledgeArticleConfiguration': {
                'CrawlAttachments': True|False,
                'IncludeAttachmentFilePatterns': [
                    'string',
                ],
                'ExcludeAttachmentFilePatterns': [
                    'string',
                ],
                'DocumentDataFieldName': 'string',
                'DocumentTitleFieldName': 'string',
                'FieldMappings': [
                    {
                        'DataSourceFieldName': 'string',
                        'DateFieldFormat': 'string',
                        'IndexFieldName': 'string'
                    },
                ]
            },
            'ServiceCatalogConfiguration': {
                'CrawlAttachments': True|False,
                'IncludeAttachmentFilePatterns': [
                    'string',
                ],
                'ExcludeAttachmentFilePatterns': [
                    'string',
                ],
                'DocumentDataFieldName': 'string',
                'DocumentTitleFieldName': 'string',
                'FieldMappings': [
                    {
                        'DataSourceFieldName': 'string',
                        'DateFieldFormat': 'string',
                        'IndexFieldName': 'string'
                    },
                ]
            }
        }
    },
    'CreatedAt': datetime(2015, 1, 1),
    'UpdatedAt': datetime(2015, 1, 1),
    'Description': 'string',
    'Status': 'CREATING'|'DELETING'|'FAILED'|'UPDATING'|'ACTIVE',
    'Schedule': 'string',
    'RoleArn': 'string',
    'ErrorMessage': 'string'
}

Response Structure

  • (dict) --

    • Id (string) --

      The identifier of the data source.

    • IndexId (string) --

      The identifier of the index that contains the data source.

    • Name (string) --

      The name that you gave the data source when it was created.

    • Type (string) --

      The type of the data source.

    • Configuration (dict) --

      Information that describes where the data source is located and how the data source is configured. The specific information in the description depends on the data source provider.

      • S3Configuration (dict) --

        Provides information to create a connector for a document repository in an Amazon S3 bucket.

        • BucketName (string) --

          The name of the bucket that contains the documents.

        • InclusionPrefixes (list) --

          A list of S3 prefixes for the documents that should be included in the index.

          • (string) --

        • ExclusionPatterns (list) --

          A list of glob patterns for documents that should not be indexed. If a document that matches an inclusion prefix also matches an exclusion pattern, the document is not indexed.

          For more information about glob patterns, see glob (programming) in Wikipedia .

          • (string) --

        • DocumentsMetadataConfiguration (dict) --

          Document metadata files that contain information such as the document access control information, source URI, document author, and custom attributes. Each metadata file contains metadata about a single document.

          • S3Prefix (string) --

            A prefix used to filter metadata configuration files in the AWS S3 bucket. The S3 bucket might contain multiple metadata files. Use S3Prefix to include only the desired metadata files.

        • AccessControlListConfiguration (dict) --

          Provides the path to the S3 bucket that contains the user context filtering files for the data source.

          • KeyPath (string) --

            Path to the AWS S3 bucket that contains the ACL files.

      • SharePointConfiguration (dict) --

        Provides information necessary to create a connector for a Microsoft SharePoint site.

        • SharePointVersion (string) --

          The version of Microsoft SharePoint that you are using as a data source.

        • Urls (list) --

          The URLs of the Microsoft SharePoint site that contains the documents that should be indexed.

          • (string) --

        • SecretArn (string) --

          The Amazon Resource Name (ARN) of credentials stored in AWS Secrets Manager. The credentials should be a user/password pair. For more information, see Using a Microsoft SharePoint Data Source. For more information about AWS Secrets Manager, see What Is AWS Secrets Manager in the AWS Secrets Manager user guide.

        • CrawlAttachments (boolean) --

          TRUE to include attachments to documents stored in your Microsoft SharePoint site in the index; otherwise, FALSE .

        • UseChangeLog (boolean) --

          Set to TRUE to use the Microsoft SharePoint change log to determine the documents that need to be updated in the index. Depending on the size of the SharePoint change log, it may take longer for Amazon Kendra to use the change log than it takes it to determine the changed documents using the Amazon Kendra document crawler.

        • InclusionPatterns (list) --

          A list of regular expression patterns. Documents that match the patterns are included in the index. Documents that don't match the patterns are excluded from the index. If a document matches both an inclusion pattern and an exclusion pattern, the document is not included in the index.

          The regex is applied to the display URL of the SharePoint document.

          • (string) --

        • ExclusionPatterns (list) --

          A list of regulary expression patterns. Documents that match the patterns are excluded from the index. Documents that don't match the patterns are included in the index. If a document matches both an exclusion pattern and an inclusion pattern, the document is not included in the index.

          The regex is applied to the display URL of the SharePoint document.

          • (string) --

        • VpcConfiguration (dict) --

          Provides information for connecting to an Amazon VPC.

          • SubnetIds (list) --

            A list of identifiers for subnets within your Amazon VPC. The subnets should be able to connect to each other in the VPC, and they should have outgoing access to the Internet through a NAT device.

            • (string) --

          • SecurityGroupIds (list) --

            A list of identifiers of security groups within your Amazon VPC. The security groups should enable Amazon Kendra to connect to the data source.

            • (string) --

        • FieldMappings (list) --

          A list of DataSourceToIndexFieldMapping objects that map Microsoft SharePoint attributes to custom fields in the Amazon Kendra index. You must first create the index fields using the operation before you map SharePoint attributes. For more information, see Mapping Data Source Fields.

          • (dict) --

            Maps a column or attribute in the data source to an index field. You must first create the fields in the index using the UpdateIndex operation.

            • DataSourceFieldName (string) --

              The name of the column or attribute in the data source.

            • DateFieldFormat (string) --

              The type of data stored in the column or attribute.

            • IndexFieldName (string) --

              The name of the field in the index.

        • DocumentTitleFieldName (string) --

          The Microsoft SharePoint attribute field that contains the title of the document.

      • DatabaseConfiguration (dict) --

        Provides information necessary to create a connector for a database.

        • DatabaseEngineType (string) --

          The type of database engine that runs the database.

        • ConnectionConfiguration (dict) --

          The information necessary to connect to a database.

          • DatabaseHost (string) --

            The name of the host for the database. Can be either a string (host.subdomain.domain.tld) or an IPv4 or IPv6 address.

          • DatabasePort (integer) --

            The port that the database uses for connections.

          • DatabaseName (string) --

            The name of the database containing the document data.

          • TableName (string) --

            The name of the table that contains the document data.

          • SecretArn (string) --

            The Amazon Resource Name (ARN) of credentials stored in AWS Secrets Manager. The credentials should be a user/password pair. For more information, see Using a Database Data Source. For more information about AWS Secrets Manager, see What Is AWS Secrets Manager in the AWS Secrets Manager user guide.

        • VpcConfiguration (dict) --

          Provides information for connecting to an Amazon VPC.

          • SubnetIds (list) --

            A list of identifiers for subnets within your Amazon VPC. The subnets should be able to connect to each other in the VPC, and they should have outgoing access to the Internet through a NAT device.

            • (string) --

          • SecurityGroupIds (list) --

            A list of identifiers of security groups within your Amazon VPC. The security groups should enable Amazon Kendra to connect to the data source.

            • (string) --

        • ColumnConfiguration (dict) --

          Information about where the index should get the document information from the database.

          • DocumentIdColumnName (string) --

            The column that provides the document's unique identifier.

          • DocumentDataColumnName (string) --

            The column that contains the contents of the document.

          • DocumentTitleColumnName (string) --

            The column that contains the title of the document.

          • FieldMappings (list) --

            An array of objects that map database column names to the corresponding fields in an index. You must first create the fields in the index using the UpdateIndex operation.

            • (dict) --

              Maps a column or attribute in the data source to an index field. You must first create the fields in the index using the UpdateIndex operation.

              • DataSourceFieldName (string) --

                The name of the column or attribute in the data source.

              • DateFieldFormat (string) --

                The type of data stored in the column or attribute.

              • IndexFieldName (string) --

                The name of the field in the index.

          • ChangeDetectingColumns (list) --

            One to five columns that indicate when a document in the database has changed.

            • (string) --

        • AclConfiguration (dict) --

          Information about the database column that provides information for user context filtering.

          • AllowedGroupsColumnName (string) --

            A list of groups, separated by semi-colons, that filters a query response based on user context. The document is only returned to users that are in one of the groups specified in the UserContext field of the Query operation.

      • SalesforceConfiguration (dict) --

        Provides configuration information for data sources that connect to a Salesforce site.

        • ServerUrl (string) --

          The instance URL for the Salesforce site that you want to index.

        • SecretArn (string) --

          The Amazon Resource Name (ARN) of an AWS Secrets Manager secret that contains the key/value pairs required to connect to your Salesforce instance. The secret must contain a JSON structure with the following keys:

          • authenticationUrl - The OAUTH endpoint that Amazon Kendra connects to get an OAUTH token.

          • consumerKey - The application public key generated when you created your Salesforce application.

          • consumerSecret - The application private key generated when you created your Salesforce application.

          • password - The password associated with the user logging in to the Salesforce instance.

          • securityToken - The token associated with the user account logging in to the Salesforce instance.

          • username - The user name of the user logging in to the Salesforce instance.

        • StandardObjectConfigurations (list) --

          Specifies the Salesforce standard objects that Amazon Kendra indexes.

          • (dict) --

            Specifies confguration information for indexing a single standard object.

            • Name (string) --

              The name of the standard object.

            • DocumentDataFieldName (string) --

              The name of the field in the standard object table that contains the document contents.

            • DocumentTitleFieldName (string) --

              The name of the field in the standard object table that contains the document titleB.

            • FieldMappings (list) --

              One or more objects that map fields in the standard object to Amazon Kendra index fields. The index field must exist before you can map a Salesforce field to it.

              • (dict) --

                Maps a column or attribute in the data source to an index field. You must first create the fields in the index using the UpdateIndex operation.

                • DataSourceFieldName (string) --

                  The name of the column or attribute in the data source.

                • DateFieldFormat (string) --

                  The type of data stored in the column or attribute.

                • IndexFieldName (string) --

                  The name of the field in the index.

        • KnowledgeArticleConfiguration (dict) --

          Specifies configuration information for the knowlege article types that Amazon Kendra indexes. Amazon Kendra indexes standard knowledge articles and the standard fields of knowledge articles, or the custom fields of custom knowledge articles, but not both.

          • IncludedStates (list) --

            Specifies the document states that should be included when Amazon Kendra indexes knowledge articles. You must specify at least one state.

            • (string) --

          • StandardKnowledgeArticleTypeConfiguration (dict) --

            Provides configuration information for standard Salesforce knowledge articles.

            • DocumentDataFieldName (string) --

              The name of the field that contains the document data to index.

            • DocumentTitleFieldName (string) --

              The name of the field that contains the document title.

            • FieldMappings (list) --

              One or more objects that map fields in the knowledge article to Amazon Kendra index fields. The index field must exist before you can map a Salesforce field to it.

              • (dict) --

                Maps a column or attribute in the data source to an index field. You must first create the fields in the index using the UpdateIndex operation.

                • DataSourceFieldName (string) --

                  The name of the column or attribute in the data source.

                • DateFieldFormat (string) --

                  The type of data stored in the column or attribute.

                • IndexFieldName (string) --

                  The name of the field in the index.

          • CustomKnowledgeArticleTypeConfigurations (list) --

            Provides configuration information for custom Salesforce knowledge articles.

            • (dict) --

              Provides configuration information for indexing Salesforce custom articles.

              • Name (string) --

                The name of the configuration.

              • DocumentDataFieldName (string) --

                The name of the field in the custom knowledge article that contains the document data to index.

              • DocumentTitleFieldName (string) --

                The name of the field in the custom knowledge article that contains the document title.

              • FieldMappings (list) --

                One or more objects that map fields in the custom knowledge article to fields in the Amazon Kendra index.

                • (dict) --

                  Maps a column or attribute in the data source to an index field. You must first create the fields in the index using the UpdateIndex operation.

                  • DataSourceFieldName (string) --

                    The name of the column or attribute in the data source.

                  • DateFieldFormat (string) --

                    The type of data stored in the column or attribute.

                  • IndexFieldName (string) --

                    The name of the field in the index.

        • ChatterFeedConfiguration (dict) --

          Specifies configuration information for Salesforce chatter feeds.

          • DocumentDataFieldName (string) --

            The name of the column in the Salesforce FeedItem table that contains the content to index. Typically this is the Body column.

          • DocumentTitleFieldName (string) --

            The name of the column in the Salesforce FeedItem table that contains the title of the document. This is typically the Title collumn.

          • FieldMappings (list) --

            Maps fields from a Salesforce chatter feed into Amazon Kendra index fields.

            • (dict) --

              Maps a column or attribute in the data source to an index field. You must first create the fields in the index using the UpdateIndex operation.

              • DataSourceFieldName (string) --

                The name of the column or attribute in the data source.

              • DateFieldFormat (string) --

                The type of data stored in the column or attribute.

              • IndexFieldName (string) --

                The name of the field in the index.

          • IncludeFilterTypes (list) --

            Filters the documents in the feed based on status of the user. When you specify ACTIVE_USERS only documents from users who have an active account are indexed. When you specify STANDARD_USER only documents for Salesforce standard users are documented. You can specify both.

            • (string) --

        • CrawlAttachments (boolean) --

          Indicates whether Amazon Kendra should index attachments to Salesforce objects.

        • StandardObjectAttachmentConfiguration (dict) --

          Provides configuration information for processing attachments to Salesforce standard objects.

          • DocumentTitleFieldName (string) --

            The name of the field used for the document title.

          • FieldMappings (list) --

            One or more objects that map fields in attachments to Amazon Kendra index fields.

            • (dict) --

              Maps a column or attribute in the data source to an index field. You must first create the fields in the index using the UpdateIndex operation.

              • DataSourceFieldName (string) --

                The name of the column or attribute in the data source.

              • DateFieldFormat (string) --

                The type of data stored in the column or attribute.

              • IndexFieldName (string) --

                The name of the field in the index.

        • IncludeAttachmentFilePatterns (list) --

          A list of regular expression patterns. Documents that match the patterns are included in the index. Documents that don't match the patterns are excluded from the index. If a document matches both an inclusion pattern and an exclusion pattern, the document is not included in the index.

          The regex is applied to the name of the attached file.

          • (string) --

        • ExcludeAttachmentFilePatterns (list) --

          A list of regular expression patterns. Documents that match the patterns are excluded from the index. Documents that don't match the patterns are included in the index. If a document matches both an exclusion pattern and an inclusion pattern, the document is not included in the index.

          The regex is applied to the name of the attached file.

          • (string) --

      • OneDriveConfiguration (dict) --

        Provided configuration for data sources that connect to Microsoft OneDrive.

        • TenantDomain (string) --

          Tha Azure Active Directory domain of the organization.

        • SecretArn (string) --

          The Amazon Resource Name (ARN) of an AWS Secrets Manager secret that contains the user name and password to connect to OneDrive. The user namd should be the application ID for the OneDrive application, and the password is the application key for the OneDrive application.

        • OneDriveUsers (dict) --

          A list of user accounts whose documents should be indexed.

          • OneDriveUserList (list) --

            A list of users whose documents should be indexed. Specify the user names in email format, for example, username@tenantdomain . If you need to index the documents of more than 100 users, use the OneDriveUserS3Path field to specify the location of a file containing a list of users.

            • (string) --

          • OneDriveUserS3Path (dict) --

            The S3 bucket location of a file containing a list of users whose documents should be indexed.

            • Bucket (string) --

              The name of the S3 bucket that contains the file.

            • Key (string) --

              The name of the file.

        • InclusionPatterns (list) --

          A list of regular expression patterns. Documents that match the pattern are included in the index. Documents that don't match the pattern are excluded from the index. If a document matches both an inclusion pattern and an exclusion pattern, the document is not included in the index.

          The exclusion pattern is applied to the file name.

          • (string) --

        • ExclusionPatterns (list) --

          List of regular expressions applied to documents. Items that match the exclusion pattern are not indexed. If you provide both an inclusion pattern and an exclusion pattern, any item that matches the exclusion pattern isn't indexed.

          The exclusion pattern is applied to the file name.

          • (string) --

        • FieldMappings (list) --

          A list of DataSourceToIndexFieldMapping objects that map Microsoft OneDrive fields to custom fields in the Amazon Kendra index. You must first create the index fields before you map OneDrive fields.

          • (dict) --

            Maps a column or attribute in the data source to an index field. You must first create the fields in the index using the UpdateIndex operation.

            • DataSourceFieldName (string) --

              The name of the column or attribute in the data source.

            • DateFieldFormat (string) --

              The type of data stored in the column or attribute.

            • IndexFieldName (string) --

              The name of the field in the index.

      • ServiceNowConfiguration (dict) --

        Provides configuration for data sources that connect to ServiceNow instances.

        • HostUrl (string) --

          The ServiceNow instance that the data source connects to. The host endpoint should look like the following: {instance}.service-now.com.

        • SecretArn (string) --

          The Amazon Resource Name (ARN) of the AWS Secret Manager secret that contains the user name and password required to connect to the ServiceNow instance.

        • ServiceNowBuildVersion (string) --

          The identifier of the release that the ServiceNow host is running. If the host is not running the LONDON release, use OTHERS .

        • KnowledgeArticleConfiguration (dict) --

          Provides configuration information for crawling knowledge articles in the ServiceNow site.

          • CrawlAttachments (boolean) --

            Indicates whether Amazon Kendra should index attachments to knowledge articles.

          • IncludeAttachmentFilePatterns (list) --

            List of regular expressions applied to knowledge articles. Items that don't match the inclusion pattern are not indexed. The regex is applied to the field specified in the PatternTargetField .

            • (string) --

          • ExcludeAttachmentFilePatterns (list) --

            List of regular expressions applied to knowledge articles. Items that don't match the inclusion pattern are not indexed. The regex is applied to the field specified in the PatternTargetField

            • (string) --

          • DocumentDataFieldName (string) --

            The name of the ServiceNow field that is mapped to the index document contents field in the Amazon Kendra index.

          • DocumentTitleFieldName (string) --

            The name of the ServiceNow field that is mapped to the index document title field.

          • FieldMappings (list) --

            Mapping between ServiceNow fields and Amazon Kendra index fields. You must create the index field before you map the field.

            • (dict) --

              Maps a column or attribute in the data source to an index field. You must first create the fields in the index using the UpdateIndex operation.

              • DataSourceFieldName (string) --

                The name of the column or attribute in the data source.

              • DateFieldFormat (string) --

                The type of data stored in the column or attribute.

              • IndexFieldName (string) --

                The name of the field in the index.

        • ServiceCatalogConfiguration (dict) --

          Provides configuration information for crawling service catalogs in the ServiceNow site.

          • CrawlAttachments (boolean) --

            Indicates whether Amazon Kendra should crawl attachments to the service catalog items.

          • IncludeAttachmentFilePatterns (list) --

            Determines the types of file attachments that are included in the index.

            • (string) --

          • ExcludeAttachmentFilePatterns (list) --

            Determines the types of file attachments that are excluded from the index.

            • (string) --

          • DocumentDataFieldName (string) --

            The name of the ServiceNow field that is mapped to the index document contents field in the Amazon Kendra index.

          • DocumentTitleFieldName (string) --

            The name of the ServiceNow field that is mapped to the index document title field.

          • FieldMappings (list) --

            Mapping between ServiceNow fields and Amazon Kendra index fields. You must create the index field before you map the field.

            • (dict) --

              Maps a column or attribute in the data source to an index field. You must first create the fields in the index using the UpdateIndex operation.

              • DataSourceFieldName (string) --

                The name of the column or attribute in the data source.

              • DateFieldFormat (string) --

                The type of data stored in the column or attribute.

              • IndexFieldName (string) --

                The name of the field in the index.

    • CreatedAt (datetime) --

      The Unix timestamp of when the data source was created.

    • UpdatedAt (datetime) --

      The Unix timestamp of when the data source was last updated.

    • Description (string) --

      The description of the data source.

    • Status (string) --

      The current status of the data source. When the status is ACTIVE the data source is ready to use. When the status is FAILED , the ErrorMessage field contains the reason that the data source failed.

    • Schedule (string) --

      The schedule that Amazon Kendra will update the data source.

    • RoleArn (string) --

      The Amazon Resource Name (ARN) of the role that enables the data source to access its resources.

    • ErrorMessage (string) --

      When the Status field value is FAILED , the ErrorMessage field contains a description of the error that caused the data source to fail.

DescribeIndex (updated) Link ¶
Changes (response)
{'CapacityUnits': {'QueryCapacityUnits': 'integer',
                   'StorageCapacityUnits': 'integer'},
 'Edition': 'DEVELOPER_EDITION | ENTERPRISE_EDITION',
 'IndexStatistics': {'TextDocumentStatistics': {'IndexedTextBytes': 'long'}},
 'Status': {'UPDATING'}}

Describes an existing Amazon Kendra index

See also: AWS API Documentation

Request Syntax

client.describe_index(
    Id='string'
)
type Id

string

param Id

[REQUIRED]

The name of the index to describe.

rtype

dict

returns

Response Syntax

{
    'Name': 'string',
    'Id': 'string',
    'Edition': 'DEVELOPER_EDITION'|'ENTERPRISE_EDITION',
    'RoleArn': 'string',
    'ServerSideEncryptionConfiguration': {
        'KmsKeyId': 'string'
    },
    'Status': 'CREATING'|'ACTIVE'|'DELETING'|'FAILED'|'UPDATING'|'SYSTEM_UPDATING',
    'Description': 'string',
    'CreatedAt': datetime(2015, 1, 1),
    'UpdatedAt': datetime(2015, 1, 1),
    'DocumentMetadataConfigurations': [
        {
            'Name': 'string',
            'Type': 'STRING_VALUE'|'STRING_LIST_VALUE'|'LONG_VALUE'|'DATE_VALUE',
            'Relevance': {
                'Freshness': True|False,
                'Importance': 123,
                'Duration': 'string',
                'RankOrder': 'ASCENDING'|'DESCENDING',
                'ValueImportanceMap': {
                    'string': 123
                }
            },
            'Search': {
                'Facetable': True|False,
                'Searchable': True|False,
                'Displayable': True|False
            }
        },
    ],
    'IndexStatistics': {
        'FaqStatistics': {
            'IndexedQuestionAnswersCount': 123
        },
        'TextDocumentStatistics': {
            'IndexedTextDocumentsCount': 123,
            'IndexedTextBytes': 123
        }
    },
    'ErrorMessage': 'string',
    'CapacityUnits': {
        'StorageCapacityUnits': 123,
        'QueryCapacityUnits': 123
    }
}

Response Structure

  • (dict) --

    • Name (string) --

      The name of the index.

    • Id (string) --

      the name of the index.

    • Edition (string) --

      The Amazon Kendra edition used for the index. You decide the edition when you create the index.

    • RoleArn (string) --

      The Amazon Resource Name (ARN) of the IAM role that gives Amazon Kendra permission to write to your Amazon Cloudwatch logs.

    • ServerSideEncryptionConfiguration (dict) --

      The identifier of the AWS KMS customer master key (CMK) used to encrypt your data. Amazon Kendra doesn't support asymmetric CMKs.

      • KmsKeyId (string) --

        The identifier of the AWS KMS customer master key (CMK). Amazon Kendra doesn't support asymmetric CMKs.

    • Status (string) --

      The current status of the index. When the value is ACTIVE , the index is ready for use. If the Status field value is FAILED , the ErrorMessage field contains a message that explains why.

    • Description (string) --

      The description of the index.

    • CreatedAt (datetime) --

      The Unix datetime that the index was created.

    • UpdatedAt (datetime) --

      The Unix datetime that the index was last updated.

    • DocumentMetadataConfigurations (list) --

      Configuration settings for any metadata applied to the documents in the index.

      • (dict) --

        Specifies the properties of a custom index field.

        • Name (string) --

          The name of the index field.

        • Type (string) --

          The data type of the index field.

        • Relevance (dict) --

          Provides manual tuning parameters to determine how the field affects the search results.

          • Freshness (boolean) --

            Indicates that this field determines how "fresh" a document is. For example, if document 1 was created on November 5, and document 2 was created on October 31, document 1 is "fresher" than document 2. You can only set the Freshness field on one DATE type field. Only applies to DATE fields.

          • Importance (integer) --

            The relative importance of the field in the search. Larger numbers provide more of a boost than smaller numbers.

          • Duration (string) --

            Specifies the time period that the boost applies to. For example, to make the boost apply to documents with the field value within the last month, you would use "2628000s". Once the field value is beyond the specified range, the effect of the boost drops off. The higher the importance, the faster the effect drops off. If you don't specify a value, the default is 3 months. The value of the field is a numeric string followed by the character "s", for example "86400s" for one day, or "604800s" for one week.

            Only applies to DATE fields.

          • RankOrder (string) --

            Determines how values should be interpreted.

            When the RankOrder field is ASCENDING , higher numbers are better. For example, a document with a rating score of 10 is higher ranking than a document with a rating score of 1.

            When the RankOrder field is DESCENDING , lower numbers are better. For example, in a task tracking application, a priority 1 task is more important than a priority 5 task.

            Only applies to LONG and DOUBLE fields.

          • ValueImportanceMap (dict) --

            A list of values that should be given a different boost when they appear in the result list. For example, if you are boosting a field called "department," query terms that match the department field are boosted in the result. However, you can add entries from the department field to boost documents with those values higher.

            For example, you can add entries to the map with names of departments. If you add "HR",5 and "Legal",3 those departments are given special attention when they appear in the metadata of a document. When those terms appear they are given the specified importance instead of the regular importance for the boost.

            • (string) --

              • (integer) --

        • Search (dict) --

          Provides information about how the field is used during a search.

          • Facetable (boolean) --

            Indicates that the field can be used to create search facets, a count of results for each value in the field. The default is false .

          • Searchable (boolean) --

            Determines whether the field is used in the search. If the Searchable field is true , you can use relevance tuning to manually tune how Amazon Kendra weights the field in the search. The default is true for string fields and false for number and date fields.

          • Displayable (boolean) --

            Determines whether the field is returned in the query response. The default is true .

    • IndexStatistics (dict) --

      Provides information about the number of FAQ questions and answers and the number of text documents indexed.

      • FaqStatistics (dict) --

        The number of question and answer topics in the index.

        • IndexedQuestionAnswersCount (integer) --

          The total number of FAQ questions and answers contained in the index.

      • TextDocumentStatistics (dict) --

        The number of text documents indexed.

        • IndexedTextDocumentsCount (integer) --

          The number of text documents indexed.

        • IndexedTextBytes (integer) --

          The total size, in bytes, of the indexed documents.

    • ErrorMessage (string) --

      When th e Status field value is FAILED , the ErrorMessage field contains a message that explains why.

    • CapacityUnits (dict) --

      For enterprise edtion indexes, you can choose to use additional capacity to meet the needs of your application. This contains the capacity units used for the index. A 0 for the query capacity or the storage capacity indicates that the index is using the default capacity for the index.

      • StorageCapacityUnits (integer) --

        The amount of extra storage capacity for an index. Each capacity unit provides 150 Gb of storage space or 500,000 documents, whichever is reached first.

      • QueryCapacityUnits (integer) --

        The amount of extra query capacity for an index. Each capacity unit provides 0.5 queries per second and 40,000 queries per day.

ListDataSourceSyncJobs (updated) Link ¶
Changes (request, response)
Request
{'StatusFilter': {'SYNCING_INDEXING'}}
Response
{'History': {'Metrics': {'DocumentsAdded': 'string',
                         'DocumentsDeleted': 'string',
                         'DocumentsFailed': 'string',
                         'DocumentsModified': 'string',
                         'DocumentsScanned': 'string'},
             'Status': {'SYNCING_INDEXING'}}}

Gets statistics about synchronizing Amazon Kendra with a data source.

See also: AWS API Documentation

Request Syntax

client.list_data_source_sync_jobs(
    Id='string',
    IndexId='string',
    NextToken='string',
    MaxResults=123,
    StartTimeFilter={
        'StartTime': datetime(2015, 1, 1),
        'EndTime': datetime(2015, 1, 1)
    },
    StatusFilter='FAILED'|'SUCCEEDED'|'SYNCING'|'INCOMPLETE'|'STOPPING'|'ABORTED'|'SYNCING_INDEXING'
)
type Id

string

param Id

[REQUIRED]

The identifier of the data source.

type IndexId

string

param IndexId

[REQUIRED]

The identifier of the index that contains the data source.

type NextToken

string

param NextToken

If the result of the previous request to GetDataSourceSyncJobHistory was truncated, include the NextToken to fetch the next set of jobs.

type MaxResults

integer

param MaxResults

The maximum number of synchronization jobs to return in the response. If there are fewer results in the list, this response contains only the actual results.

type StartTimeFilter

dict

param StartTimeFilter

When specified, the synchronization jobs returned in the list are limited to jobs between the specified dates.

  • StartTime (datetime) --

    The UNIX datetime of the beginning of the time range.

  • EndTime (datetime) --

    The UNIX datetime of the end of the time range.

type StatusFilter

string

param StatusFilter

When specified, only returns synchronization jobs with the Status field equal to the specified status.

rtype

dict

returns

Response Syntax

{
    'History': [
        {
            'ExecutionId': 'string',
            'StartTime': datetime(2015, 1, 1),
            'EndTime': datetime(2015, 1, 1),
            'Status': 'FAILED'|'SUCCEEDED'|'SYNCING'|'INCOMPLETE'|'STOPPING'|'ABORTED'|'SYNCING_INDEXING',
            'ErrorMessage': 'string',
            'ErrorCode': 'InternalError'|'InvalidRequest',
            'DataSourceErrorCode': 'string',
            'Metrics': {
                'DocumentsAdded': 'string',
                'DocumentsModified': 'string',
                'DocumentsDeleted': 'string',
                'DocumentsFailed': 'string',
                'DocumentsScanned': 'string'
            }
        },
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) --

    • History (list) --

      A history of synchronization jobs for the data source.

      • (dict) --

        Provides information about a synchronization job.

        • ExecutionId (string) --

          A unique identifier for the synchronization job.

        • StartTime (datetime) --

          The UNIX datetime that the synchronization job was started.

        • EndTime (datetime) --

          The UNIX datetime that the synchronization job was completed.

        • Status (string) --

          The execution status of the synchronization job. When the Status field is set to SUCCEEDED , the synchronization job is done. If the status code is set to FAILED , the ErrorCode and ErrorMessage fields give you the reason for the failure.

        • ErrorMessage (string) --

          If the Status field is set to ERROR , the ErrorMessage field contains a description of the error that caused the synchronization to fail.

        • ErrorCode (string) --

          If the Status field is set to FAILED , the ErrorCode field contains a the reason that the synchronization failed.

        • DataSourceErrorCode (string) --

          If the reason that the synchronization failed is due to an error with the underlying data source, this field contains a code that identifies the error.

        • Metrics (dict) --

          Maps a batch delete document request to a specific data source sync job. This is optional and should only be supplied when documents are deleted by a connector.

          • DocumentsAdded (string) --

            The number of documents added from the data source up to now in the data source sync.

          • DocumentsModified (string) --

            The number of documents modified in the data source up to now in the data source sync run.

          • DocumentsDeleted (string) --

            The number of documents deleted from the data source up to now in the data source sync run.

          • DocumentsFailed (string) --

            The number of documents that failed to sync from the data source up to now in the data source sync run.

          • DocumentsScanned (string) --

            The current number of documents crawled by the current sync job in the data source.

    • NextToken (string) --

      The GetDataSourceSyncJobHistory operation returns a page of vocabularies at a time. The maximum size of the page is set by the MaxResults parameter. If there are more jobs in the list than the page size, Amazon Kendra returns the NextPage token. Include the token in the next request to the GetDataSourceSyncJobHistory operation to return in the next page of jobs.

ListDataSources (updated) Link ¶
Changes (response)
{'SummaryItems': {'Type': {'SERVICENOW', 'SALESFORCE', 'ONEDRIVE'}}}

Lists the data sources that you have created.

See also: AWS API Documentation

Request Syntax

client.list_data_sources(
    IndexId='string',
    NextToken='string',
    MaxResults=123
)
type IndexId

string

param IndexId

[REQUIRED]

The identifier of the index that contains the data source.

type NextToken

string

param NextToken

If the previous response was incomplete (because there is more data to retrieve), Amazon Kendra returns a pagination token in the response. You can use this pagination token to retrieve the next set of data sources ( DataSourceSummaryItems ).

type MaxResults

integer

param MaxResults

The maximum number of data sources to return.

rtype

dict

returns

Response Syntax

{
    'SummaryItems': [
        {
            'Name': 'string',
            'Id': 'string',
            'Type': 'S3'|'SHAREPOINT'|'DATABASE'|'SALESFORCE'|'ONEDRIVE'|'SERVICENOW',
            'CreatedAt': datetime(2015, 1, 1),
            'UpdatedAt': datetime(2015, 1, 1),
            'Status': 'CREATING'|'DELETING'|'FAILED'|'UPDATING'|'ACTIVE'
        },
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) --

    • SummaryItems (list) --

      An array of summary information for one or more data sources.

      • (dict) --

        Summary information for a Amazon Kendra data source. Returned in a call to .

        • Name (string) --

          The name of the data source.

        • Id (string) --

          The unique identifier for the data source.

        • Type (string) --

          The type of the data source.

        • CreatedAt (datetime) --

          The UNIX datetime that the data source was created.

        • UpdatedAt (datetime) --

          The UNIX datetime that the data source was lasted updated.

        • Status (string) --

          The status of the data source. When the status is ATIVE the data source is ready to use.

    • NextToken (string) --

      If the response is truncated, Amazon Kendra returns this token that you can use in the subsequent request to retrieve the next set of data sources.

ListIndices (updated) Link ¶
Changes (response)
{'IndexConfigurationSummaryItems': {'Edition': 'DEVELOPER_EDITION | '
                                               'ENTERPRISE_EDITION',
                                    'Status': {'UPDATING'}}}

Lists the Amazon Kendra indexes that you have created.

See also: AWS API Documentation

Request Syntax

client.list_indices(
    NextToken='string',
    MaxResults=123
)
type NextToken

string

param NextToken

If the previous response was incomplete (because there is more data to retrieve), Amazon Kendra returns a pagination token in the response. You can use this pagination token to retrieve the next set of indexes ( DataSourceSummaryItems ).

type MaxResults

integer

param MaxResults

The maximum number of data sources to return.

rtype

dict

returns

Response Syntax

{
    'IndexConfigurationSummaryItems': [
        {
            'Name': 'string',
            'Id': 'string',
            'Edition': 'DEVELOPER_EDITION'|'ENTERPRISE_EDITION',
            'CreatedAt': datetime(2015, 1, 1),
            'UpdatedAt': datetime(2015, 1, 1),
            'Status': 'CREATING'|'ACTIVE'|'DELETING'|'FAILED'|'UPDATING'|'SYSTEM_UPDATING'
        },
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) --

    • IndexConfigurationSummaryItems (list) --

      An array of summary information for one or more indexes.

      • (dict) --

        A summary of information about an index.

        • Name (string) --

          The name of the index.

        • Id (string) --

          A unique identifier for the index. Use this to identify the index when you are using operations such as Query , DescribeIndex , UpdateIndex , and DeleteIndex .

        • Edition (string) --

          Indicates whether the index is a enterprise edition index or a developer edition index.

        • CreatedAt (datetime) --

          The Unix timestamp when the index was created.

        • UpdatedAt (datetime) --

          The Unix timestamp when the index was last updated by the UpdateIndex operation.

        • Status (string) --

          The current status of the index. When the status is ACTIVE , the index is ready to search.

    • NextToken (string) --

      If the response is truncated, Amazon Kendra returns this token that you can use in the subsequent request to retrieve the next set of indexes.

UpdateDataSource (updated) Link ¶
Changes (request)
{'Configuration': {'OneDriveConfiguration': {'ExclusionPatterns': ['string'],
                                             'FieldMappings': [{'DataSourceFieldName': 'string',
                                                                'DateFieldFormat': 'string',
                                                                'IndexFieldName': 'string'}],
                                             'InclusionPatterns': ['string'],
                                             'OneDriveUsers': {'OneDriveUserList': ['string'],
                                                               'OneDriveUserS3Path': {'Bucket': 'string',
                                                                                      'Key': 'string'}},
                                             'SecretArn': 'string',
                                             'TenantDomain': 'string'},
                   'SalesforceConfiguration': {'ChatterFeedConfiguration': {'DocumentDataFieldName': 'string',
                                                                            'DocumentTitleFieldName': 'string',
                                                                            'FieldMappings': [{'DataSourceFieldName': 'string',
                                                                                               'DateFieldFormat': 'string',
                                                                                               'IndexFieldName': 'string'}],
                                                                            'IncludeFilterTypes': ['ACTIVE_USER '
                                                                                                   '| '
                                                                                                   'STANDARD_USER']},
                                               'CrawlAttachments': 'boolean',
                                               'ExcludeAttachmentFilePatterns': ['string'],
                                               'IncludeAttachmentFilePatterns': ['string'],
                                               'KnowledgeArticleConfiguration': {'CustomKnowledgeArticleTypeConfigurations': [{'DocumentDataFieldName': 'string',
                                                                                                                               'DocumentTitleFieldName': 'string',
                                                                                                                               'FieldMappings': [{'DataSourceFieldName': 'string',
                                                                                                                                                  'DateFieldFormat': 'string',
                                                                                                                                                  'IndexFieldName': 'string'}],
                                                                                                                               'Name': 'string'}],
                                                                                 'IncludedStates': ['DRAFT '
                                                                                                    '| '
                                                                                                    'PUBLISHED '
                                                                                                    '| '
                                                                                                    'ARCHIVED'],
                                                                                 'StandardKnowledgeArticleTypeConfiguration': {'DocumentDataFieldName': 'string',
                                                                                                                               'DocumentTitleFieldName': 'string',
                                                                                                                               'FieldMappings': [{'DataSourceFieldName': 'string',
                                                                                                                                                  'DateFieldFormat': 'string',
                                                                                                                                                  'IndexFieldName': 'string'}]}},
                                               'SecretArn': 'string',
                                               'ServerUrl': 'string',
                                               'StandardObjectAttachmentConfiguration': {'DocumentTitleFieldName': 'string',
                                                                                         'FieldMappings': [{'DataSourceFieldName': 'string',
                                                                                                            'DateFieldFormat': 'string',
                                                                                                            'IndexFieldName': 'string'}]},
                                               'StandardObjectConfigurations': [{'DocumentDataFieldName': 'string',
                                                                                 'DocumentTitleFieldName': 'string',
                                                                                 'FieldMappings': [{'DataSourceFieldName': 'string',
                                                                                                    'DateFieldFormat': 'string',
                                                                                                    'IndexFieldName': 'string'}],
                                                                                 'Name': 'ACCOUNT '
                                                                                         '| '
                                                                                         'CAMPAIGN '
                                                                                         '| '
                                                                                         'CASE '
                                                                                         '| '
                                                                                         'CONTACT '
                                                                                         '| '
                                                                                         'CONTRACT '
                                                                                         '| '
                                                                                         'DOCUMENT '
                                                                                         '| '
                                                                                         'GROUP '
                                                                                         '| '
                                                                                         'IDEA '
                                                                                         '| '
                                                                                         'LEAD '
                                                                                         '| '
                                                                                         'OPPORTUNITY '
                                                                                         '| '
                                                                                         'PARTNER '
                                                                                         '| '
                                                                                         'PRICEBOOK '
                                                                                         '| '
                                                                                         'PRODUCT '
                                                                                         '| '
                                                                                         'PROFILE '
                                                                                         '| '
                                                                                         'SOLUTION '
                                                                                         '| '
                                                                                         'TASK '
                                                                                         '| '
                                                                                         'USER'}]},
                   'ServiceNowConfiguration': {'HostUrl': 'string',
                                               'KnowledgeArticleConfiguration': {'CrawlAttachments': 'boolean',
                                                                                 'DocumentDataFieldName': 'string',
                                                                                 'DocumentTitleFieldName': 'string',
                                                                                 'ExcludeAttachmentFilePatterns': ['string'],
                                                                                 'FieldMappings': [{'DataSourceFieldName': 'string',
                                                                                                    'DateFieldFormat': 'string',
                                                                                                    'IndexFieldName': 'string'}],
                                                                                 'IncludeAttachmentFilePatterns': ['string']},
                                               'SecretArn': 'string',
                                               'ServiceCatalogConfiguration': {'CrawlAttachments': 'boolean',
                                                                               'DocumentDataFieldName': 'string',
                                                                               'DocumentTitleFieldName': 'string',
                                                                               'ExcludeAttachmentFilePatterns': ['string'],
                                                                               'FieldMappings': [{'DataSourceFieldName': 'string',
                                                                                                  'DateFieldFormat': 'string',
                                                                                                  'IndexFieldName': 'string'}],
                                                                               'IncludeAttachmentFilePatterns': ['string']},
                                               'ServiceNowBuildVersion': 'LONDON '
                                                                         '| '
                                                                         'OTHERS'}}}

Updates an existing Amazon Kendra data source.

See also: AWS API Documentation

Request Syntax

client.update_data_source(
    Id='string',
    Name='string',
    IndexId='string',
    Configuration={
        'S3Configuration': {
            'BucketName': 'string',
            'InclusionPrefixes': [
                'string',
            ],
            'ExclusionPatterns': [
                'string',
            ],
            'DocumentsMetadataConfiguration': {
                'S3Prefix': 'string'
            },
            'AccessControlListConfiguration': {
                'KeyPath': 'string'
            }
        },
        'SharePointConfiguration': {
            'SharePointVersion': 'SHAREPOINT_ONLINE',
            'Urls': [
                'string',
            ],
            'SecretArn': 'string',
            'CrawlAttachments': True|False,
            'UseChangeLog': True|False,
            'InclusionPatterns': [
                'string',
            ],
            'ExclusionPatterns': [
                'string',
            ],
            'VpcConfiguration': {
                'SubnetIds': [
                    'string',
                ],
                'SecurityGroupIds': [
                    'string',
                ]
            },
            'FieldMappings': [
                {
                    'DataSourceFieldName': 'string',
                    'DateFieldFormat': 'string',
                    'IndexFieldName': 'string'
                },
            ],
            'DocumentTitleFieldName': 'string'
        },
        'DatabaseConfiguration': {
            'DatabaseEngineType': 'RDS_AURORA_MYSQL'|'RDS_AURORA_POSTGRESQL'|'RDS_MYSQL'|'RDS_POSTGRESQL',
            'ConnectionConfiguration': {
                'DatabaseHost': 'string',
                'DatabasePort': 123,
                'DatabaseName': 'string',
                'TableName': 'string',
                'SecretArn': 'string'
            },
            'VpcConfiguration': {
                'SubnetIds': [
                    'string',
                ],
                'SecurityGroupIds': [
                    'string',
                ]
            },
            'ColumnConfiguration': {
                'DocumentIdColumnName': 'string',
                'DocumentDataColumnName': 'string',
                'DocumentTitleColumnName': 'string',
                'FieldMappings': [
                    {
                        'DataSourceFieldName': 'string',
                        'DateFieldFormat': 'string',
                        'IndexFieldName': 'string'
                    },
                ],
                'ChangeDetectingColumns': [
                    'string',
                ]
            },
            'AclConfiguration': {
                'AllowedGroupsColumnName': 'string'
            }
        },
        'SalesforceConfiguration': {
            'ServerUrl': 'string',
            'SecretArn': 'string',
            'StandardObjectConfigurations': [
                {
                    'Name': 'ACCOUNT'|'CAMPAIGN'|'CASE'|'CONTACT'|'CONTRACT'|'DOCUMENT'|'GROUP'|'IDEA'|'LEAD'|'OPPORTUNITY'|'PARTNER'|'PRICEBOOK'|'PRODUCT'|'PROFILE'|'SOLUTION'|'TASK'|'USER',
                    'DocumentDataFieldName': 'string',
                    'DocumentTitleFieldName': 'string',
                    'FieldMappings': [
                        {
                            'DataSourceFieldName': 'string',
                            'DateFieldFormat': 'string',
                            'IndexFieldName': 'string'
                        },
                    ]
                },
            ],
            'KnowledgeArticleConfiguration': {
                'IncludedStates': [
                    'DRAFT'|'PUBLISHED'|'ARCHIVED',
                ],
                'StandardKnowledgeArticleTypeConfiguration': {
                    'DocumentDataFieldName': 'string',
                    'DocumentTitleFieldName': 'string',
                    'FieldMappings': [
                        {
                            'DataSourceFieldName': 'string',
                            'DateFieldFormat': 'string',
                            'IndexFieldName': 'string'
                        },
                    ]
                },
                'CustomKnowledgeArticleTypeConfigurations': [
                    {
                        'Name': 'string',
                        'DocumentDataFieldName': 'string',
                        'DocumentTitleFieldName': 'string',
                        'FieldMappings': [
                            {
                                'DataSourceFieldName': 'string',
                                'DateFieldFormat': 'string',
                                'IndexFieldName': 'string'
                            },
                        ]
                    },
                ]
            },
            'ChatterFeedConfiguration': {
                'DocumentDataFieldName': 'string',
                'DocumentTitleFieldName': 'string',
                'FieldMappings': [
                    {
                        'DataSourceFieldName': 'string',
                        'DateFieldFormat': 'string',
                        'IndexFieldName': 'string'
                    },
                ],
                'IncludeFilterTypes': [
                    'ACTIVE_USER'|'STANDARD_USER',
                ]
            },
            'CrawlAttachments': True|False,
            'StandardObjectAttachmentConfiguration': {
                'DocumentTitleFieldName': 'string',
                'FieldMappings': [
                    {
                        'DataSourceFieldName': 'string',
                        'DateFieldFormat': 'string',
                        'IndexFieldName': 'string'
                    },
                ]
            },
            'IncludeAttachmentFilePatterns': [
                'string',
            ],
            'ExcludeAttachmentFilePatterns': [
                'string',
            ]
        },
        'OneDriveConfiguration': {
            'TenantDomain': 'string',
            'SecretArn': 'string',
            'OneDriveUsers': {
                'OneDriveUserList': [
                    'string',
                ],
                'OneDriveUserS3Path': {
                    'Bucket': 'string',
                    'Key': 'string'
                }
            },
            'InclusionPatterns': [
                'string',
            ],
            'ExclusionPatterns': [
                'string',
            ],
            'FieldMappings': [
                {
                    'DataSourceFieldName': 'string',
                    'DateFieldFormat': 'string',
                    'IndexFieldName': 'string'
                },
            ]
        },
        'ServiceNowConfiguration': {
            'HostUrl': 'string',
            'SecretArn': 'string',
            'ServiceNowBuildVersion': 'LONDON'|'OTHERS',
            'KnowledgeArticleConfiguration': {
                'CrawlAttachments': True|False,
                'IncludeAttachmentFilePatterns': [
                    'string',
                ],
                'ExcludeAttachmentFilePatterns': [
                    'string',
                ],
                'DocumentDataFieldName': 'string',
                'DocumentTitleFieldName': 'string',
                'FieldMappings': [
                    {
                        'DataSourceFieldName': 'string',
                        'DateFieldFormat': 'string',
                        'IndexFieldName': 'string'
                    },
                ]
            },
            'ServiceCatalogConfiguration': {
                'CrawlAttachments': True|False,
                'IncludeAttachmentFilePatterns': [
                    'string',
                ],
                'ExcludeAttachmentFilePatterns': [
                    'string',
                ],
                'DocumentDataFieldName': 'string',
                'DocumentTitleFieldName': 'string',
                'FieldMappings': [
                    {
                        'DataSourceFieldName': 'string',
                        'DateFieldFormat': 'string',
                        'IndexFieldName': 'string'
                    },
                ]
            }
        }
    },
    Description='string',
    Schedule='string',
    RoleArn='string'
)
type Id

string

param Id

[REQUIRED]

The unique identifier of the data source to update.

type Name

string

param Name

The name of the data source to update. The name of the data source can't be updated. To rename a data source you must delete the data source and re-create it.

type IndexId

string

param IndexId

[REQUIRED]

The identifier of the index that contains the data source to update.

type Configuration

dict

param Configuration

Configuration information for a Amazon Kendra data source.

  • S3Configuration (dict) --

    Provides information to create a connector for a document repository in an Amazon S3 bucket.

    • BucketName (string) -- [REQUIRED]

      The name of the bucket that contains the documents.

    • InclusionPrefixes (list) --

      A list of S3 prefixes for the documents that should be included in the index.

      • (string) --

    • ExclusionPatterns (list) --

      A list of glob patterns for documents that should not be indexed. If a document that matches an inclusion prefix also matches an exclusion pattern, the document is not indexed.

      For more information about glob patterns, see glob (programming) in Wikipedia .

      • (string) --

    • DocumentsMetadataConfiguration (dict) --

      Document metadata files that contain information such as the document access control information, source URI, document author, and custom attributes. Each metadata file contains metadata about a single document.

      • S3Prefix (string) --

        A prefix used to filter metadata configuration files in the AWS S3 bucket. The S3 bucket might contain multiple metadata files. Use S3Prefix to include only the desired metadata files.

    • AccessControlListConfiguration (dict) --

      Provides the path to the S3 bucket that contains the user context filtering files for the data source.

      • KeyPath (string) --

        Path to the AWS S3 bucket that contains the ACL files.

  • SharePointConfiguration (dict) --

    Provides information necessary to create a connector for a Microsoft SharePoint site.

    • SharePointVersion (string) -- [REQUIRED]

      The version of Microsoft SharePoint that you are using as a data source.

    • Urls (list) -- [REQUIRED]

      The URLs of the Microsoft SharePoint site that contains the documents that should be indexed.

      • (string) --

    • SecretArn (string) -- [REQUIRED]

      The Amazon Resource Name (ARN) of credentials stored in AWS Secrets Manager. The credentials should be a user/password pair. For more information, see Using a Microsoft SharePoint Data Source. For more information about AWS Secrets Manager, see What Is AWS Secrets Manager in the AWS Secrets Manager user guide.

    • CrawlAttachments (boolean) --

      TRUE to include attachments to documents stored in your Microsoft SharePoint site in the index; otherwise, FALSE .

    • UseChangeLog (boolean) --

      Set to TRUE to use the Microsoft SharePoint change log to determine the documents that need to be updated in the index. Depending on the size of the SharePoint change log, it may take longer for Amazon Kendra to use the change log than it takes it to determine the changed documents using the Amazon Kendra document crawler.

    • InclusionPatterns (list) --

      A list of regular expression patterns. Documents that match the patterns are included in the index. Documents that don't match the patterns are excluded from the index. If a document matches both an inclusion pattern and an exclusion pattern, the document is not included in the index.

      The regex is applied to the display URL of the SharePoint document.

      • (string) --

    • ExclusionPatterns (list) --

      A list of regulary expression patterns. Documents that match the patterns are excluded from the index. Documents that don't match the patterns are included in the index. If a document matches both an exclusion pattern and an inclusion pattern, the document is not included in the index.

      The regex is applied to the display URL of the SharePoint document.

      • (string) --

    • VpcConfiguration (dict) --

      Provides information for connecting to an Amazon VPC.

      • SubnetIds (list) -- [REQUIRED]

        A list of identifiers for subnets within your Amazon VPC. The subnets should be able to connect to each other in the VPC, and they should have outgoing access to the Internet through a NAT device.

        • (string) --

      • SecurityGroupIds (list) -- [REQUIRED]

        A list of identifiers of security groups within your Amazon VPC. The security groups should enable Amazon Kendra to connect to the data source.

        • (string) --

    • FieldMappings (list) --

      A list of DataSourceToIndexFieldMapping objects that map Microsoft SharePoint attributes to custom fields in the Amazon Kendra index. You must first create the index fields using the operation before you map SharePoint attributes. For more information, see Mapping Data Source Fields.

      • (dict) --

        Maps a column or attribute in the data source to an index field. You must first create the fields in the index using the UpdateIndex operation.

        • DataSourceFieldName (string) -- [REQUIRED]

          The name of the column or attribute in the data source.

        • DateFieldFormat (string) --

          The type of data stored in the column or attribute.

        • IndexFieldName (string) -- [REQUIRED]

          The name of the field in the index.

    • DocumentTitleFieldName (string) --

      The Microsoft SharePoint attribute field that contains the title of the document.

  • DatabaseConfiguration (dict) --

    Provides information necessary to create a connector for a database.

    • DatabaseEngineType (string) -- [REQUIRED]

      The type of database engine that runs the database.

    • ConnectionConfiguration (dict) -- [REQUIRED]

      The information necessary to connect to a database.

      • DatabaseHost (string) -- [REQUIRED]

        The name of the host for the database. Can be either a string (host.subdomain.domain.tld) or an IPv4 or IPv6 address.

      • DatabasePort (integer) -- [REQUIRED]

        The port that the database uses for connections.

      • DatabaseName (string) -- [REQUIRED]

        The name of the database containing the document data.

      • TableName (string) -- [REQUIRED]

        The name of the table that contains the document data.

      • SecretArn (string) -- [REQUIRED]

        The Amazon Resource Name (ARN) of credentials stored in AWS Secrets Manager. The credentials should be a user/password pair. For more information, see Using a Database Data Source. For more information about AWS Secrets Manager, see What Is AWS Secrets Manager in the AWS Secrets Manager user guide.

    • VpcConfiguration (dict) --

      Provides information for connecting to an Amazon VPC.

      • SubnetIds (list) -- [REQUIRED]

        A list of identifiers for subnets within your Amazon VPC. The subnets should be able to connect to each other in the VPC, and they should have outgoing access to the Internet through a NAT device.

        • (string) --

      • SecurityGroupIds (list) -- [REQUIRED]

        A list of identifiers of security groups within your Amazon VPC. The security groups should enable Amazon Kendra to connect to the data source.

        • (string) --

    • ColumnConfiguration (dict) -- [REQUIRED]

      Information about where the index should get the document information from the database.

      • DocumentIdColumnName (string) -- [REQUIRED]

        The column that provides the document's unique identifier.

      • DocumentDataColumnName (string) -- [REQUIRED]

        The column that contains the contents of the document.

      • DocumentTitleColumnName (string) --

        The column that contains the title of the document.

      • FieldMappings (list) --

        An array of objects that map database column names to the corresponding fields in an index. You must first create the fields in the index using the UpdateIndex operation.

        • (dict) --

          Maps a column or attribute in the data source to an index field. You must first create the fields in the index using the UpdateIndex operation.

          • DataSourceFieldName (string) -- [REQUIRED]

            The name of the column or attribute in the data source.

          • DateFieldFormat (string) --

            The type of data stored in the column or attribute.

          • IndexFieldName (string) -- [REQUIRED]

            The name of the field in the index.

      • ChangeDetectingColumns (list) -- [REQUIRED]

        One to five columns that indicate when a document in the database has changed.

        • (string) --

    • AclConfiguration (dict) --

      Information about the database column that provides information for user context filtering.

      • AllowedGroupsColumnName (string) -- [REQUIRED]

        A list of groups, separated by semi-colons, that filters a query response based on user context. The document is only returned to users that are in one of the groups specified in the UserContext field of the Query operation.

  • SalesforceConfiguration (dict) --

    Provides configuration information for data sources that connect to a Salesforce site.

    • ServerUrl (string) -- [REQUIRED]

      The instance URL for the Salesforce site that you want to index.

    • SecretArn (string) -- [REQUIRED]

      The Amazon Resource Name (ARN) of an AWS Secrets Manager secret that contains the key/value pairs required to connect to your Salesforce instance. The secret must contain a JSON structure with the following keys:

      • authenticationUrl - The OAUTH endpoint that Amazon Kendra connects to get an OAUTH token.

      • consumerKey - The application public key generated when you created your Salesforce application.

      • consumerSecret - The application private key generated when you created your Salesforce application.

      • password - The password associated with the user logging in to the Salesforce instance.

      • securityToken - The token associated with the user account logging in to the Salesforce instance.

      • username - The user name of the user logging in to the Salesforce instance.

    • StandardObjectConfigurations (list) --

      Specifies the Salesforce standard objects that Amazon Kendra indexes.

      • (dict) --

        Specifies confguration information for indexing a single standard object.

        • Name (string) -- [REQUIRED]

          The name of the standard object.

        • DocumentDataFieldName (string) -- [REQUIRED]

          The name of the field in the standard object table that contains the document contents.

        • DocumentTitleFieldName (string) --

          The name of the field in the standard object table that contains the document titleB.

        • FieldMappings (list) --

          One or more objects that map fields in the standard object to Amazon Kendra index fields. The index field must exist before you can map a Salesforce field to it.

          • (dict) --

            Maps a column or attribute in the data source to an index field. You must first create the fields in the index using the UpdateIndex operation.

            • DataSourceFieldName (string) -- [REQUIRED]

              The name of the column or attribute in the data source.

            • DateFieldFormat (string) --

              The type of data stored in the column or attribute.

            • IndexFieldName (string) -- [REQUIRED]

              The name of the field in the index.

    • KnowledgeArticleConfiguration (dict) --

      Specifies configuration information for the knowlege article types that Amazon Kendra indexes. Amazon Kendra indexes standard knowledge articles and the standard fields of knowledge articles, or the custom fields of custom knowledge articles, but not both.

      • IncludedStates (list) -- [REQUIRED]

        Specifies the document states that should be included when Amazon Kendra indexes knowledge articles. You must specify at least one state.

        • (string) --

      • StandardKnowledgeArticleTypeConfiguration (dict) --

        Provides configuration information for standard Salesforce knowledge articles.

        • DocumentDataFieldName (string) -- [REQUIRED]

          The name of the field that contains the document data to index.

        • DocumentTitleFieldName (string) --

          The name of the field that contains the document title.

        • FieldMappings (list) --

          One or more objects that map fields in the knowledge article to Amazon Kendra index fields. The index field must exist before you can map a Salesforce field to it.

          • (dict) --

            Maps a column or attribute in the data source to an index field. You must first create the fields in the index using the UpdateIndex operation.

            • DataSourceFieldName (string) -- [REQUIRED]

              The name of the column or attribute in the data source.

            • DateFieldFormat (string) --

              The type of data stored in the column or attribute.

            • IndexFieldName (string) -- [REQUIRED]

              The name of the field in the index.

      • CustomKnowledgeArticleTypeConfigurations (list) --

        Provides configuration information for custom Salesforce knowledge articles.

        • (dict) --

          Provides configuration information for indexing Salesforce custom articles.

          • Name (string) -- [REQUIRED]

            The name of the configuration.

          • DocumentDataFieldName (string) -- [REQUIRED]

            The name of the field in the custom knowledge article that contains the document data to index.

          • DocumentTitleFieldName (string) --

            The name of the field in the custom knowledge article that contains the document title.

          • FieldMappings (list) --

            One or more objects that map fields in the custom knowledge article to fields in the Amazon Kendra index.

            • (dict) --

              Maps a column or attribute in the data source to an index field. You must first create the fields in the index using the UpdateIndex operation.

              • DataSourceFieldName (string) -- [REQUIRED]

                The name of the column or attribute in the data source.

              • DateFieldFormat (string) --

                The type of data stored in the column or attribute.

              • IndexFieldName (string) -- [REQUIRED]

                The name of the field in the index.

    • ChatterFeedConfiguration (dict) --

      Specifies configuration information for Salesforce chatter feeds.

      • DocumentDataFieldName (string) -- [REQUIRED]

        The name of the column in the Salesforce FeedItem table that contains the content to index. Typically this is the Body column.

      • DocumentTitleFieldName (string) --

        The name of the column in the Salesforce FeedItem table that contains the title of the document. This is typically the Title collumn.

      • FieldMappings (list) --

        Maps fields from a Salesforce chatter feed into Amazon Kendra index fields.

        • (dict) --

          Maps a column or attribute in the data source to an index field. You must first create the fields in the index using the UpdateIndex operation.

          • DataSourceFieldName (string) -- [REQUIRED]

            The name of the column or attribute in the data source.

          • DateFieldFormat (string) --

            The type of data stored in the column or attribute.

          • IndexFieldName (string) -- [REQUIRED]

            The name of the field in the index.

      • IncludeFilterTypes (list) --

        Filters the documents in the feed based on status of the user. When you specify ACTIVE_USERS only documents from users who have an active account are indexed. When you specify STANDARD_USER only documents for Salesforce standard users are documented. You can specify both.

        • (string) --

    • CrawlAttachments (boolean) --

      Indicates whether Amazon Kendra should index attachments to Salesforce objects.

    • StandardObjectAttachmentConfiguration (dict) --

      Provides configuration information for processing attachments to Salesforce standard objects.

      • DocumentTitleFieldName (string) --

        The name of the field used for the document title.

      • FieldMappings (list) --

        One or more objects that map fields in attachments to Amazon Kendra index fields.

        • (dict) --

          Maps a column or attribute in the data source to an index field. You must first create the fields in the index using the UpdateIndex operation.

          • DataSourceFieldName (string) -- [REQUIRED]

            The name of the column or attribute in the data source.

          • DateFieldFormat (string) --

            The type of data stored in the column or attribute.

          • IndexFieldName (string) -- [REQUIRED]

            The name of the field in the index.

    • IncludeAttachmentFilePatterns (list) --

      A list of regular expression patterns. Documents that match the patterns are included in the index. Documents that don't match the patterns are excluded from the index. If a document matches both an inclusion pattern and an exclusion pattern, the document is not included in the index.

      The regex is applied to the name of the attached file.

      • (string) --

    • ExcludeAttachmentFilePatterns (list) --

      A list of regular expression patterns. Documents that match the patterns are excluded from the index. Documents that don't match the patterns are included in the index. If a document matches both an exclusion pattern and an inclusion pattern, the document is not included in the index.

      The regex is applied to the name of the attached file.

      • (string) --

  • OneDriveConfiguration (dict) --

    Provided configuration for data sources that connect to Microsoft OneDrive.

    • TenantDomain (string) -- [REQUIRED]

      Tha Azure Active Directory domain of the organization.

    • SecretArn (string) -- [REQUIRED]

      The Amazon Resource Name (ARN) of an AWS Secrets Manager secret that contains the user name and password to connect to OneDrive. The user namd should be the application ID for the OneDrive application, and the password is the application key for the OneDrive application.

    • OneDriveUsers (dict) -- [REQUIRED]

      A list of user accounts whose documents should be indexed.

      • OneDriveUserList (list) --

        A list of users whose documents should be indexed. Specify the user names in email format, for example, username@tenantdomain . If you need to index the documents of more than 100 users, use the OneDriveUserS3Path field to specify the location of a file containing a list of users.

        • (string) --

      • OneDriveUserS3Path (dict) --

        The S3 bucket location of a file containing a list of users whose documents should be indexed.

        • Bucket (string) -- [REQUIRED]

          The name of the S3 bucket that contains the file.

        • Key (string) -- [REQUIRED]

          The name of the file.

    • InclusionPatterns (list) --

      A list of regular expression patterns. Documents that match the pattern are included in the index. Documents that don't match the pattern are excluded from the index. If a document matches both an inclusion pattern and an exclusion pattern, the document is not included in the index.

      The exclusion pattern is applied to the file name.

      • (string) --

    • ExclusionPatterns (list) --

      List of regular expressions applied to documents. Items that match the exclusion pattern are not indexed. If you provide both an inclusion pattern and an exclusion pattern, any item that matches the exclusion pattern isn't indexed.

      The exclusion pattern is applied to the file name.

      • (string) --

    • FieldMappings (list) --

      A list of DataSourceToIndexFieldMapping objects that map Microsoft OneDrive fields to custom fields in the Amazon Kendra index. You must first create the index fields before you map OneDrive fields.

      • (dict) --

        Maps a column or attribute in the data source to an index field. You must first create the fields in the index using the UpdateIndex operation.

        • DataSourceFieldName (string) -- [REQUIRED]

          The name of the column or attribute in the data source.

        • DateFieldFormat (string) --

          The type of data stored in the column or attribute.

        • IndexFieldName (string) -- [REQUIRED]

          The name of the field in the index.

  • ServiceNowConfiguration (dict) --

    Provides configuration for data sources that connect to ServiceNow instances.

    • HostUrl (string) -- [REQUIRED]

      The ServiceNow instance that the data source connects to. The host endpoint should look like the following: {instance}.service-now.com.

    • SecretArn (string) -- [REQUIRED]

      The Amazon Resource Name (ARN) of the AWS Secret Manager secret that contains the user name and password required to connect to the ServiceNow instance.

    • ServiceNowBuildVersion (string) -- [REQUIRED]

      The identifier of the release that the ServiceNow host is running. If the host is not running the LONDON release, use OTHERS .

    • KnowledgeArticleConfiguration (dict) --

      Provides configuration information for crawling knowledge articles in the ServiceNow site.

      • CrawlAttachments (boolean) --

        Indicates whether Amazon Kendra should index attachments to knowledge articles.

      • IncludeAttachmentFilePatterns (list) --

        List of regular expressions applied to knowledge articles. Items that don't match the inclusion pattern are not indexed. The regex is applied to the field specified in the PatternTargetField .

        • (string) --

      • ExcludeAttachmentFilePatterns (list) --

        List of regular expressions applied to knowledge articles. Items that don't match the inclusion pattern are not indexed. The regex is applied to the field specified in the PatternTargetField

        • (string) --

      • DocumentDataFieldName (string) -- [REQUIRED]

        The name of the ServiceNow field that is mapped to the index document contents field in the Amazon Kendra index.

      • DocumentTitleFieldName (string) --

        The name of the ServiceNow field that is mapped to the index document title field.

      • FieldMappings (list) --

        Mapping between ServiceNow fields and Amazon Kendra index fields. You must create the index field before you map the field.

        • (dict) --

          Maps a column or attribute in the data source to an index field. You must first create the fields in the index using the UpdateIndex operation.

          • DataSourceFieldName (string) -- [REQUIRED]

            The name of the column or attribute in the data source.

          • DateFieldFormat (string) --

            The type of data stored in the column or attribute.

          • IndexFieldName (string) -- [REQUIRED]

            The name of the field in the index.

    • ServiceCatalogConfiguration (dict) --

      Provides configuration information for crawling service catalogs in the ServiceNow site.

      • CrawlAttachments (boolean) --

        Indicates whether Amazon Kendra should crawl attachments to the service catalog items.

      • IncludeAttachmentFilePatterns (list) --

        Determines the types of file attachments that are included in the index.

        • (string) --

      • ExcludeAttachmentFilePatterns (list) --

        Determines the types of file attachments that are excluded from the index.

        • (string) --

      • DocumentDataFieldName (string) -- [REQUIRED]

        The name of the ServiceNow field that is mapped to the index document contents field in the Amazon Kendra index.

      • DocumentTitleFieldName (string) --

        The name of the ServiceNow field that is mapped to the index document title field.

      • FieldMappings (list) --

        Mapping between ServiceNow fields and Amazon Kendra index fields. You must create the index field before you map the field.

        • (dict) --

          Maps a column or attribute in the data source to an index field. You must first create the fields in the index using the UpdateIndex operation.

          • DataSourceFieldName (string) -- [REQUIRED]

            The name of the column or attribute in the data source.

          • DateFieldFormat (string) --

            The type of data stored in the column or attribute.

          • IndexFieldName (string) -- [REQUIRED]

            The name of the field in the index.

type Description

string

param Description

The new description for the data source.

type Schedule

string

param Schedule

The new update schedule for the data source.

type RoleArn

string

param RoleArn

The Amazon Resource Name (ARN) of the new role to use when the data source is accessing resources on your behalf.

returns

None

UpdateIndex (updated) Link ¶
Changes (request)
{'CapacityUnits': {'QueryCapacityUnits': 'integer',
                   'StorageCapacityUnits': 'integer'}}

Updates an existing Amazon Kendra index.

See also: AWS API Documentation

Request Syntax

client.update_index(
    Id='string',
    Name='string',
    RoleArn='string',
    Description='string',
    DocumentMetadataConfigurationUpdates=[
        {
            'Name': 'string',
            'Type': 'STRING_VALUE'|'STRING_LIST_VALUE'|'LONG_VALUE'|'DATE_VALUE',
            'Relevance': {
                'Freshness': True|False,
                'Importance': 123,
                'Duration': 'string',
                'RankOrder': 'ASCENDING'|'DESCENDING',
                'ValueImportanceMap': {
                    'string': 123
                }
            },
            'Search': {
                'Facetable': True|False,
                'Searchable': True|False,
                'Displayable': True|False
            }
        },
    ],
    CapacityUnits={
        'StorageCapacityUnits': 123,
        'QueryCapacityUnits': 123
    }
)
type Id

string

param Id

[REQUIRED]

The identifier of the index to update.

type Name

string

param Name

The name of the index to update.

type RoleArn

string

param RoleArn

A new IAM role that gives Amazon Kendra permission to access your Amazon CloudWatch logs.

type Description

string

param Description

A new description for the index.

type DocumentMetadataConfigurationUpdates

list

param DocumentMetadataConfigurationUpdates

The document metadata to update.

  • (dict) --

    Specifies the properties of a custom index field.

    • Name (string) -- [REQUIRED]

      The name of the index field.

    • Type (string) -- [REQUIRED]

      The data type of the index field.

    • Relevance (dict) --

      Provides manual tuning parameters to determine how the field affects the search results.

      • Freshness (boolean) --

        Indicates that this field determines how "fresh" a document is. For example, if document 1 was created on November 5, and document 2 was created on October 31, document 1 is "fresher" than document 2. You can only set the Freshness field on one DATE type field. Only applies to DATE fields.

      • Importance (integer) --

        The relative importance of the field in the search. Larger numbers provide more of a boost than smaller numbers.

      • Duration (string) --

        Specifies the time period that the boost applies to. For example, to make the boost apply to documents with the field value within the last month, you would use "2628000s". Once the field value is beyond the specified range, the effect of the boost drops off. The higher the importance, the faster the effect drops off. If you don't specify a value, the default is 3 months. The value of the field is a numeric string followed by the character "s", for example "86400s" for one day, or "604800s" for one week.

        Only applies to DATE fields.

      • RankOrder (string) --

        Determines how values should be interpreted.

        When the RankOrder field is ASCENDING , higher numbers are better. For example, a document with a rating score of 10 is higher ranking than a document with a rating score of 1.

        When the RankOrder field is DESCENDING , lower numbers are better. For example, in a task tracking application, a priority 1 task is more important than a priority 5 task.

        Only applies to LONG and DOUBLE fields.

      • ValueImportanceMap (dict) --

        A list of values that should be given a different boost when they appear in the result list. For example, if you are boosting a field called "department," query terms that match the department field are boosted in the result. However, you can add entries from the department field to boost documents with those values higher.

        For example, you can add entries to the map with names of departments. If you add "HR",5 and "Legal",3 those departments are given special attention when they appear in the metadata of a document. When those terms appear they are given the specified importance instead of the regular importance for the boost.

        • (string) --

          • (integer) --

    • Search (dict) --

      Provides information about how the field is used during a search.

      • Facetable (boolean) --

        Indicates that the field can be used to create search facets, a count of results for each value in the field. The default is false .

      • Searchable (boolean) --

        Determines whether the field is used in the search. If the Searchable field is true , you can use relevance tuning to manually tune how Amazon Kendra weights the field in the search. The default is true for string fields and false for number and date fields.

      • Displayable (boolean) --

        Determines whether the field is returned in the query response. The default is true .

type CapacityUnits

dict

param CapacityUnits

Sets the number of addtional storage and query capacity units that should be used by the index. You can change the capacity of the index up to 5 times per day.

If you are using extra storage units, you can't reduce the storage capacity below that required to meet the storage needs for your index.

  • StorageCapacityUnits (integer) -- [REQUIRED]

    The amount of extra storage capacity for an index. Each capacity unit provides 150 Gb of storage space or 500,000 documents, whichever is reached first.

  • QueryCapacityUnits (integer) -- [REQUIRED]

    The amount of extra query capacity for an index. Each capacity unit provides 0.5 queries per second and 40,000 queries per day.

returns

None