aws-sdk-kendra 1.45.0 → 1.46.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: df98f363c0b227ace5d4199f721991dab38722d00e52ad91f5de42091e1d792a
4
- data.tar.gz: 1b8e89933aadc1eb88a324d47774bf3c09b907212ebf0034ff2c728b86689374
3
+ metadata.gz: c5205c10b90ac380415aca3028787ff2a5f0ea72d3dec839112932e72d091422
4
+ data.tar.gz: fb44466f44a1b97775868263f6da2e881d1768b913e2ae57f5ae232ed6fd8d3e
5
5
  SHA512:
6
- metadata.gz: cfee3c3f0e44aab9f6be3ddfdbdd63754c42144e8db5454d9b23d88569cb2967d5a870cc4e8e720997af15a3ed465773a424aee3779f7b00ea695db158f669b9
7
- data.tar.gz: c26454ecfc534fdb775f0f3831414efd6a0242a32062eed0cfac905d30796f2b87ed709ae58243d4f6c8454f5213c9ea629f3f44be80b2843d999d8c45400cc2
6
+ metadata.gz: cb856eb198deeff87c3d4ebbe6b600f5c3c212e6615063abc88414441d398bccc2780fd09a70fce8b747d6b05b92c24325ddd19eaca98672a936f945c83b97a9
7
+ data.tar.gz: ef97604ca2ae0cca132b090121491d394c2e4036944e8abb59b172b617ad36db2a5a8a84e1951ef5ef447ebb42962018dd6f44e3e0af9cdfe36c4cb27ea0f570
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.46.0 (2022-03-03)
5
+ ------------------
6
+
7
+ * Feature - Amazon Kendra now suggests spell corrections for a query. For more information, see https://docs.aws.amazon.com/kendra/latest/dg/query-spell-check.html
8
+
4
9
  1.45.0 (2022-02-24)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.45.0
1
+ 1.46.0
@@ -843,7 +843,7 @@ module Aws::Kendra
843
843
  # The type of repository that contains the data source.
844
844
  #
845
845
  # @option params [Types::DataSourceConfiguration] :configuration
846
- # The connector configuration information that is required to access the
846
+ # Configuration information that is required to access the data source
847
847
  # repository.
848
848
  #
849
849
  # You can't specify the `Configuration` parameter when the `Type`
@@ -1363,11 +1363,11 @@ module Aws::Kendra
1363
1363
  # [1]: https://docs.aws.amazon.com/kendra/latest/dg/iam-roles.html
1364
1364
  #
1365
1365
  # @option params [Types::ExperienceConfiguration] :configuration
1366
- # Provides the configuration information for your Amazon Kendra
1367
- # experience. This includes `ContentSourceConfiguration`, which
1368
- # specifies the data source IDs and/or FAQ IDs, and
1369
- # `UserIdentityConfiguration`, which specifies the user or group
1370
- # information to grant access to your Amazon Kendra experience.
1366
+ # Configuration information for your Amazon Kendra experience. This
1367
+ # includes `ContentSourceConfiguration`, which specifies the data source
1368
+ # IDs and/or FAQ IDs, and `UserIdentityConfiguration`, which specifies
1369
+ # the user or group information to grant access to your Amazon Kendra
1370
+ # experience.
1371
1371
  #
1372
1372
  # @option params [String] :description
1373
1373
  # A description for your Amazon Kendra experience.
@@ -3892,6 +3892,9 @@ module Aws::Kendra
3892
3892
  # identifiable information, such as the user's email address, as the
3893
3893
  # `VisitorId`.
3894
3894
  #
3895
+ # @option params [Types::SpellCorrectionConfiguration] :spell_correction_configuration
3896
+ # Enables suggested spell corrections for queries.
3897
+ #
3895
3898
  # @return [Types::QueryResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3896
3899
  #
3897
3900
  # * {Types::QueryResult#query_id #query_id} => String
@@ -3899,6 +3902,7 @@ module Aws::Kendra
3899
3902
  # * {Types::QueryResult#facet_results #facet_results} => Array<Types::FacetResult>
3900
3903
  # * {Types::QueryResult#total_number_of_results #total_number_of_results} => Integer
3901
3904
  # * {Types::QueryResult#warnings #warnings} => Array<Types::Warning>
3905
+ # * {Types::QueryResult#spell_corrected_queries #spell_corrected_queries} => Array<Types::SpellCorrectedQuery>
3902
3906
  #
3903
3907
  # @example Request syntax with placeholder values
3904
3908
  #
@@ -4022,6 +4026,9 @@ module Aws::Kendra
4022
4026
  # ],
4023
4027
  # },
4024
4028
  # visitor_id: "VisitorId",
4029
+ # spell_correction_configuration: {
4030
+ # include_query_spell_check_suggestions: false, # required
4031
+ # },
4025
4032
  # })
4026
4033
  #
4027
4034
  # @example Response structure
@@ -4076,6 +4083,13 @@ module Aws::Kendra
4076
4083
  # resp.warnings #=> Array
4077
4084
  # resp.warnings[0].message #=> String
4078
4085
  # resp.warnings[0].code #=> String, one of "QUERY_LANGUAGE_INVALID_SYNTAX"
4086
+ # resp.spell_corrected_queries #=> Array
4087
+ # resp.spell_corrected_queries[0].suggested_query_text #=> String
4088
+ # resp.spell_corrected_queries[0].corrections #=> Array
4089
+ # resp.spell_corrected_queries[0].corrections[0].begin_offset #=> Integer
4090
+ # resp.spell_corrected_queries[0].corrections[0].end_offset #=> Integer
4091
+ # resp.spell_corrected_queries[0].corrections[0].term #=> String
4092
+ # resp.spell_corrected_queries[0].corrections[0].corrected_term #=> String
4079
4093
  #
4080
4094
  # @see http://docs.aws.amazon.com/goto/WebAPI/kendra-2019-02-03/Query AWS API Documentation
4081
4095
  #
@@ -4276,7 +4290,8 @@ module Aws::Kendra
4276
4290
  # The identifier of the index that contains the data source to update.
4277
4291
  #
4278
4292
  # @option params [Types::DataSourceConfiguration] :configuration
4279
- # Configuration information for an Amazon Kendra data source.
4293
+ # Configuration information for an Amazon Kendra data source you want to
4294
+ # update.
4280
4295
  #
4281
4296
  # @option params [String] :description
4282
4297
  # The new description for the data source.
@@ -4749,9 +4764,7 @@ module Aws::Kendra
4749
4764
  # [1]: https://docs.aws.amazon.com/kendra/latest/dg/iam-roles.html
4750
4765
  #
4751
4766
  # @option params [Types::ExperienceConfiguration] :configuration
4752
- # Provides the user configuration information. This includes the Amazon
4753
- # Web Services SSO field name that contains the identifiers of your
4754
- # users, such as their emails.
4767
+ # Configuration information for your Amazon Kendra you want to update.
4755
4768
  #
4756
4769
  # @option params [String] :description
4757
4770
  # The description of your Amazon Kendra experience you want to update.
@@ -4803,7 +4816,7 @@ module Aws::Kendra
4803
4816
  # A new description for the index.
4804
4817
  #
4805
4818
  # @option params [Array<Types::DocumentMetadataConfiguration>] :document_metadata_configuration_updates
4806
- # The document metadata to update.
4819
+ # The document metadata you want to update.
4807
4820
  #
4808
4821
  # @option params [Types::CapacityUnitsConfiguration] :capacity_units
4809
4822
  # Sets the number of additional storage and query capacity units that
@@ -5119,7 +5132,7 @@ module Aws::Kendra
5119
5132
  params: params,
5120
5133
  config: config)
5121
5134
  context[:gem_name] = 'aws-sdk-kendra'
5122
- context[:gem_version] = '1.45.0'
5135
+ context[:gem_version] = '1.46.0'
5123
5136
  Seahorse::Client::Request.new(handlers, context)
5124
5137
  end
5125
5138
 
@@ -80,6 +80,8 @@ module Aws::Kendra
80
80
  ConnectionConfiguration = Shapes::StructureShape.new(name: 'ConnectionConfiguration')
81
81
  ContentSourceConfiguration = Shapes::StructureShape.new(name: 'ContentSourceConfiguration')
82
82
  ContentType = Shapes::StringShape.new(name: 'ContentType')
83
+ Correction = Shapes::StructureShape.new(name: 'Correction')
84
+ CorrectionList = Shapes::ListShape.new(name: 'CorrectionList')
83
85
  CrawlDepth = Shapes::IntegerShape.new(name: 'CrawlDepth')
84
86
  CreateDataSourceRequest = Shapes::StructureShape.new(name: 'CreateDataSourceRequest')
85
87
  CreateDataSourceResponse = Shapes::StructureShape.new(name: 'CreateDataSourceResponse')
@@ -411,6 +413,9 @@ module Aws::Kendra
411
413
  SnapshotsDataRecords = Shapes::ListShape.new(name: 'SnapshotsDataRecords')
412
414
  SortOrder = Shapes::StringShape.new(name: 'SortOrder')
413
415
  SortingConfiguration = Shapes::StructureShape.new(name: 'SortingConfiguration')
416
+ SpellCorrectedQuery = Shapes::StructureShape.new(name: 'SpellCorrectedQuery')
417
+ SpellCorrectedQueryList = Shapes::ListShape.new(name: 'SpellCorrectedQueryList')
418
+ SpellCorrectionConfiguration = Shapes::StructureShape.new(name: 'SpellCorrectionConfiguration')
414
419
  SqlConfiguration = Shapes::StructureShape.new(name: 'SqlConfiguration')
415
420
  StartDataSourceSyncJobRequest = Shapes::StructureShape.new(name: 'StartDataSourceSyncJobRequest')
416
421
  StartDataSourceSyncJobResponse = Shapes::StructureShape.new(name: 'StartDataSourceSyncJobResponse')
@@ -421,6 +426,7 @@ module Aws::Kendra
421
426
  SubmitFeedbackRequest = Shapes::StructureShape.new(name: 'SubmitFeedbackRequest')
422
427
  SubnetId = Shapes::StringShape.new(name: 'SubnetId')
423
428
  SubnetIdList = Shapes::ListShape.new(name: 'SubnetIdList')
429
+ SuggestedQueryText = Shapes::StringShape.new(name: 'SuggestedQueryText')
424
430
  Suggestion = Shapes::StructureShape.new(name: 'Suggestion')
425
431
  SuggestionHighlight = Shapes::StructureShape.new(name: 'SuggestionHighlight')
426
432
  SuggestionHighlightList = Shapes::ListShape.new(name: 'SuggestionHighlightList')
@@ -687,6 +693,14 @@ module Aws::Kendra
687
693
  ContentSourceConfiguration.add_member(:direct_put_content, Shapes::ShapeRef.new(shape: Boolean, location_name: "DirectPutContent"))
688
694
  ContentSourceConfiguration.struct_class = Types::ContentSourceConfiguration
689
695
 
696
+ Correction.add_member(:begin_offset, Shapes::ShapeRef.new(shape: Integer, location_name: "BeginOffset"))
697
+ Correction.add_member(:end_offset, Shapes::ShapeRef.new(shape: Integer, location_name: "EndOffset"))
698
+ Correction.add_member(:term, Shapes::ShapeRef.new(shape: String, location_name: "Term"))
699
+ Correction.add_member(:corrected_term, Shapes::ShapeRef.new(shape: String, location_name: "CorrectedTerm"))
700
+ Correction.struct_class = Types::Correction
701
+
702
+ CorrectionList.member = Shapes::ShapeRef.new(shape: Correction)
703
+
690
704
  CreateDataSourceRequest.add_member(:name, Shapes::ShapeRef.new(shape: DataSourceName, required: true, location_name: "Name"))
691
705
  CreateDataSourceRequest.add_member(:index_id, Shapes::ShapeRef.new(shape: IndexId, required: true, location_name: "IndexId"))
692
706
  CreateDataSourceRequest.add_member(:type, Shapes::ShapeRef.new(shape: DataSourceType, required: true, location_name: "Type"))
@@ -1480,6 +1494,7 @@ module Aws::Kendra
1480
1494
  QueryRequest.add_member(:sorting_configuration, Shapes::ShapeRef.new(shape: SortingConfiguration, location_name: "SortingConfiguration"))
1481
1495
  QueryRequest.add_member(:user_context, Shapes::ShapeRef.new(shape: UserContext, location_name: "UserContext"))
1482
1496
  QueryRequest.add_member(:visitor_id, Shapes::ShapeRef.new(shape: VisitorId, location_name: "VisitorId"))
1497
+ QueryRequest.add_member(:spell_correction_configuration, Shapes::ShapeRef.new(shape: SpellCorrectionConfiguration, location_name: "SpellCorrectionConfiguration"))
1483
1498
  QueryRequest.struct_class = Types::QueryRequest
1484
1499
 
1485
1500
  QueryResult.add_member(:query_id, Shapes::ShapeRef.new(shape: QueryId, location_name: "QueryId"))
@@ -1487,6 +1502,7 @@ module Aws::Kendra
1487
1502
  QueryResult.add_member(:facet_results, Shapes::ShapeRef.new(shape: FacetResultList, location_name: "FacetResults"))
1488
1503
  QueryResult.add_member(:total_number_of_results, Shapes::ShapeRef.new(shape: Integer, location_name: "TotalNumberOfResults"))
1489
1504
  QueryResult.add_member(:warnings, Shapes::ShapeRef.new(shape: WarningList, location_name: "Warnings"))
1505
+ QueryResult.add_member(:spell_corrected_queries, Shapes::ShapeRef.new(shape: SpellCorrectedQueryList, location_name: "SpellCorrectedQueries"))
1490
1506
  QueryResult.struct_class = Types::QueryResult
1491
1507
 
1492
1508
  QueryResultItem.add_member(:id, Shapes::ShapeRef.new(shape: ResultId, location_name: "Id"))
@@ -1680,6 +1696,15 @@ module Aws::Kendra
1680
1696
  SortingConfiguration.add_member(:sort_order, Shapes::ShapeRef.new(shape: SortOrder, required: true, location_name: "SortOrder"))
1681
1697
  SortingConfiguration.struct_class = Types::SortingConfiguration
1682
1698
 
1699
+ SpellCorrectedQuery.add_member(:suggested_query_text, Shapes::ShapeRef.new(shape: SuggestedQueryText, location_name: "SuggestedQueryText"))
1700
+ SpellCorrectedQuery.add_member(:corrections, Shapes::ShapeRef.new(shape: CorrectionList, location_name: "Corrections"))
1701
+ SpellCorrectedQuery.struct_class = Types::SpellCorrectedQuery
1702
+
1703
+ SpellCorrectedQueryList.member = Shapes::ShapeRef.new(shape: SpellCorrectedQuery)
1704
+
1705
+ SpellCorrectionConfiguration.add_member(:include_query_spell_check_suggestions, Shapes::ShapeRef.new(shape: Boolean, required: true, location_name: "IncludeQuerySpellCheckSuggestions"))
1706
+ SpellCorrectionConfiguration.struct_class = Types::SpellCorrectionConfiguration
1707
+
1683
1708
  SqlConfiguration.add_member(:query_identifiers_enclosing_option, Shapes::ShapeRef.new(shape: QueryIdentifiersEnclosingOption, location_name: "QueryIdentifiersEnclosingOption"))
1684
1709
  SqlConfiguration.struct_class = Types::SqlConfiguration
1685
1710
 
@@ -1397,8 +1397,8 @@ module Aws::Kendra
1397
1397
  include Aws::Structure
1398
1398
  end
1399
1399
 
1400
- # Provides configuration information for data sources that connect to
1401
- # Confluence.
1400
+ # Provides the configuration information to connect to Confluence as
1401
+ # your data source.
1402
1402
  #
1403
1403
  # @note When making an API call, you may pass ConfluenceConfiguration
1404
1404
  # data as a hash:
@@ -1721,7 +1721,8 @@ module Aws::Kendra
1721
1721
  include Aws::Structure
1722
1722
  end
1723
1723
 
1724
- # Provides the information necessary to connect to a database.
1724
+ # Provides the configuration information that's required to connect to
1725
+ # a database.
1725
1726
  #
1726
1727
  # @note When making an API call, you may pass ConnectionConfiguration
1727
1728
  # data as a hash:
@@ -1776,8 +1777,9 @@ module Aws::Kendra
1776
1777
  include Aws::Structure
1777
1778
  end
1778
1779
 
1779
- # Configuration information for your content sources, such as data
1780
- # sources, FAQs, and content indexed directly via [BatchPutDocument][1].
1780
+ # Provides the configuration information for your content sources, such
1781
+ # as data sources, FAQs, and content indexed directly via
1782
+ # [BatchPutDocument][1].
1781
1783
  #
1782
1784
  #
1783
1785
  #
@@ -1817,6 +1819,37 @@ module Aws::Kendra
1817
1819
  include Aws::Structure
1818
1820
  end
1819
1821
 
1822
+ # A corrected misspelled word in a query.
1823
+ #
1824
+ # @!attribute [rw] begin_offset
1825
+ # The zero-based location in the response string or text where the
1826
+ # corrected word starts.
1827
+ # @return [Integer]
1828
+ #
1829
+ # @!attribute [rw] end_offset
1830
+ # The zero-based location in the response string or text where the
1831
+ # corrected word ends.
1832
+ # @return [Integer]
1833
+ #
1834
+ # @!attribute [rw] term
1835
+ # The string or text of a misspelled word in a query.
1836
+ # @return [String]
1837
+ #
1838
+ # @!attribute [rw] corrected_term
1839
+ # The string or text of a corrected misspelled word in a query.
1840
+ # @return [String]
1841
+ #
1842
+ # @see http://docs.aws.amazon.com/goto/WebAPI/kendra-2019-02-03/Correction AWS API Documentation
1843
+ #
1844
+ class Correction < Struct.new(
1845
+ :begin_offset,
1846
+ :end_offset,
1847
+ :term,
1848
+ :corrected_term)
1849
+ SENSITIVE = []
1850
+ include Aws::Structure
1851
+ end
1852
+
1820
1853
  # @note When making an API call, you may pass CreateDataSourceRequest
1821
1854
  # data as a hash:
1822
1855
  #
@@ -2238,8 +2271,8 @@ module Aws::Kendra
2238
2271
  # @return [String]
2239
2272
  #
2240
2273
  # @!attribute [rw] configuration
2241
- # The connector configuration information that is required to access
2242
- # the repository.
2274
+ # Configuration information that is required to access the data source
2275
+ # repository.
2243
2276
  #
2244
2277
  # You can't specify the `Configuration` parameter when the `Type`
2245
2278
  # parameter is set to `CUSTOM`. If you do, you receive a
@@ -2392,11 +2425,11 @@ module Aws::Kendra
2392
2425
  # @return [String]
2393
2426
  #
2394
2427
  # @!attribute [rw] configuration
2395
- # Provides the configuration information for your Amazon Kendra
2396
- # experience. This includes `ContentSourceConfiguration`, which
2397
- # specifies the data source IDs and/or FAQ IDs, and
2398
- # `UserIdentityConfiguration`, which specifies the user or group
2399
- # information to grant access to your Amazon Kendra experience.
2428
+ # Configuration information for your Amazon Kendra experience. This
2429
+ # includes `ContentSourceConfiguration`, which specifies the data
2430
+ # source IDs and/or FAQ IDs, and `UserIdentityConfiguration`, which
2431
+ # specifies the user or group information to grant access to your
2432
+ # Amazon Kendra experience.
2400
2433
  # @return [Types::ExperienceConfiguration]
2401
2434
  #
2402
2435
  # @!attribute [rw] description
@@ -3022,7 +3055,8 @@ module Aws::Kendra
3022
3055
  include Aws::Structure
3023
3056
  end
3024
3057
 
3025
- # Configuration information for an Amazon Kendra data source.
3058
+ # Provides the configuration information for an Amazon Kendra data
3059
+ # source.
3026
3060
  #
3027
3061
  # @note When making an API call, you may pass DataSourceConfiguration
3028
3062
  # data as a hash:
@@ -3359,33 +3393,33 @@ module Aws::Kendra
3359
3393
  # }
3360
3394
  #
3361
3395
  # @!attribute [rw] s3_configuration
3362
- # Provides information to create a data source connector for a
3363
- # document repository in an Amazon S3 bucket.
3396
+ # Provides the configuration information to connect to an Amazon S3
3397
+ # bucket as your data source.
3364
3398
  # @return [Types::S3DataSourceConfiguration]
3365
3399
  #
3366
3400
  # @!attribute [rw] share_point_configuration
3367
- # Provides information necessary to create a data source connector for
3368
- # a Microsoft SharePoint site.
3401
+ # Provides the configuration information to connect to Microsoft
3402
+ # SharePoint as your data source.
3369
3403
  # @return [Types::SharePointConfiguration]
3370
3404
  #
3371
3405
  # @!attribute [rw] database_configuration
3372
- # Provides information necessary to create a data source connector for
3373
- # a database.
3406
+ # Provides the configuration information to connect to a database as
3407
+ # your data source.
3374
3408
  # @return [Types::DatabaseConfiguration]
3375
3409
  #
3376
3410
  # @!attribute [rw] salesforce_configuration
3377
- # Provides configuration information for data sources that connect to
3378
- # a Salesforce site.
3411
+ # Provides the configuration information to connect to Salesforce as
3412
+ # your data source.
3379
3413
  # @return [Types::SalesforceConfiguration]
3380
3414
  #
3381
3415
  # @!attribute [rw] one_drive_configuration
3382
- # Provides configuration for data sources that connect to Microsoft
3383
- # OneDrive.
3416
+ # Provides the configuration information to connect to Microsoft
3417
+ # OneDrive as your data source.
3384
3418
  # @return [Types::OneDriveConfiguration]
3385
3419
  #
3386
3420
  # @!attribute [rw] service_now_configuration
3387
- # Provides configuration for data sources that connect to ServiceNow
3388
- # instances.
3421
+ # Provides the configuration information to connect to ServiceNow as
3422
+ # your data source.
3389
3423
  # @return [Types::ServiceNowConfiguration]
3390
3424
  #
3391
3425
  # @!attribute [rw] confluence_configuration
@@ -3394,8 +3428,8 @@ module Aws::Kendra
3394
3428
  # @return [Types::ConfluenceConfiguration]
3395
3429
  #
3396
3430
  # @!attribute [rw] google_drive_configuration
3397
- # Provides configuration for data sources that connect to Google
3398
- # Drive.
3431
+ # Provides the configuration information to connect to Google Drive as
3432
+ # your data source.
3399
3433
  # @return [Types::GoogleDriveConfiguration]
3400
3434
  #
3401
3435
  # @!attribute [rw] web_crawler_configuration
@@ -3685,7 +3719,7 @@ module Aws::Kendra
3685
3719
  include Aws::Structure
3686
3720
  end
3687
3721
 
3688
- # Provides information for connecting to an Amazon VPC.
3722
+ # Provides the configuration information to connect to an Amazon VPC.
3689
3723
  #
3690
3724
  # @note When making an API call, you may pass DataSourceVpcConfiguration
3691
3725
  # data as a hash:
@@ -3716,7 +3750,7 @@ module Aws::Kendra
3716
3750
  include Aws::Structure
3717
3751
  end
3718
3752
 
3719
- # Provides the information necessary to connect a database to an index.
3753
+ # Provides the configuration information to connect to a index.
3720
3754
  #
3721
3755
  # @note When making an API call, you may pass DatabaseConfiguration
3722
3756
  # data as a hash:
@@ -3760,11 +3794,11 @@ module Aws::Kendra
3760
3794
  # @return [String]
3761
3795
  #
3762
3796
  # @!attribute [rw] connection_configuration
3763
- # The information necessary to connect to a database.
3797
+ # Configuration information that's required to connect to a database.
3764
3798
  # @return [Types::ConnectionConfiguration]
3765
3799
  #
3766
3800
  # @!attribute [rw] vpc_configuration
3767
- # Provides information for connecting to an Amazon VPC.
3801
+ # Provides the configuration information to connect to an Amazon VPC.
3768
3802
  # @return [Types::DataSourceVpcConfiguration]
3769
3803
  #
3770
3804
  # @!attribute [rw] column_configuration
@@ -4048,9 +4082,8 @@ module Aws::Kendra
4048
4082
  # @return [String]
4049
4083
  #
4050
4084
  # @!attribute [rw] configuration
4051
- # Information that describes where the data source is located and how
4052
- # the data source is configured. The specific information in the
4053
- # description depends on the data source provider.
4085
+ # Describes how the data source is configured. The specific
4086
+ # information in the description depends on the data source provider.
4054
4087
  # @return [Types::DataSourceConfiguration]
4055
4088
  #
4056
4089
  # @!attribute [rw] created_at
@@ -5484,7 +5517,7 @@ module Aws::Kendra
5484
5517
  include Aws::Structure
5485
5518
  end
5486
5519
 
5487
- # Provides the configuration information of users or groups in your
5520
+ # Provides the configuration information for users or groups in your
5488
5521
  # Amazon Web Services SSO identity source to grant access your Amazon
5489
5522
  # Kendra experience.
5490
5523
  #
@@ -5548,7 +5581,7 @@ module Aws::Kendra
5548
5581
  include Aws::Structure
5549
5582
  end
5550
5583
 
5551
- # Provides the configuration information of users or groups in your
5584
+ # Provides the configuration information for users or groups in your
5552
5585
  # Amazon Web Services SSO identity source for access to your Amazon
5553
5586
  # Kendra experience. Specific permissions are defined for each user or
5554
5587
  # group once they are granted access to your Amazon Kendra experience.
@@ -5587,7 +5620,7 @@ module Aws::Kendra
5587
5620
  include Aws::Structure
5588
5621
  end
5589
5622
 
5590
- # Specifies the configuration information for your Amazon Kendra
5623
+ # Provides the configuration information for your Amazon Kendra
5591
5624
  # experience. This includes the data source IDs and/or FAQ IDs, and user
5592
5625
  # or group information to grant access to your Amazon Kendra experience.
5593
5626
  #
@@ -5626,8 +5659,8 @@ module Aws::Kendra
5626
5659
  include Aws::Structure
5627
5660
  end
5628
5661
 
5629
- # Provides the configuration information of the endpoint for your Amazon
5630
- # Kendra experience.
5662
+ # Provides the configuration information for the endpoint for your
5663
+ # Amazon Kendra experience.
5631
5664
  #
5632
5665
  # @!attribute [rw] endpoint_type
5633
5666
  # The type of endpoint for your Amazon Kendra experience. The type
@@ -5912,9 +5945,9 @@ module Aws::Kendra
5912
5945
  # @return [String]
5913
5946
  #
5914
5947
  # @!attribute [rw] vpc_configuration
5915
- # Provides the configuration information for connecting to an Amazon
5916
- # Virtual Private Cloud for your Amazon FSx. Your Amazon FSx instance
5917
- # must reside inside your VPC.
5948
+ # Configuration information for connecting to an Amazon Virtual
5949
+ # Private Cloud for your Amazon FSx. Your Amazon FSx instance must
5950
+ # reside inside your VPC.
5918
5951
  # @return [Types::DataSourceVpcConfiguration]
5919
5952
  #
5920
5953
  # @!attribute [rw] secret_arn
@@ -5929,8 +5962,8 @@ module Aws::Kendra
5929
5962
  # have read and mounting access to the Amazon FSx file system for
5930
5963
  # Windows.
5931
5964
  #
5932
- # * password—The password of the active directory user with read and
5933
- # mounting access Amazon FSx Windows file system.
5965
+ # * password—The password of the Active Directory user account with
5966
+ # read and mounting access to the Amazon FSx Windows file system.
5934
5967
  # @return [String]
5935
5968
  #
5936
5969
  # @!attribute [rw] inclusion_patterns
@@ -5954,11 +5987,10 @@ module Aws::Kendra
5954
5987
  # @!attribute [rw] field_mappings
5955
5988
  # A list of `DataSourceToIndexFieldMapping` objects that map Amazon
5956
5989
  # FSx data source attributes or field names to Amazon Kendra index
5957
- # field names in Amazon Kendra. To create custom fields, use the
5958
- # `UpdateIndex` API before you map to Amazon FSx fields. For more
5959
- # information, see [Mapping data source fields][1]. The Amazon FSx
5960
- # data source field names must exist in your Amazon FSx custom
5961
- # metadata.
5990
+ # field names. To create custom fields, use the `UpdateIndex` API
5991
+ # before you map to Amazon FSx fields. For more information, see
5992
+ # [Mapping data source fields][1]. The Amazon FSx data source field
5993
+ # names must exist in your Amazon FSx custom metadata.
5962
5994
  #
5963
5995
  #
5964
5996
  #
@@ -6141,8 +6173,8 @@ module Aws::Kendra
6141
6173
  include Aws::Structure
6142
6174
  end
6143
6175
 
6144
- # Provides configuration information for data sources that connect to
6145
- # Google Drive.
6176
+ # Provides the configuration information to connect to Google Drive as
6177
+ # your data source.
6146
6178
  #
6147
6179
  # @note When making an API call, you may pass GoogleDriveConfiguration
6148
6180
  # data as a hash:
@@ -6506,7 +6538,7 @@ module Aws::Kendra
6506
6538
  include Aws::Structure
6507
6539
  end
6508
6540
 
6509
- # A summary of information about an index.
6541
+ # A summary of information on the configuration of an index.
6510
6542
  #
6511
6543
  # @!attribute [rw] name
6512
6544
  # The name of the index.
@@ -6661,7 +6693,7 @@ module Aws::Kendra
6661
6693
  include Aws::Structure
6662
6694
  end
6663
6695
 
6664
- # Configuration information for the JSON token type.
6696
+ # Provides the configuration information for the JSON token type.
6665
6697
  #
6666
6698
  # @note When making an API call, you may pass JsonTokenTypeConfiguration
6667
6699
  # data as a hash:
@@ -6688,7 +6720,7 @@ module Aws::Kendra
6688
6720
  include Aws::Structure
6689
6721
  end
6690
6722
 
6691
- # Configuration information for the JWT token type.
6723
+ # Provides the configuration information for the JWT token type.
6692
6724
  #
6693
6725
  # @note When making an API call, you may pass JwtTokenTypeConfiguration
6694
6726
  # data as a hash:
@@ -7198,7 +7230,8 @@ module Aws::Kendra
7198
7230
  end
7199
7231
 
7200
7232
  # @!attribute [rw] index_configuration_summary_items
7201
- # An array of summary information for one or more indexes.
7233
+ # An array of summary information on the configuration of one or more
7234
+ # indexes.
7202
7235
  # @return [Array<Types::IndexConfigurationSummary>]
7203
7236
  #
7204
7237
  # @!attribute [rw] next_token
@@ -7423,8 +7456,8 @@ module Aws::Kendra
7423
7456
  include Aws::Structure
7424
7457
  end
7425
7458
 
7426
- # Provides configuration information for data sources that connect to
7427
- # OneDrive.
7459
+ # Provides the configuration information to connect to OneDrive as your
7460
+ # data source.
7428
7461
  #
7429
7462
  # @note When making an API call, you may pass OneDriveConfiguration
7430
7463
  # data as a hash:
@@ -7915,6 +7948,9 @@ module Aws::Kendra
7915
7948
  # ],
7916
7949
  # },
7917
7950
  # visitor_id: "VisitorId",
7951
+ # spell_correction_configuration: {
7952
+ # include_query_spell_check_suggestions: false, # required
7953
+ # },
7918
7954
  # }
7919
7955
  #
7920
7956
  # @!attribute [rw] index_id
@@ -8008,6 +8044,10 @@ module Aws::Kendra
8008
8044
  # `VisitorId`.
8009
8045
  # @return [String]
8010
8046
  #
8047
+ # @!attribute [rw] spell_correction_configuration
8048
+ # Enables suggested spell corrections for queries.
8049
+ # @return [Types::SpellCorrectionConfiguration]
8050
+ #
8011
8051
  # @see http://docs.aws.amazon.com/goto/WebAPI/kendra-2019-02-03/QueryRequest AWS API Documentation
8012
8052
  #
8013
8053
  class QueryRequest < Struct.new(
@@ -8022,7 +8062,8 @@ module Aws::Kendra
8022
8062
  :page_size,
8023
8063
  :sorting_configuration,
8024
8064
  :user_context,
8025
- :visitor_id)
8065
+ :visitor_id,
8066
+ :spell_correction_configuration)
8026
8067
  SENSITIVE = []
8027
8068
  include Aws::Structure
8028
8069
  end
@@ -8061,6 +8102,11 @@ module Aws::Kendra
8061
8102
  # [1]: https://docs.aws.amazon.com/kendra/latest/dg/searching-example.html#searching-index-query-syntax
8062
8103
  # @return [Array<Types::Warning>]
8063
8104
  #
8105
+ # @!attribute [rw] spell_corrected_queries
8106
+ # A list of information related to suggested spell corrections for a
8107
+ # query.
8108
+ # @return [Array<Types::SpellCorrectedQuery>]
8109
+ #
8064
8110
  # @see http://docs.aws.amazon.com/goto/WebAPI/kendra-2019-02-03/QueryResult AWS API Documentation
8065
8111
  #
8066
8112
  class QueryResult < Struct.new(
@@ -8068,7 +8114,8 @@ module Aws::Kendra
8068
8114
  :result_items,
8069
8115
  :facet_results,
8070
8116
  :total_number_of_results,
8071
- :warnings)
8117
+ :warnings,
8118
+ :spell_corrected_queries)
8072
8119
  SENSITIVE = []
8073
8120
  include Aws::Structure
8074
8121
  end
@@ -8363,8 +8410,8 @@ module Aws::Kendra
8363
8410
  include Aws::Structure
8364
8411
  end
8365
8412
 
8366
- # Provides configuration information for a data source to index
8367
- # documents in an Amazon S3 bucket.
8413
+ # Provides the configuration information to connect to an Amazon S3
8414
+ # bucket.
8368
8415
  #
8369
8416
  # @note When making an API call, you may pass S3DataSourceConfiguration
8370
8417
  # data as a hash:
@@ -8492,8 +8539,8 @@ module Aws::Kendra
8492
8539
  include Aws::Structure
8493
8540
  end
8494
8541
 
8495
- # Defines configuration for syncing a Salesforce chatter feed. The
8496
- # contents of the object comes from the Salesforce FeedItem table.
8542
+ # The configuration information for syncing a Salesforce chatter feed.
8543
+ # The contents of the object comes from the Salesforce FeedItem table.
8497
8544
  #
8498
8545
  # @note When making an API call, you may pass SalesforceChatterFeedConfiguration
8499
8546
  # data as a hash:
@@ -8675,8 +8722,8 @@ module Aws::Kendra
8675
8722
  # @return [Boolean]
8676
8723
  #
8677
8724
  # @!attribute [rw] standard_object_attachment_configuration
8678
- # Provides configuration information for processing attachments to
8679
- # Salesforce standard objects.
8725
+ # Configuration information for processing attachments to Salesforce
8726
+ # standard objects.
8680
8727
  # @return [Types::SalesforceStandardObjectAttachmentConfiguration]
8681
8728
  #
8682
8729
  # @!attribute [rw] include_attachment_file_patterns
@@ -8764,7 +8811,7 @@ module Aws::Kendra
8764
8811
  include Aws::Structure
8765
8812
  end
8766
8813
 
8767
- # Specifies configuration information for the knowledge article types
8814
+ # Provides the configuration information for the knowledge article types
8768
8815
  # that Amazon Kendra indexes. Amazon Kendra indexes standard knowledge
8769
8816
  # articles and the standard fields of knowledge articles, or the custom
8770
8817
  # fields of custom knowledge articles, but not both
@@ -8808,13 +8855,12 @@ module Aws::Kendra
8808
8855
  # @return [Array<String>]
8809
8856
  #
8810
8857
  # @!attribute [rw] standard_knowledge_article_type_configuration
8811
- # Provides configuration information for standard Salesforce knowledge
8858
+ # Configuration information for standard Salesforce knowledge
8812
8859
  # articles.
8813
8860
  # @return [Types::SalesforceStandardKnowledgeArticleTypeConfiguration]
8814
8861
  #
8815
8862
  # @!attribute [rw] custom_knowledge_article_type_configurations
8816
- # Provides configuration information for custom Salesforce knowledge
8817
- # articles.
8863
+ # Configuration information for custom Salesforce knowledge articles.
8818
8864
  # @return [Array<Types::SalesforceCustomKnowledgeArticleTypeConfiguration>]
8819
8865
  #
8820
8866
  # @see http://docs.aws.amazon.com/goto/WebAPI/kendra-2019-02-03/SalesforceKnowledgeArticleConfiguration AWS API Documentation
@@ -8827,8 +8873,7 @@ module Aws::Kendra
8827
8873
  include Aws::Structure
8828
8874
  end
8829
8875
 
8830
- # Provides configuration information for standard Salesforce knowledge
8831
- # articles.
8876
+ # Configuration information for standard Salesforce knowledge articles.
8832
8877
  #
8833
8878
  # @note When making an API call, you may pass SalesforceStandardKnowledgeArticleTypeConfiguration
8834
8879
  # data as a hash:
@@ -8869,7 +8914,7 @@ module Aws::Kendra
8869
8914
  include Aws::Structure
8870
8915
  end
8871
8916
 
8872
- # Provides configuration information for processing attachments to
8917
+ # Provides the configuration information for processing attachments to
8873
8918
  # Salesforce standard objects.
8874
8919
  #
8875
8920
  # @note When making an API call, you may pass SalesforceStandardObjectAttachmentConfiguration
@@ -8904,7 +8949,7 @@ module Aws::Kendra
8904
8949
  include Aws::Structure
8905
8950
  end
8906
8951
 
8907
- # Specifies configuration information for indexing a single standard
8952
+ # Provides the configuration information for indexing a single standard
8908
8953
  # object.
8909
8954
  #
8910
8955
  # @note When making an API call, you may pass SalesforceStandardObjectConfiguration
@@ -9019,7 +9064,7 @@ module Aws::Kendra
9019
9064
  include Aws::Structure
9020
9065
  end
9021
9066
 
9022
- # Provides the configuration information of the seed or starting point
9067
+ # Provides the configuration information for the seed or starting point
9023
9068
  # URLs to crawl.
9024
9069
  #
9025
9070
  # *When selecting websites to index, you must adhere to the [Amazon
@@ -9096,8 +9141,8 @@ module Aws::Kendra
9096
9141
  include Aws::Structure
9097
9142
  end
9098
9143
 
9099
- # Provides configuration information required to connect to a ServiceNow
9100
- # data source.
9144
+ # Provides the configuration information to connect to ServiceNow as
9145
+ # your data source.
9101
9146
  #
9102
9147
  # @note When making an API call, you may pass ServiceNowConfiguration
9103
9148
  # data as a hash:
@@ -9156,13 +9201,13 @@ module Aws::Kendra
9156
9201
  # @return [String]
9157
9202
  #
9158
9203
  # @!attribute [rw] knowledge_article_configuration
9159
- # Provides configuration information for crawling knowledge articles
9160
- # in the ServiceNow site.
9204
+ # Configuration information for crawling knowledge articles in the
9205
+ # ServiceNow site.
9161
9206
  # @return [Types::ServiceNowKnowledgeArticleConfiguration]
9162
9207
  #
9163
9208
  # @!attribute [rw] service_catalog_configuration
9164
- # Provides configuration information for crawling service catalogs in
9165
- # the ServiceNow site.
9209
+ # Configuration information for crawling service catalogs in the
9210
+ # ServiceNow site.
9166
9211
  # @return [Types::ServiceNowServiceCatalogConfiguration]
9167
9212
  #
9168
9213
  # @!attribute [rw] authentication_type
@@ -9197,8 +9242,8 @@ module Aws::Kendra
9197
9242
  include Aws::Structure
9198
9243
  end
9199
9244
 
9200
- # Provides configuration information for crawling knowledge articles in
9201
- # the ServiceNow site.
9245
+ # Provides the configuration information for crawling knowledge articles
9246
+ # in the ServiceNow site.
9202
9247
  #
9203
9248
  # @note When making an API call, you may pass ServiceNowKnowledgeArticleConfiguration
9204
9249
  # data as a hash:
@@ -9279,8 +9324,8 @@ module Aws::Kendra
9279
9324
  include Aws::Structure
9280
9325
  end
9281
9326
 
9282
- # Provides configuration information for crawling service catalog items
9283
- # in the ServiceNow site
9327
+ # Provides the configuration information for crawling service catalog
9328
+ # items in the ServiceNow site
9284
9329
  #
9285
9330
  # @note When making an API call, you may pass ServiceNowServiceCatalogConfiguration
9286
9331
  # data as a hash:
@@ -9364,8 +9409,8 @@ module Aws::Kendra
9364
9409
  include Aws::Structure
9365
9410
  end
9366
9411
 
9367
- # Provides configuration information for connecting to a Microsoft
9368
- # SharePoint data source.
9412
+ # Provides the configuration information to connect to Microsoft
9413
+ # SharePoint as your data source.
9369
9414
  #
9370
9415
  # @note When making an API call, you may pass SharePointConfiguration
9371
9416
  # data as a hash:
@@ -9457,7 +9502,7 @@ module Aws::Kendra
9457
9502
  # @return [Array<String>]
9458
9503
  #
9459
9504
  # @!attribute [rw] vpc_configuration
9460
- # Provides information for connecting to an Amazon VPC.
9505
+ # Provides the configuration information to connect to an Amazon VPC.
9461
9506
  # @return [Types::DataSourceVpcConfiguration]
9462
9507
  #
9463
9508
  # @!attribute [rw] field_mappings
@@ -9505,7 +9550,7 @@ module Aws::Kendra
9505
9550
  include Aws::Structure
9506
9551
  end
9507
9552
 
9508
- # Provides the configuration information of the sitemap URLs to crawl.
9553
+ # Provides the configuration information for the sitemap URLs to crawl.
9509
9554
  #
9510
9555
  # *When selecting websites to index, you must adhere to the [Amazon
9511
9556
  # Acceptable Use Policy][1] and all other Amazon terms. Remember that
@@ -9596,8 +9641,60 @@ module Aws::Kendra
9596
9641
  include Aws::Structure
9597
9642
  end
9598
9643
 
9599
- # Provides information that configures Amazon Kendra to use a SQL
9600
- # database.
9644
+ # A query with suggested spell corrections.
9645
+ #
9646
+ # @!attribute [rw] suggested_query_text
9647
+ # The query with the suggested spell corrections.
9648
+ # @return [String]
9649
+ #
9650
+ # @!attribute [rw] corrections
9651
+ # The corrected misspelled word or words in a query.
9652
+ # @return [Array<Types::Correction>]
9653
+ #
9654
+ # @see http://docs.aws.amazon.com/goto/WebAPI/kendra-2019-02-03/SpellCorrectedQuery AWS API Documentation
9655
+ #
9656
+ class SpellCorrectedQuery < Struct.new(
9657
+ :suggested_query_text,
9658
+ :corrections)
9659
+ SENSITIVE = []
9660
+ include Aws::Structure
9661
+ end
9662
+
9663
+ # Provides the configuration information for suggested query spell
9664
+ # corrections.
9665
+ #
9666
+ # Suggested spell corrections are based on words that appear in your
9667
+ # indexed documents and how closely a corrected word matches a
9668
+ # misspelled word.
9669
+ #
9670
+ # This feature is designed with certain defaults or limits. For
9671
+ # information on the current limits and how to request more support for
9672
+ # some limits, see the [Spell Checker documentation][1].
9673
+ #
9674
+ #
9675
+ #
9676
+ # [1]: https://docs.aws.amazon.com/kendra/latest/dg/query-spell-check.html
9677
+ #
9678
+ # @note When making an API call, you may pass SpellCorrectionConfiguration
9679
+ # data as a hash:
9680
+ #
9681
+ # {
9682
+ # include_query_spell_check_suggestions: false, # required
9683
+ # }
9684
+ #
9685
+ # @!attribute [rw] include_query_spell_check_suggestions
9686
+ # `TRUE` to suggest spell corrections for queries.
9687
+ # @return [Boolean]
9688
+ #
9689
+ # @see http://docs.aws.amazon.com/goto/WebAPI/kendra-2019-02-03/SpellCorrectionConfiguration AWS API Documentation
9690
+ #
9691
+ class SpellCorrectionConfiguration < Struct.new(
9692
+ :include_query_spell_check_suggestions)
9693
+ SENSITIVE = []
9694
+ include Aws::Structure
9695
+ end
9696
+
9697
+ # Provides the configuration information to use a SQL database.
9601
9698
  #
9602
9699
  # @note When making an API call, you may pass SqlConfiguration
9603
9700
  # data as a hash:
@@ -10483,7 +10580,8 @@ module Aws::Kendra
10483
10580
  # @return [String]
10484
10581
  #
10485
10582
  # @!attribute [rw] configuration
10486
- # Configuration information for an Amazon Kendra data source.
10583
+ # Configuration information for an Amazon Kendra data source you want
10584
+ # to update.
10487
10585
  # @return [Types::DataSourceConfiguration]
10488
10586
  #
10489
10587
  # @!attribute [rw] description
@@ -10587,9 +10685,7 @@ module Aws::Kendra
10587
10685
  # @return [String]
10588
10686
  #
10589
10687
  # @!attribute [rw] configuration
10590
- # Provides the user configuration information. This includes the
10591
- # Amazon Web Services SSO field name that contains the identifiers of
10592
- # your users, such as their emails.
10688
+ # Configuration information for your Amazon Kendra you want to update.
10593
10689
  # @return [Types::ExperienceConfiguration]
10594
10690
  #
10595
10691
  # @!attribute [rw] description
@@ -10683,7 +10779,7 @@ module Aws::Kendra
10683
10779
  # @return [String]
10684
10780
  #
10685
10781
  # @!attribute [rw] document_metadata_configuration_updates
10686
- # The document metadata to update.
10782
+ # The document metadata you want to update.
10687
10783
  # @return [Array<Types::DocumentMetadataConfiguration>]
10688
10784
  #
10689
10785
  # @!attribute [rw] capacity_units
@@ -10964,8 +11060,8 @@ module Aws::Kendra
10964
11060
  # }
10965
11061
  #
10966
11062
  # @!attribute [rw] seed_url_configuration
10967
- # Provides the configuration of the seed or starting point URLs of the
10968
- # websites you want to crawl.
11063
+ # Configuration of the seed or starting point URLs of the websites you
11064
+ # want to crawl.
10969
11065
  #
10970
11066
  # You can choose to crawl only the website host names, or the website
10971
11067
  # host names with subdomains, or the website host names with
@@ -10975,8 +11071,7 @@ module Aws::Kendra
10975
11071
  # @return [Types::SeedUrlConfiguration]
10976
11072
  #
10977
11073
  # @!attribute [rw] site_maps_configuration
10978
- # Provides the configuration of the sitemap URLs of the websites you
10979
- # want to crawl.
11074
+ # Configuration of the sitemap URLs of the websites you want to crawl.
10980
11075
  #
10981
11076
  # Only URLs belonging to the same website host names are crawled. You
10982
11077
  # can list up to three sitemap URLs.
@@ -11101,7 +11196,8 @@ module Aws::Kendra
11101
11196
  include Aws::Structure
11102
11197
  end
11103
11198
 
11104
- # Configuration information for the identifiers of your users.
11199
+ # Provides the configuration information for the identifiers of your
11200
+ # users.
11105
11201
  #
11106
11202
  # @note When making an API call, you may pass UserIdentityConfiguration
11107
11203
  # data as a hash:
@@ -11134,7 +11230,7 @@ module Aws::Kendra
11134
11230
  include Aws::Structure
11135
11231
  end
11136
11232
 
11137
- # Provides configuration information for a token configuration.
11233
+ # Provides the configuration information for a token.
11138
11234
  #
11139
11235
  # @note When making an API call, you may pass UserTokenConfiguration
11140
11236
  # data as a hash:
@@ -11319,8 +11415,8 @@ module Aws::Kendra
11319
11415
  # @return [Array<String>]
11320
11416
  #
11321
11417
  # @!attribute [rw] proxy_configuration
11322
- # Provides configuration information required to connect to your
11323
- # internal websites via a web proxy.
11418
+ # Configuration information required to connect to your internal
11419
+ # websites via a web proxy.
11324
11420
  #
11325
11421
  # You must provide the website host name and port number. For example,
11326
11422
  # the host name of https://a.example.com/page1.html is
@@ -11336,8 +11432,8 @@ module Aws::Kendra
11336
11432
  # @return [Types::ProxyConfiguration]
11337
11433
  #
11338
11434
  # @!attribute [rw] authentication_configuration
11339
- # Provides configuration information required to connect to websites
11340
- # using authentication.
11435
+ # Configuration information required to connect to websites using
11436
+ # authentication.
11341
11437
  #
11342
11438
  # You can connect to websites using basic authentication of user name
11343
11439
  # and password.
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-kendra/customizations'
48
48
  # @!group service
49
49
  module Aws::Kendra
50
50
 
51
- GEM_VERSION = '1.45.0'
51
+ GEM_VERSION = '1.46.0'
52
52
 
53
53
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-kendra
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.45.0
4
+ version: 1.46.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-02-24 00:00:00.000000000 Z
11
+ date: 2022-03-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core