@aws-sdk/client-kendra 3.300.0 → 3.301.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-types/commands/AssociateEntitiesToExperienceCommand.d.ts +3 -3
- package/dist-types/commands/AssociatePersonasToEntitiesCommand.d.ts +3 -3
- package/dist-types/commands/BatchDeleteDocumentCommand.d.ts +3 -3
- package/dist-types/commands/BatchGetDocumentStatusCommand.d.ts +7 -7
- package/dist-types/commands/BatchPutDocumentCommand.d.ts +18 -18
- package/dist-types/commands/ClearQuerySuggestionsCommand.d.ts +1 -1
- package/dist-types/commands/CreateAccessControlConfigurationCommand.d.ts +5 -5
- package/dist-types/commands/CreateDataSourceCommand.d.ts +168 -338
- package/dist-types/commands/CreateExperienceCommand.d.ts +6 -6
- package/dist-types/commands/CreateFaqCommand.d.ts +4 -4
- package/dist-types/commands/CreateIndexCommand.d.ts +9 -9
- package/dist-types/commands/CreateQuerySuggestionsBlockListCommand.d.ts +4 -4
- package/dist-types/commands/CreateThesaurusCommand.d.ts +4 -4
- package/dist-types/commands/DeleteAccessControlConfigurationCommand.d.ts +1 -1
- package/dist-types/commands/DeleteDataSourceCommand.d.ts +1 -1
- package/dist-types/commands/DeleteExperienceCommand.d.ts +1 -1
- package/dist-types/commands/DeleteFaqCommand.d.ts +1 -1
- package/dist-types/commands/DeleteIndexCommand.d.ts +1 -1
- package/dist-types/commands/DeletePrincipalMappingCommand.d.ts +1 -1
- package/dist-types/commands/DeleteQuerySuggestionsBlockListCommand.d.ts +1 -1
- package/dist-types/commands/DeleteThesaurusCommand.d.ts +1 -1
- package/dist-types/commands/DescribeAccessControlConfigurationCommand.d.ts +1 -1
- package/dist-types/commands/DescribeDataSourceCommand.d.ts +1 -1
- package/dist-types/commands/DescribeExperienceCommand.d.ts +1 -1
- package/dist-types/commands/DescribeFaqCommand.d.ts +1 -1
- package/dist-types/commands/DescribeIndexCommand.d.ts +1 -1
- package/dist-types/commands/DescribePrincipalMappingCommand.d.ts +1 -1
- package/dist-types/commands/DescribeQuerySuggestionsBlockListCommand.d.ts +1 -1
- package/dist-types/commands/DescribeQuerySuggestionsConfigCommand.d.ts +1 -1
- package/dist-types/commands/DescribeThesaurusCommand.d.ts +1 -1
- package/dist-types/commands/DisassociateEntitiesFromExperienceCommand.d.ts +3 -3
- package/dist-types/commands/DisassociatePersonasFromEntitiesCommand.d.ts +2 -2
- package/dist-types/commands/GetQuerySuggestionsCommand.d.ts +1 -1
- package/dist-types/commands/GetSnapshotsCommand.d.ts +1 -1
- package/dist-types/commands/ListAccessControlConfigurationsCommand.d.ts +1 -1
- package/dist-types/commands/ListDataSourceSyncJobsCommand.d.ts +2 -2
- package/dist-types/commands/ListDataSourcesCommand.d.ts +1 -1
- package/dist-types/commands/ListEntityPersonasCommand.d.ts +1 -1
- package/dist-types/commands/ListExperienceEntitiesCommand.d.ts +1 -1
- package/dist-types/commands/ListExperiencesCommand.d.ts +1 -1
- package/dist-types/commands/ListFaqsCommand.d.ts +1 -1
- package/dist-types/commands/ListGroupsOlderThanOrderingIdCommand.d.ts +1 -1
- package/dist-types/commands/ListIndicesCommand.d.ts +1 -1
- package/dist-types/commands/ListQuerySuggestionsBlockListsCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/ListThesauriCommand.d.ts +1 -1
- package/dist-types/commands/PutPrincipalMappingCommand.d.ts +7 -7
- package/dist-types/commands/QueryCommand.d.ts +88 -213
- package/dist-types/commands/StartDataSourceSyncJobCommand.d.ts +1 -1
- package/dist-types/commands/StopDataSourceSyncJobCommand.d.ts +1 -1
- package/dist-types/commands/SubmitFeedbackCommand.d.ts +5 -5
- package/dist-types/commands/TagResourceCommand.d.ts +3 -3
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UpdateAccessControlConfigurationCommand.d.ts +5 -5
- package/dist-types/commands/UpdateDataSourceCommand.d.ts +166 -336
- package/dist-types/commands/UpdateExperienceCommand.d.ts +6 -6
- package/dist-types/commands/UpdateIndexCommand.d.ts +12 -12
- package/dist-types/commands/UpdateQuerySuggestionsBlockListCommand.d.ts +2 -2
- package/dist-types/commands/UpdateQuerySuggestionsConfigCommand.d.ts +1 -1
- package/dist-types/commands/UpdateThesaurusCommand.d.ts +2 -2
- package/package.json +3 -3
|
@@ -38,14 +38,14 @@ export interface CreateDataSourceCommandOutput extends CreateDataSourceResponse,
|
|
|
38
38
|
* import { KendraClient, CreateDataSourceCommand } from "@aws-sdk/client-kendra"; // ES Modules import
|
|
39
39
|
* // const { KendraClient, CreateDataSourceCommand } = require("@aws-sdk/client-kendra"); // CommonJS import
|
|
40
40
|
* const client = new KendraClient(config);
|
|
41
|
-
* const input = {
|
|
41
|
+
* const input = { // CreateDataSourceRequest
|
|
42
42
|
* Name: "STRING_VALUE", // required
|
|
43
43
|
* IndexId: "STRING_VALUE", // required
|
|
44
44
|
* Type: "S3" || "SHAREPOINT" || "DATABASE" || "SALESFORCE" || "ONEDRIVE" || "SERVICENOW" || "CUSTOM" || "CONFLUENCE" || "GOOGLEDRIVE" || "WEBCRAWLER" || "WORKDOCS" || "FSX" || "SLACK" || "BOX" || "QUIP" || "JIRA" || "GITHUB" || "ALFRESCO" || "TEMPLATE", // required
|
|
45
|
-
* Configuration: {
|
|
46
|
-
* S3Configuration: {
|
|
45
|
+
* Configuration: { // DataSourceConfiguration
|
|
46
|
+
* S3Configuration: { // S3DataSourceConfiguration
|
|
47
47
|
* BucketName: "STRING_VALUE", // required
|
|
48
|
-
* InclusionPrefixes: [
|
|
48
|
+
* InclusionPrefixes: [ // DataSourceInclusionsExclusionsStrings
|
|
49
49
|
* "STRING_VALUE",
|
|
50
50
|
* ],
|
|
51
51
|
* InclusionPatterns: [
|
|
@@ -54,16 +54,16 @@ export interface CreateDataSourceCommandOutput extends CreateDataSourceResponse,
|
|
|
54
54
|
* ExclusionPatterns: [
|
|
55
55
|
* "STRING_VALUE",
|
|
56
56
|
* ],
|
|
57
|
-
* DocumentsMetadataConfiguration: {
|
|
57
|
+
* DocumentsMetadataConfiguration: { // DocumentsMetadataConfiguration
|
|
58
58
|
* S3Prefix: "STRING_VALUE",
|
|
59
59
|
* },
|
|
60
|
-
* AccessControlListConfiguration: {
|
|
60
|
+
* AccessControlListConfiguration: { // AccessControlListConfiguration
|
|
61
61
|
* KeyPath: "STRING_VALUE",
|
|
62
62
|
* },
|
|
63
63
|
* },
|
|
64
|
-
* SharePointConfiguration: {
|
|
64
|
+
* SharePointConfiguration: { // SharePointConfiguration
|
|
65
65
|
* SharePointVersion: "SHAREPOINT_2013" || "SHAREPOINT_2016" || "SHAREPOINT_ONLINE" || "SHAREPOINT_2019", // required
|
|
66
|
-
* Urls: [ // required
|
|
66
|
+
* Urls: [ // SharePointUrlList // required
|
|
67
67
|
* "STRING_VALUE",
|
|
68
68
|
* ],
|
|
69
69
|
* SecretArn: "STRING_VALUE", // required
|
|
@@ -75,16 +75,16 @@ export interface CreateDataSourceCommandOutput extends CreateDataSourceResponse,
|
|
|
75
75
|
* ExclusionPatterns: [
|
|
76
76
|
* "STRING_VALUE",
|
|
77
77
|
* ],
|
|
78
|
-
* VpcConfiguration: {
|
|
79
|
-
* SubnetIds: [ // required
|
|
78
|
+
* VpcConfiguration: { // DataSourceVpcConfiguration
|
|
79
|
+
* SubnetIds: [ // SubnetIdList // required
|
|
80
80
|
* "STRING_VALUE",
|
|
81
81
|
* ],
|
|
82
|
-
* SecurityGroupIds: [ // required
|
|
82
|
+
* SecurityGroupIds: [ // SecurityGroupIdList // required
|
|
83
83
|
* "STRING_VALUE",
|
|
84
84
|
* ],
|
|
85
85
|
* },
|
|
86
|
-
* FieldMappings: [
|
|
87
|
-
* {
|
|
86
|
+
* FieldMappings: [ // DataSourceToIndexFieldMappingList
|
|
87
|
+
* { // DataSourceToIndexFieldMapping
|
|
88
88
|
* DataSourceFieldName: "STRING_VALUE", // required
|
|
89
89
|
* DateFieldFormat: "STRING_VALUE",
|
|
90
90
|
* IndexFieldName: "STRING_VALUE", // required
|
|
@@ -92,20 +92,20 @@ export interface CreateDataSourceCommandOutput extends CreateDataSourceResponse,
|
|
|
92
92
|
* ],
|
|
93
93
|
* DocumentTitleFieldName: "STRING_VALUE",
|
|
94
94
|
* DisableLocalGroups: true || false,
|
|
95
|
-
* SslCertificateS3Path: {
|
|
95
|
+
* SslCertificateS3Path: { // S3Path
|
|
96
96
|
* Bucket: "STRING_VALUE", // required
|
|
97
97
|
* Key: "STRING_VALUE", // required
|
|
98
98
|
* },
|
|
99
99
|
* AuthenticationType: "HTTP_BASIC" || "OAUTH2",
|
|
100
|
-
* ProxyConfiguration: {
|
|
100
|
+
* ProxyConfiguration: { // ProxyConfiguration
|
|
101
101
|
* Host: "STRING_VALUE", // required
|
|
102
102
|
* Port: Number("int"), // required
|
|
103
103
|
* Credentials: "STRING_VALUE",
|
|
104
104
|
* },
|
|
105
105
|
* },
|
|
106
|
-
* DatabaseConfiguration: {
|
|
106
|
+
* DatabaseConfiguration: { // DatabaseConfiguration
|
|
107
107
|
* DatabaseEngineType: "RDS_AURORA_MYSQL" || "RDS_AURORA_POSTGRESQL" || "RDS_MYSQL" || "RDS_POSTGRESQL", // required
|
|
108
|
-
* ConnectionConfiguration: {
|
|
108
|
+
* ConnectionConfiguration: { // ConnectionConfiguration
|
|
109
109
|
* DatabaseHost: "STRING_VALUE", // required
|
|
110
110
|
* DatabasePort: Number("int"), // required
|
|
111
111
|
* DatabaseName: "STRING_VALUE", // required
|
|
@@ -120,7 +120,7 @@ export interface CreateDataSourceCommandOutput extends CreateDataSourceResponse,
|
|
|
120
120
|
* "STRING_VALUE",
|
|
121
121
|
* ],
|
|
122
122
|
* },
|
|
123
|
-
* ColumnConfiguration: {
|
|
123
|
+
* ColumnConfiguration: { // ColumnConfiguration
|
|
124
124
|
* DocumentIdColumnName: "STRING_VALUE", // required
|
|
125
125
|
* DocumentDataColumnName: "STRING_VALUE", // required
|
|
126
126
|
* DocumentTitleColumnName: "STRING_VALUE",
|
|
@@ -131,81 +131,67 @@ export interface CreateDataSourceCommandOutput extends CreateDataSourceResponse,
|
|
|
131
131
|
* IndexFieldName: "STRING_VALUE", // required
|
|
132
132
|
* },
|
|
133
133
|
* ],
|
|
134
|
-
* ChangeDetectingColumns: [ // required
|
|
134
|
+
* ChangeDetectingColumns: [ // ChangeDetectingColumns // required
|
|
135
135
|
* "STRING_VALUE",
|
|
136
136
|
* ],
|
|
137
137
|
* },
|
|
138
|
-
* AclConfiguration: {
|
|
138
|
+
* AclConfiguration: { // AclConfiguration
|
|
139
139
|
* AllowedGroupsColumnName: "STRING_VALUE", // required
|
|
140
140
|
* },
|
|
141
|
-
* SqlConfiguration: {
|
|
141
|
+
* SqlConfiguration: { // SqlConfiguration
|
|
142
142
|
* QueryIdentifiersEnclosingOption: "DOUBLE_QUOTES" || "NONE",
|
|
143
143
|
* },
|
|
144
144
|
* },
|
|
145
|
-
* SalesforceConfiguration: {
|
|
145
|
+
* SalesforceConfiguration: { // SalesforceConfiguration
|
|
146
146
|
* ServerUrl: "STRING_VALUE", // required
|
|
147
147
|
* SecretArn: "STRING_VALUE", // required
|
|
148
|
-
* StandardObjectConfigurations: [
|
|
149
|
-
* {
|
|
148
|
+
* StandardObjectConfigurations: [ // SalesforceStandardObjectConfigurationList
|
|
149
|
+
* { // SalesforceStandardObjectConfiguration
|
|
150
150
|
* Name: "ACCOUNT" || "CAMPAIGN" || "CASE" || "CONTACT" || "CONTRACT" || "DOCUMENT" || "GROUP" || "IDEA" || "LEAD" || "OPPORTUNITY" || "PARTNER" || "PRICEBOOK" || "PRODUCT" || "PROFILE" || "SOLUTION" || "TASK" || "USER", // required
|
|
151
151
|
* DocumentDataFieldName: "STRING_VALUE", // required
|
|
152
152
|
* DocumentTitleFieldName: "STRING_VALUE",
|
|
153
|
-
* FieldMappings:
|
|
154
|
-
* "<DataSourceToIndexFieldMappingList>",
|
|
155
|
-
* ],
|
|
153
|
+
* FieldMappings: "<DataSourceToIndexFieldMappingList>",
|
|
156
154
|
* },
|
|
157
155
|
* ],
|
|
158
|
-
* KnowledgeArticleConfiguration: {
|
|
159
|
-
* IncludedStates: [ // required
|
|
156
|
+
* KnowledgeArticleConfiguration: { // SalesforceKnowledgeArticleConfiguration
|
|
157
|
+
* IncludedStates: [ // SalesforceKnowledgeArticleStateList // required
|
|
160
158
|
* "DRAFT" || "PUBLISHED" || "ARCHIVED",
|
|
161
159
|
* ],
|
|
162
|
-
* StandardKnowledgeArticleTypeConfiguration: {
|
|
160
|
+
* StandardKnowledgeArticleTypeConfiguration: { // SalesforceStandardKnowledgeArticleTypeConfiguration
|
|
163
161
|
* DocumentDataFieldName: "STRING_VALUE", // required
|
|
164
162
|
* DocumentTitleFieldName: "STRING_VALUE",
|
|
165
|
-
* FieldMappings:
|
|
166
|
-
* "<DataSourceToIndexFieldMappingList>",
|
|
167
|
-
* ],
|
|
163
|
+
* FieldMappings: "<DataSourceToIndexFieldMappingList>",
|
|
168
164
|
* },
|
|
169
|
-
* CustomKnowledgeArticleTypeConfigurations: [
|
|
170
|
-
* {
|
|
165
|
+
* CustomKnowledgeArticleTypeConfigurations: [ // SalesforceCustomKnowledgeArticleTypeConfigurationList
|
|
166
|
+
* { // SalesforceCustomKnowledgeArticleTypeConfiguration
|
|
171
167
|
* Name: "STRING_VALUE", // required
|
|
172
168
|
* DocumentDataFieldName: "STRING_VALUE", // required
|
|
173
169
|
* DocumentTitleFieldName: "STRING_VALUE",
|
|
174
|
-
* FieldMappings:
|
|
175
|
-
* "<DataSourceToIndexFieldMappingList>",
|
|
176
|
-
* ],
|
|
170
|
+
* FieldMappings: "<DataSourceToIndexFieldMappingList>",
|
|
177
171
|
* },
|
|
178
172
|
* ],
|
|
179
173
|
* },
|
|
180
|
-
* ChatterFeedConfiguration: {
|
|
174
|
+
* ChatterFeedConfiguration: { // SalesforceChatterFeedConfiguration
|
|
181
175
|
* DocumentDataFieldName: "STRING_VALUE", // required
|
|
182
176
|
* DocumentTitleFieldName: "STRING_VALUE",
|
|
183
|
-
* FieldMappings:
|
|
184
|
-
*
|
|
185
|
-
* ],
|
|
186
|
-
* IncludeFilterTypes: [
|
|
177
|
+
* FieldMappings: "<DataSourceToIndexFieldMappingList>",
|
|
178
|
+
* IncludeFilterTypes: [ // SalesforceChatterFeedIncludeFilterTypes
|
|
187
179
|
* "ACTIVE_USER" || "STANDARD_USER",
|
|
188
180
|
* ],
|
|
189
181
|
* },
|
|
190
182
|
* CrawlAttachments: true || false,
|
|
191
|
-
* StandardObjectAttachmentConfiguration: {
|
|
183
|
+
* StandardObjectAttachmentConfiguration: { // SalesforceStandardObjectAttachmentConfiguration
|
|
192
184
|
* DocumentTitleFieldName: "STRING_VALUE",
|
|
193
|
-
* FieldMappings:
|
|
194
|
-
* "<DataSourceToIndexFieldMappingList>",
|
|
195
|
-
* ],
|
|
185
|
+
* FieldMappings: "<DataSourceToIndexFieldMappingList>",
|
|
196
186
|
* },
|
|
197
|
-
* IncludeAttachmentFilePatterns:
|
|
198
|
-
*
|
|
199
|
-
* ],
|
|
200
|
-
* ExcludeAttachmentFilePatterns: [
|
|
201
|
-
* "STRING_VALUE",
|
|
202
|
-
* ],
|
|
187
|
+
* IncludeAttachmentFilePatterns: "<DataSourceInclusionsExclusionsStrings>",
|
|
188
|
+
* ExcludeAttachmentFilePatterns: "<DataSourceInclusionsExclusionsStrings>",
|
|
203
189
|
* },
|
|
204
|
-
* OneDriveConfiguration: {
|
|
190
|
+
* OneDriveConfiguration: { // OneDriveConfiguration
|
|
205
191
|
* TenantDomain: "STRING_VALUE", // required
|
|
206
192
|
* SecretArn: "STRING_VALUE", // required
|
|
207
|
-
* OneDriveUsers: {
|
|
208
|
-
* OneDriveUserList: [
|
|
193
|
+
* OneDriveUsers: { // OneDriveUsers
|
|
194
|
+
* OneDriveUserList: [ // OneDriveUserList
|
|
209
195
|
* "STRING_VALUE",
|
|
210
196
|
* ],
|
|
211
197
|
* OneDriveUserS3Path: {
|
|
@@ -213,95 +199,77 @@ export interface CreateDataSourceCommandOutput extends CreateDataSourceResponse,
|
|
|
213
199
|
* Key: "STRING_VALUE", // required
|
|
214
200
|
* },
|
|
215
201
|
* },
|
|
216
|
-
* InclusionPatterns:
|
|
217
|
-
*
|
|
218
|
-
*
|
|
219
|
-
* ExclusionPatterns: [
|
|
220
|
-
* "STRING_VALUE",
|
|
221
|
-
* ],
|
|
222
|
-
* FieldMappings: [
|
|
223
|
-
* "<DataSourceToIndexFieldMappingList>",
|
|
224
|
-
* ],
|
|
202
|
+
* InclusionPatterns: "<DataSourceInclusionsExclusionsStrings>",
|
|
203
|
+
* ExclusionPatterns: "<DataSourceInclusionsExclusionsStrings>",
|
|
204
|
+
* FieldMappings: "<DataSourceToIndexFieldMappingList>",
|
|
225
205
|
* DisableLocalGroups: true || false,
|
|
226
206
|
* },
|
|
227
|
-
* ServiceNowConfiguration: {
|
|
207
|
+
* ServiceNowConfiguration: { // ServiceNowConfiguration
|
|
228
208
|
* HostUrl: "STRING_VALUE", // required
|
|
229
209
|
* SecretArn: "STRING_VALUE", // required
|
|
230
210
|
* ServiceNowBuildVersion: "LONDON" || "OTHERS", // required
|
|
231
|
-
* KnowledgeArticleConfiguration: {
|
|
211
|
+
* KnowledgeArticleConfiguration: { // ServiceNowKnowledgeArticleConfiguration
|
|
232
212
|
* CrawlAttachments: true || false,
|
|
233
|
-
* IncludeAttachmentFilePatterns:
|
|
234
|
-
*
|
|
235
|
-
* ],
|
|
236
|
-
* ExcludeAttachmentFilePatterns: [
|
|
237
|
-
* "STRING_VALUE",
|
|
238
|
-
* ],
|
|
213
|
+
* IncludeAttachmentFilePatterns: "<DataSourceInclusionsExclusionsStrings>",
|
|
214
|
+
* ExcludeAttachmentFilePatterns: "<DataSourceInclusionsExclusionsStrings>",
|
|
239
215
|
* DocumentDataFieldName: "STRING_VALUE", // required
|
|
240
216
|
* DocumentTitleFieldName: "STRING_VALUE",
|
|
241
|
-
* FieldMappings:
|
|
242
|
-
* "<DataSourceToIndexFieldMappingList>",
|
|
243
|
-
* ],
|
|
217
|
+
* FieldMappings: "<DataSourceToIndexFieldMappingList>",
|
|
244
218
|
* FilterQuery: "STRING_VALUE",
|
|
245
219
|
* },
|
|
246
|
-
* ServiceCatalogConfiguration: {
|
|
220
|
+
* ServiceCatalogConfiguration: { // ServiceNowServiceCatalogConfiguration
|
|
247
221
|
* CrawlAttachments: true || false,
|
|
248
|
-
* IncludeAttachmentFilePatterns:
|
|
249
|
-
*
|
|
250
|
-
* ],
|
|
251
|
-
* ExcludeAttachmentFilePatterns: [
|
|
252
|
-
* "STRING_VALUE",
|
|
253
|
-
* ],
|
|
222
|
+
* IncludeAttachmentFilePatterns: "<DataSourceInclusionsExclusionsStrings>",
|
|
223
|
+
* ExcludeAttachmentFilePatterns: "<DataSourceInclusionsExclusionsStrings>",
|
|
254
224
|
* DocumentDataFieldName: "STRING_VALUE", // required
|
|
255
225
|
* DocumentTitleFieldName: "STRING_VALUE",
|
|
256
|
-
* FieldMappings:
|
|
257
|
-
* "<DataSourceToIndexFieldMappingList>",
|
|
258
|
-
* ],
|
|
226
|
+
* FieldMappings: "<DataSourceToIndexFieldMappingList>",
|
|
259
227
|
* },
|
|
260
228
|
* AuthenticationType: "HTTP_BASIC" || "OAUTH2",
|
|
261
229
|
* },
|
|
262
|
-
* ConfluenceConfiguration: {
|
|
230
|
+
* ConfluenceConfiguration: { // ConfluenceConfiguration
|
|
263
231
|
* ServerUrl: "STRING_VALUE", // required
|
|
264
232
|
* SecretArn: "STRING_VALUE", // required
|
|
265
233
|
* Version: "CLOUD" || "SERVER", // required
|
|
266
|
-
* SpaceConfiguration: {
|
|
234
|
+
* SpaceConfiguration: { // ConfluenceSpaceConfiguration
|
|
267
235
|
* CrawlPersonalSpaces: true || false,
|
|
268
236
|
* CrawlArchivedSpaces: true || false,
|
|
269
|
-
* IncludeSpaces: [
|
|
237
|
+
* IncludeSpaces: [ // ConfluenceSpaceList
|
|
270
238
|
* "STRING_VALUE",
|
|
271
239
|
* ],
|
|
272
240
|
* ExcludeSpaces: [
|
|
273
241
|
* "STRING_VALUE",
|
|
274
242
|
* ],
|
|
275
|
-
* SpaceFieldMappings: [
|
|
276
|
-
* {
|
|
243
|
+
* SpaceFieldMappings: [ // ConfluenceSpaceFieldMappingsList
|
|
244
|
+
* { // ConfluenceSpaceToIndexFieldMapping
|
|
277
245
|
* DataSourceFieldName: "DISPLAY_URL" || "ITEM_TYPE" || "SPACE_KEY" || "URL",
|
|
278
246
|
* DateFieldFormat: "STRING_VALUE",
|
|
279
247
|
* IndexFieldName: "STRING_VALUE",
|
|
280
248
|
* },
|
|
281
249
|
* ],
|
|
282
250
|
* },
|
|
283
|
-
* PageConfiguration: {
|
|
284
|
-
* PageFieldMappings: [
|
|
285
|
-
* {
|
|
251
|
+
* PageConfiguration: { // ConfluencePageConfiguration
|
|
252
|
+
* PageFieldMappings: [ // ConfluencePageFieldMappingsList
|
|
253
|
+
* { // ConfluencePageToIndexFieldMapping
|
|
286
254
|
* DataSourceFieldName: "AUTHOR" || "CONTENT_STATUS" || "CREATED_DATE" || "DISPLAY_URL" || "ITEM_TYPE" || "LABELS" || "MODIFIED_DATE" || "PARENT_ID" || "SPACE_KEY" || "SPACE_NAME" || "URL" || "VERSION",
|
|
287
255
|
* DateFieldFormat: "STRING_VALUE",
|
|
288
256
|
* IndexFieldName: "STRING_VALUE",
|
|
289
257
|
* },
|
|
290
258
|
* ],
|
|
291
259
|
* },
|
|
292
|
-
* BlogConfiguration: {
|
|
293
|
-
* BlogFieldMappings: [
|
|
294
|
-
* {
|
|
260
|
+
* BlogConfiguration: { // ConfluenceBlogConfiguration
|
|
261
|
+
* BlogFieldMappings: [ // ConfluenceBlogFieldMappingsList
|
|
262
|
+
* { // ConfluenceBlogToIndexFieldMapping
|
|
295
263
|
* DataSourceFieldName: "AUTHOR" || "DISPLAY_URL" || "ITEM_TYPE" || "LABELS" || "PUBLISH_DATE" || "SPACE_KEY" || "SPACE_NAME" || "URL" || "VERSION",
|
|
296
264
|
* DateFieldFormat: "STRING_VALUE",
|
|
297
265
|
* IndexFieldName: "STRING_VALUE",
|
|
298
266
|
* },
|
|
299
267
|
* ],
|
|
300
268
|
* },
|
|
301
|
-
* AttachmentConfiguration: {
|
|
269
|
+
* AttachmentConfiguration: { // ConfluenceAttachmentConfiguration
|
|
302
270
|
* CrawlAttachments: true || false,
|
|
303
|
-
* AttachmentFieldMappings: [
|
|
304
|
-
* {
|
|
271
|
+
* AttachmentFieldMappings: [ // ConfluenceAttachmentFieldMappingsList
|
|
272
|
+
* { // ConfluenceAttachmentToIndexFieldMapping
|
|
305
273
|
* DataSourceFieldName: "AUTHOR" || "CONTENT_TYPE" || "CREATED_DATE" || "DISPLAY_URL" || "FILE_SIZE" || "ITEM_TYPE" || "PARENT_ID" || "SPACE_KEY" || "SPACE_NAME" || "URL" || "VERSION",
|
|
306
274
|
* DateFieldFormat: "STRING_VALUE",
|
|
307
275
|
* IndexFieldName: "STRING_VALUE",
|
|
@@ -316,12 +284,8 @@ export interface CreateDataSourceCommandOutput extends CreateDataSourceResponse,
|
|
|
316
284
|
* "STRING_VALUE",
|
|
317
285
|
* ],
|
|
318
286
|
* },
|
|
319
|
-
* InclusionPatterns:
|
|
320
|
-
*
|
|
321
|
-
* ],
|
|
322
|
-
* ExclusionPatterns: [
|
|
323
|
-
* "STRING_VALUE",
|
|
324
|
-
* ],
|
|
287
|
+
* InclusionPatterns: "<DataSourceInclusionsExclusionsStrings>",
|
|
288
|
+
* ExclusionPatterns: "<DataSourceInclusionsExclusionsStrings>",
|
|
325
289
|
* ProxyConfiguration: {
|
|
326
290
|
* Host: "STRING_VALUE", // required
|
|
327
291
|
* Port: Number("int"), // required
|
|
@@ -329,37 +293,31 @@ export interface CreateDataSourceCommandOutput extends CreateDataSourceResponse,
|
|
|
329
293
|
* },
|
|
330
294
|
* AuthenticationType: "HTTP_BASIC" || "PAT",
|
|
331
295
|
* },
|
|
332
|
-
* GoogleDriveConfiguration: {
|
|
296
|
+
* GoogleDriveConfiguration: { // GoogleDriveConfiguration
|
|
333
297
|
* SecretArn: "STRING_VALUE", // required
|
|
334
|
-
* InclusionPatterns:
|
|
298
|
+
* InclusionPatterns: "<DataSourceInclusionsExclusionsStrings>",
|
|
299
|
+
* ExclusionPatterns: "<DataSourceInclusionsExclusionsStrings>",
|
|
300
|
+
* FieldMappings: "<DataSourceToIndexFieldMappingList>",
|
|
301
|
+
* ExcludeMimeTypes: [ // ExcludeMimeTypesList
|
|
335
302
|
* "STRING_VALUE",
|
|
336
303
|
* ],
|
|
337
|
-
*
|
|
304
|
+
* ExcludeUserAccounts: [ // ExcludeUserAccountsList
|
|
338
305
|
* "STRING_VALUE",
|
|
339
306
|
* ],
|
|
340
|
-
*
|
|
341
|
-
* "<DataSourceToIndexFieldMappingList>",
|
|
342
|
-
* ],
|
|
343
|
-
* ExcludeMimeTypes: [
|
|
344
|
-
* "STRING_VALUE",
|
|
345
|
-
* ],
|
|
346
|
-
* ExcludeUserAccounts: [
|
|
347
|
-
* "STRING_VALUE",
|
|
348
|
-
* ],
|
|
349
|
-
* ExcludeSharedDrives: [
|
|
307
|
+
* ExcludeSharedDrives: [ // ExcludeSharedDrivesList
|
|
350
308
|
* "STRING_VALUE",
|
|
351
309
|
* ],
|
|
352
310
|
* },
|
|
353
|
-
* WebCrawlerConfiguration: {
|
|
354
|
-
* Urls: {
|
|
355
|
-
* SeedUrlConfiguration: {
|
|
356
|
-
* SeedUrls: [ // required
|
|
311
|
+
* WebCrawlerConfiguration: { // WebCrawlerConfiguration
|
|
312
|
+
* Urls: { // Urls
|
|
313
|
+
* SeedUrlConfiguration: { // SeedUrlConfiguration
|
|
314
|
+
* SeedUrls: [ // SeedUrlList // required
|
|
357
315
|
* "STRING_VALUE",
|
|
358
316
|
* ],
|
|
359
317
|
* WebCrawlerMode: "HOST_ONLY" || "SUBDOMAINS" || "EVERYTHING",
|
|
360
318
|
* },
|
|
361
|
-
* SiteMapsConfiguration: {
|
|
362
|
-
* SiteMaps: [ // required
|
|
319
|
+
* SiteMapsConfiguration: { // SiteMapsConfiguration
|
|
320
|
+
* SiteMaps: [ // SiteMapsList // required
|
|
363
321
|
* "STRING_VALUE",
|
|
364
322
|
* ],
|
|
365
323
|
* },
|
|
@@ -368,20 +326,16 @@ export interface CreateDataSourceCommandOutput extends CreateDataSourceResponse,
|
|
|
368
326
|
* MaxLinksPerPage: Number("int"),
|
|
369
327
|
* MaxContentSizePerPageInMegaBytes: Number("float"),
|
|
370
328
|
* MaxUrlsPerMinuteCrawlRate: Number("int"),
|
|
371
|
-
* UrlInclusionPatterns:
|
|
372
|
-
*
|
|
373
|
-
* ],
|
|
374
|
-
* UrlExclusionPatterns: [
|
|
375
|
-
* "STRING_VALUE",
|
|
376
|
-
* ],
|
|
329
|
+
* UrlInclusionPatterns: "<DataSourceInclusionsExclusionsStrings>",
|
|
330
|
+
* UrlExclusionPatterns: "<DataSourceInclusionsExclusionsStrings>",
|
|
377
331
|
* ProxyConfiguration: {
|
|
378
332
|
* Host: "STRING_VALUE", // required
|
|
379
333
|
* Port: Number("int"), // required
|
|
380
334
|
* Credentials: "STRING_VALUE",
|
|
381
335
|
* },
|
|
382
|
-
* AuthenticationConfiguration: {
|
|
383
|
-
* BasicAuthentication: [
|
|
384
|
-
* {
|
|
336
|
+
* AuthenticationConfiguration: { // AuthenticationConfiguration
|
|
337
|
+
* BasicAuthentication: [ // BasicAuthenticationConfigurationList
|
|
338
|
+
* { // BasicAuthenticationConfiguration
|
|
385
339
|
* Host: "STRING_VALUE", // required
|
|
386
340
|
* Port: Number("int"), // required
|
|
387
341
|
* Credentials: "STRING_VALUE", // required
|
|
@@ -389,21 +343,15 @@ export interface CreateDataSourceCommandOutput extends CreateDataSourceResponse,
|
|
|
389
343
|
* ],
|
|
390
344
|
* },
|
|
391
345
|
* },
|
|
392
|
-
* WorkDocsConfiguration: {
|
|
346
|
+
* WorkDocsConfiguration: { // WorkDocsConfiguration
|
|
393
347
|
* OrganizationId: "STRING_VALUE", // required
|
|
394
348
|
* CrawlComments: true || false,
|
|
395
349
|
* UseChangeLog: true || false,
|
|
396
|
-
* InclusionPatterns:
|
|
397
|
-
*
|
|
398
|
-
*
|
|
399
|
-
* ExclusionPatterns: [
|
|
400
|
-
* "STRING_VALUE",
|
|
401
|
-
* ],
|
|
402
|
-
* FieldMappings: [
|
|
403
|
-
* "<DataSourceToIndexFieldMappingList>",
|
|
404
|
-
* ],
|
|
350
|
+
* InclusionPatterns: "<DataSourceInclusionsExclusionsStrings>",
|
|
351
|
+
* ExclusionPatterns: "<DataSourceInclusionsExclusionsStrings>",
|
|
352
|
+
* FieldMappings: "<DataSourceToIndexFieldMappingList>",
|
|
405
353
|
* },
|
|
406
|
-
* FsxConfiguration: {
|
|
354
|
+
* FsxConfiguration: { // FsxConfiguration
|
|
407
355
|
* FileSystemId: "STRING_VALUE", // required
|
|
408
356
|
* FileSystemType: "WINDOWS", // required
|
|
409
357
|
* VpcConfiguration: {
|
|
@@ -415,17 +363,11 @@ export interface CreateDataSourceCommandOutput extends CreateDataSourceResponse,
|
|
|
415
363
|
* ],
|
|
416
364
|
* },
|
|
417
365
|
* SecretArn: "STRING_VALUE",
|
|
418
|
-
* InclusionPatterns:
|
|
419
|
-
*
|
|
420
|
-
*
|
|
421
|
-
* ExclusionPatterns: [
|
|
422
|
-
* "STRING_VALUE",
|
|
423
|
-
* ],
|
|
424
|
-
* FieldMappings: [
|
|
425
|
-
* "<DataSourceToIndexFieldMappingList>",
|
|
426
|
-
* ],
|
|
366
|
+
* InclusionPatterns: "<DataSourceInclusionsExclusionsStrings>",
|
|
367
|
+
* ExclusionPatterns: "<DataSourceInclusionsExclusionsStrings>",
|
|
368
|
+
* FieldMappings: "<DataSourceToIndexFieldMappingList>",
|
|
427
369
|
* },
|
|
428
|
-
* SlackConfiguration: {
|
|
370
|
+
* SlackConfiguration: { // SlackConfiguration
|
|
429
371
|
* TeamId: "STRING_VALUE", // required
|
|
430
372
|
* SecretArn: "STRING_VALUE", // required
|
|
431
373
|
* VpcConfiguration: {
|
|
@@ -436,7 +378,7 @@ export interface CreateDataSourceCommandOutput extends CreateDataSourceResponse,
|
|
|
436
378
|
* "STRING_VALUE",
|
|
437
379
|
* ],
|
|
438
380
|
* },
|
|
439
|
-
* SlackEntityList: [ // required
|
|
381
|
+
* SlackEntityList: [ // SlackEntityList // required
|
|
440
382
|
* "PUBLIC_CHANNEL" || "PRIVATE_CHANNEL" || "GROUP_MESSAGE" || "DIRECT_MESSAGE",
|
|
441
383
|
* ],
|
|
442
384
|
* UseChangeLog: true || false,
|
|
@@ -444,141 +386,78 @@ export interface CreateDataSourceCommandOutput extends CreateDataSourceResponse,
|
|
|
444
386
|
* ExcludeArchived: true || false,
|
|
445
387
|
* SinceCrawlDate: "STRING_VALUE", // required
|
|
446
388
|
* LookBackPeriod: Number("int"),
|
|
447
|
-
* PrivateChannelFilter: [
|
|
389
|
+
* PrivateChannelFilter: [ // PrivateChannelFilter
|
|
448
390
|
* "STRING_VALUE",
|
|
449
391
|
* ],
|
|
450
|
-
* PublicChannelFilter: [
|
|
392
|
+
* PublicChannelFilter: [ // PublicChannelFilter
|
|
451
393
|
* "STRING_VALUE",
|
|
452
394
|
* ],
|
|
453
|
-
* InclusionPatterns:
|
|
454
|
-
*
|
|
455
|
-
*
|
|
456
|
-
* ExclusionPatterns: [
|
|
457
|
-
* "STRING_VALUE",
|
|
458
|
-
* ],
|
|
459
|
-
* FieldMappings: [
|
|
460
|
-
* "<DataSourceToIndexFieldMappingList>",
|
|
461
|
-
* ],
|
|
395
|
+
* InclusionPatterns: "<DataSourceInclusionsExclusionsStrings>",
|
|
396
|
+
* ExclusionPatterns: "<DataSourceInclusionsExclusionsStrings>",
|
|
397
|
+
* FieldMappings: "<DataSourceToIndexFieldMappingList>",
|
|
462
398
|
* },
|
|
463
|
-
* BoxConfiguration: {
|
|
399
|
+
* BoxConfiguration: { // BoxConfiguration
|
|
464
400
|
* EnterpriseId: "STRING_VALUE", // required
|
|
465
401
|
* SecretArn: "STRING_VALUE", // required
|
|
466
402
|
* UseChangeLog: true || false,
|
|
467
403
|
* CrawlComments: true || false,
|
|
468
404
|
* CrawlTasks: true || false,
|
|
469
405
|
* CrawlWebLinks: true || false,
|
|
470
|
-
* FileFieldMappings:
|
|
471
|
-
*
|
|
472
|
-
*
|
|
473
|
-
*
|
|
474
|
-
*
|
|
475
|
-
*
|
|
476
|
-
*
|
|
477
|
-
* "<DataSourceToIndexFieldMappingList>",
|
|
478
|
-
* ],
|
|
479
|
-
* WebLinkFieldMappings: [
|
|
480
|
-
* "<DataSourceToIndexFieldMappingList>",
|
|
481
|
-
* ],
|
|
482
|
-
* InclusionPatterns: [
|
|
483
|
-
* "STRING_VALUE",
|
|
484
|
-
* ],
|
|
485
|
-
* ExclusionPatterns: [
|
|
486
|
-
* "STRING_VALUE",
|
|
487
|
-
* ],
|
|
488
|
-
* VpcConfiguration: {
|
|
489
|
-
* SubnetIds: [ // required
|
|
490
|
-
* "STRING_VALUE",
|
|
491
|
-
* ],
|
|
492
|
-
* SecurityGroupIds: [ // required
|
|
493
|
-
* "STRING_VALUE",
|
|
494
|
-
* ],
|
|
495
|
-
* },
|
|
406
|
+
* FileFieldMappings: "<DataSourceToIndexFieldMappingList>",
|
|
407
|
+
* TaskFieldMappings: "<DataSourceToIndexFieldMappingList>",
|
|
408
|
+
* CommentFieldMappings: "<DataSourceToIndexFieldMappingList>",
|
|
409
|
+
* WebLinkFieldMappings: "<DataSourceToIndexFieldMappingList>",
|
|
410
|
+
* InclusionPatterns: "<DataSourceInclusionsExclusionsStrings>",
|
|
411
|
+
* ExclusionPatterns: "<DataSourceInclusionsExclusionsStrings>",
|
|
412
|
+
* VpcConfiguration: "<DataSourceVpcConfiguration>",
|
|
496
413
|
* },
|
|
497
|
-
* QuipConfiguration: {
|
|
414
|
+
* QuipConfiguration: { // QuipConfiguration
|
|
498
415
|
* Domain: "STRING_VALUE", // required
|
|
499
416
|
* SecretArn: "STRING_VALUE", // required
|
|
500
417
|
* CrawlFileComments: true || false,
|
|
501
418
|
* CrawlChatRooms: true || false,
|
|
502
419
|
* CrawlAttachments: true || false,
|
|
503
|
-
* FolderIds: [
|
|
420
|
+
* FolderIds: [ // FolderIdList
|
|
504
421
|
* "STRING_VALUE",
|
|
505
422
|
* ],
|
|
506
|
-
* ThreadFieldMappings:
|
|
507
|
-
*
|
|
508
|
-
*
|
|
509
|
-
*
|
|
510
|
-
*
|
|
511
|
-
*
|
|
512
|
-
* AttachmentFieldMappings: [
|
|
513
|
-
* "<DataSourceToIndexFieldMappingList>",
|
|
514
|
-
* ],
|
|
515
|
-
* InclusionPatterns: [
|
|
516
|
-
* "STRING_VALUE",
|
|
517
|
-
* ],
|
|
518
|
-
* ExclusionPatterns: [
|
|
519
|
-
* "STRING_VALUE",
|
|
520
|
-
* ],
|
|
521
|
-
* VpcConfiguration: {
|
|
522
|
-
* SubnetIds: [ // required
|
|
523
|
-
* "STRING_VALUE",
|
|
524
|
-
* ],
|
|
525
|
-
* SecurityGroupIds: [ // required
|
|
526
|
-
* "STRING_VALUE",
|
|
527
|
-
* ],
|
|
528
|
-
* },
|
|
423
|
+
* ThreadFieldMappings: "<DataSourceToIndexFieldMappingList>",
|
|
424
|
+
* MessageFieldMappings: "<DataSourceToIndexFieldMappingList>",
|
|
425
|
+
* AttachmentFieldMappings: "<DataSourceToIndexFieldMappingList>",
|
|
426
|
+
* InclusionPatterns: "<DataSourceInclusionsExclusionsStrings>",
|
|
427
|
+
* ExclusionPatterns: "<DataSourceInclusionsExclusionsStrings>",
|
|
428
|
+
* VpcConfiguration: "<DataSourceVpcConfiguration>",
|
|
529
429
|
* },
|
|
530
|
-
* JiraConfiguration: {
|
|
430
|
+
* JiraConfiguration: { // JiraConfiguration
|
|
531
431
|
* JiraAccountUrl: "STRING_VALUE", // required
|
|
532
432
|
* SecretArn: "STRING_VALUE", // required
|
|
533
433
|
* UseChangeLog: true || false,
|
|
534
|
-
* Project: [
|
|
434
|
+
* Project: [ // Project
|
|
535
435
|
* "STRING_VALUE",
|
|
536
436
|
* ],
|
|
537
|
-
* IssueType: [
|
|
437
|
+
* IssueType: [ // IssueType
|
|
538
438
|
* "STRING_VALUE",
|
|
539
439
|
* ],
|
|
540
|
-
* Status: [
|
|
440
|
+
* Status: [ // JiraStatus
|
|
541
441
|
* "STRING_VALUE",
|
|
542
442
|
* ],
|
|
543
|
-
* IssueSubEntityFilter: [
|
|
443
|
+
* IssueSubEntityFilter: [ // IssueSubEntityFilter
|
|
544
444
|
* "COMMENTS" || "ATTACHMENTS" || "WORKLOGS",
|
|
545
445
|
* ],
|
|
546
|
-
* AttachmentFieldMappings:
|
|
547
|
-
*
|
|
548
|
-
*
|
|
549
|
-
*
|
|
550
|
-
*
|
|
551
|
-
*
|
|
552
|
-
*
|
|
553
|
-
*
|
|
554
|
-
* ],
|
|
555
|
-
* ProjectFieldMappings: [
|
|
556
|
-
* "<DataSourceToIndexFieldMappingList>",
|
|
557
|
-
* ],
|
|
558
|
-
* WorkLogFieldMappings: [
|
|
559
|
-
* "<DataSourceToIndexFieldMappingList>",
|
|
560
|
-
* ],
|
|
561
|
-
* InclusionPatterns: [
|
|
562
|
-
* "STRING_VALUE",
|
|
563
|
-
* ],
|
|
564
|
-
* ExclusionPatterns: [
|
|
565
|
-
* "STRING_VALUE",
|
|
566
|
-
* ],
|
|
567
|
-
* VpcConfiguration: {
|
|
568
|
-
* SubnetIds: [ // required
|
|
569
|
-
* "STRING_VALUE",
|
|
570
|
-
* ],
|
|
571
|
-
* SecurityGroupIds: [ // required
|
|
572
|
-
* "STRING_VALUE",
|
|
573
|
-
* ],
|
|
574
|
-
* },
|
|
446
|
+
* AttachmentFieldMappings: "<DataSourceToIndexFieldMappingList>",
|
|
447
|
+
* CommentFieldMappings: "<DataSourceToIndexFieldMappingList>",
|
|
448
|
+
* IssueFieldMappings: "<DataSourceToIndexFieldMappingList>",
|
|
449
|
+
* ProjectFieldMappings: "<DataSourceToIndexFieldMappingList>",
|
|
450
|
+
* WorkLogFieldMappings: "<DataSourceToIndexFieldMappingList>",
|
|
451
|
+
* InclusionPatterns: "<DataSourceInclusionsExclusionsStrings>",
|
|
452
|
+
* ExclusionPatterns: "<DataSourceInclusionsExclusionsStrings>",
|
|
453
|
+
* VpcConfiguration: "<DataSourceVpcConfiguration>",
|
|
575
454
|
* },
|
|
576
|
-
* GitHubConfiguration: {
|
|
577
|
-
* SaaSConfiguration: {
|
|
455
|
+
* GitHubConfiguration: { // GitHubConfiguration
|
|
456
|
+
* SaaSConfiguration: { // SaaSConfiguration
|
|
578
457
|
* OrganizationName: "STRING_VALUE", // required
|
|
579
458
|
* HostUrl: "STRING_VALUE", // required
|
|
580
459
|
* },
|
|
581
|
-
* OnPremiseConfiguration: {
|
|
460
|
+
* OnPremiseConfiguration: { // OnPremiseConfiguration
|
|
582
461
|
* HostUrl: "STRING_VALUE", // required
|
|
583
462
|
* OrganizationName: "STRING_VALUE", // required
|
|
584
463
|
* SslCertificateS3Path: {
|
|
@@ -589,7 +468,7 @@ export interface CreateDataSourceCommandOutput extends CreateDataSourceResponse,
|
|
|
589
468
|
* Type: "SAAS" || "ON_PREMISE",
|
|
590
469
|
* SecretArn: "STRING_VALUE", // required
|
|
591
470
|
* UseChangeLog: true || false,
|
|
592
|
-
* GitHubDocumentCrawlProperties: {
|
|
471
|
+
* GitHubDocumentCrawlProperties: { // GitHubDocumentCrawlProperties
|
|
593
472
|
* CrawlRepositoryDocuments: true || false,
|
|
594
473
|
* CrawlIssue: true || false,
|
|
595
474
|
* CrawlIssueComment: true || false,
|
|
@@ -598,10 +477,10 @@ export interface CreateDataSourceCommandOutput extends CreateDataSourceResponse,
|
|
|
598
477
|
* CrawlPullRequestComment: true || false,
|
|
599
478
|
* CrawlPullRequestCommentAttachment: true || false,
|
|
600
479
|
* },
|
|
601
|
-
* RepositoryFilter: [
|
|
480
|
+
* RepositoryFilter: [ // RepositoryNames
|
|
602
481
|
* "STRING_VALUE",
|
|
603
482
|
* ],
|
|
604
|
-
* InclusionFolderNamePatterns: [
|
|
483
|
+
* InclusionFolderNamePatterns: [ // StringList
|
|
605
484
|
* "STRING_VALUE",
|
|
606
485
|
* ],
|
|
607
486
|
* InclusionFileTypePatterns: [
|
|
@@ -616,43 +495,18 @@ export interface CreateDataSourceCommandOutput extends CreateDataSourceResponse,
|
|
|
616
495
|
* ExclusionFileTypePatterns: [
|
|
617
496
|
* "STRING_VALUE",
|
|
618
497
|
* ],
|
|
619
|
-
* ExclusionFileNamePatterns:
|
|
620
|
-
*
|
|
621
|
-
*
|
|
622
|
-
*
|
|
623
|
-
*
|
|
624
|
-
*
|
|
625
|
-
*
|
|
626
|
-
*
|
|
627
|
-
*
|
|
628
|
-
*
|
|
629
|
-
* },
|
|
630
|
-
* GitHubRepositoryConfigurationFieldMappings: [
|
|
631
|
-
* "<DataSourceToIndexFieldMappingList>",
|
|
632
|
-
* ],
|
|
633
|
-
* GitHubCommitConfigurationFieldMappings: [
|
|
634
|
-
* "<DataSourceToIndexFieldMappingList>",
|
|
635
|
-
* ],
|
|
636
|
-
* GitHubIssueDocumentConfigurationFieldMappings: [
|
|
637
|
-
* "<DataSourceToIndexFieldMappingList>",
|
|
638
|
-
* ],
|
|
639
|
-
* GitHubIssueCommentConfigurationFieldMappings: [
|
|
640
|
-
* "<DataSourceToIndexFieldMappingList>",
|
|
641
|
-
* ],
|
|
642
|
-
* GitHubIssueAttachmentConfigurationFieldMappings: [
|
|
643
|
-
* "<DataSourceToIndexFieldMappingList>",
|
|
644
|
-
* ],
|
|
645
|
-
* GitHubPullRequestCommentConfigurationFieldMappings: [
|
|
646
|
-
* "<DataSourceToIndexFieldMappingList>",
|
|
647
|
-
* ],
|
|
648
|
-
* GitHubPullRequestDocumentConfigurationFieldMappings: [
|
|
649
|
-
* "<DataSourceToIndexFieldMappingList>",
|
|
650
|
-
* ],
|
|
651
|
-
* GitHubPullRequestDocumentAttachmentConfigurationFieldMappings: [
|
|
652
|
-
* "<DataSourceToIndexFieldMappingList>",
|
|
653
|
-
* ],
|
|
498
|
+
* ExclusionFileNamePatterns: "<StringList>",
|
|
499
|
+
* VpcConfiguration: "<DataSourceVpcConfiguration>",
|
|
500
|
+
* GitHubRepositoryConfigurationFieldMappings: "<DataSourceToIndexFieldMappingList>",
|
|
501
|
+
* GitHubCommitConfigurationFieldMappings: "<DataSourceToIndexFieldMappingList>",
|
|
502
|
+
* GitHubIssueDocumentConfigurationFieldMappings: "<DataSourceToIndexFieldMappingList>",
|
|
503
|
+
* GitHubIssueCommentConfigurationFieldMappings: "<DataSourceToIndexFieldMappingList>",
|
|
504
|
+
* GitHubIssueAttachmentConfigurationFieldMappings: "<DataSourceToIndexFieldMappingList>",
|
|
505
|
+
* GitHubPullRequestCommentConfigurationFieldMappings: "<DataSourceToIndexFieldMappingList>",
|
|
506
|
+
* GitHubPullRequestDocumentConfigurationFieldMappings: "<DataSourceToIndexFieldMappingList>",
|
|
507
|
+
* GitHubPullRequestDocumentAttachmentConfigurationFieldMappings: "<DataSourceToIndexFieldMappingList>",
|
|
654
508
|
* },
|
|
655
|
-
* AlfrescoConfiguration: {
|
|
509
|
+
* AlfrescoConfiguration: { // AlfrescoConfiguration
|
|
656
510
|
* SiteUrl: "STRING_VALUE", // required
|
|
657
511
|
* SiteId: "STRING_VALUE", // required
|
|
658
512
|
* SecretArn: "STRING_VALUE", // required
|
|
@@ -662,72 +516,48 @@ export interface CreateDataSourceCommandOutput extends CreateDataSourceResponse,
|
|
|
662
516
|
* },
|
|
663
517
|
* CrawlSystemFolders: true || false,
|
|
664
518
|
* CrawlComments: true || false,
|
|
665
|
-
* EntityFilter: [
|
|
519
|
+
* EntityFilter: [ // EntityFilter
|
|
666
520
|
* "wiki" || "blog" || "documentLibrary",
|
|
667
521
|
* ],
|
|
668
|
-
* DocumentLibraryFieldMappings:
|
|
669
|
-
*
|
|
670
|
-
*
|
|
671
|
-
*
|
|
672
|
-
*
|
|
673
|
-
*
|
|
674
|
-
* WikiFieldMappings: [
|
|
675
|
-
* "<DataSourceToIndexFieldMappingList>",
|
|
676
|
-
* ],
|
|
677
|
-
* InclusionPatterns: [
|
|
678
|
-
* "STRING_VALUE",
|
|
679
|
-
* ],
|
|
680
|
-
* ExclusionPatterns: [
|
|
681
|
-
* "STRING_VALUE",
|
|
682
|
-
* ],
|
|
683
|
-
* VpcConfiguration: {
|
|
684
|
-
* SubnetIds: [ // required
|
|
685
|
-
* "STRING_VALUE",
|
|
686
|
-
* ],
|
|
687
|
-
* SecurityGroupIds: [ // required
|
|
688
|
-
* "STRING_VALUE",
|
|
689
|
-
* ],
|
|
690
|
-
* },
|
|
522
|
+
* DocumentLibraryFieldMappings: "<DataSourceToIndexFieldMappingList>",
|
|
523
|
+
* BlogFieldMappings: "<DataSourceToIndexFieldMappingList>",
|
|
524
|
+
* WikiFieldMappings: "<DataSourceToIndexFieldMappingList>",
|
|
525
|
+
* InclusionPatterns: "<DataSourceInclusionsExclusionsStrings>",
|
|
526
|
+
* ExclusionPatterns: "<DataSourceInclusionsExclusionsStrings>",
|
|
527
|
+
* VpcConfiguration: "<DataSourceVpcConfiguration>",
|
|
691
528
|
* },
|
|
692
|
-
* TemplateConfiguration: {
|
|
529
|
+
* TemplateConfiguration: { // TemplateConfiguration
|
|
693
530
|
* Template: "DOCUMENT_VALUE",
|
|
694
531
|
* },
|
|
695
532
|
* },
|
|
696
|
-
* VpcConfiguration:
|
|
697
|
-
* SubnetIds: [ // required
|
|
698
|
-
* "STRING_VALUE",
|
|
699
|
-
* ],
|
|
700
|
-
* SecurityGroupIds: [ // required
|
|
701
|
-
* "STRING_VALUE",
|
|
702
|
-
* ],
|
|
703
|
-
* },
|
|
533
|
+
* VpcConfiguration: "<DataSourceVpcConfiguration>",
|
|
704
534
|
* Description: "STRING_VALUE",
|
|
705
535
|
* Schedule: "STRING_VALUE",
|
|
706
536
|
* RoleArn: "STRING_VALUE",
|
|
707
|
-
* Tags: [
|
|
708
|
-
* {
|
|
537
|
+
* Tags: [ // TagList
|
|
538
|
+
* { // Tag
|
|
709
539
|
* Key: "STRING_VALUE", // required
|
|
710
540
|
* Value: "STRING_VALUE", // required
|
|
711
541
|
* },
|
|
712
542
|
* ],
|
|
713
543
|
* ClientToken: "STRING_VALUE",
|
|
714
544
|
* LanguageCode: "STRING_VALUE",
|
|
715
|
-
* CustomDocumentEnrichmentConfiguration: {
|
|
716
|
-
* InlineConfigurations: [
|
|
717
|
-
* {
|
|
718
|
-
* Condition: {
|
|
545
|
+
* CustomDocumentEnrichmentConfiguration: { // CustomDocumentEnrichmentConfiguration
|
|
546
|
+
* InlineConfigurations: [ // InlineCustomDocumentEnrichmentConfigurationList
|
|
547
|
+
* { // InlineCustomDocumentEnrichmentConfiguration
|
|
548
|
+
* Condition: { // DocumentAttributeCondition
|
|
719
549
|
* ConditionDocumentAttributeKey: "STRING_VALUE", // required
|
|
720
550
|
* Operator: "GreaterThan" || "GreaterThanOrEquals" || "LessThan" || "LessThanOrEquals" || "Equals" || "NotEquals" || "Contains" || "NotContains" || "Exists" || "NotExists" || "BeginsWith", // required
|
|
721
|
-
* ConditionOnValue: {
|
|
551
|
+
* ConditionOnValue: { // DocumentAttributeValue
|
|
722
552
|
* StringValue: "STRING_VALUE",
|
|
723
|
-
* StringListValue: [
|
|
553
|
+
* StringListValue: [ // DocumentAttributeStringListValue
|
|
724
554
|
* "STRING_VALUE",
|
|
725
555
|
* ],
|
|
726
556
|
* LongValue: Number("long"),
|
|
727
557
|
* DateValue: new Date("TIMESTAMP"),
|
|
728
558
|
* },
|
|
729
559
|
* },
|
|
730
|
-
* Target: {
|
|
560
|
+
* Target: { // DocumentAttributeTarget
|
|
731
561
|
* TargetDocumentAttributeKey: "STRING_VALUE",
|
|
732
562
|
* TargetDocumentAttributeValueDeletion: true || false,
|
|
733
563
|
* TargetDocumentAttributeValue: {
|
|
@@ -742,7 +572,7 @@ export interface CreateDataSourceCommandOutput extends CreateDataSourceResponse,
|
|
|
742
572
|
* DocumentContentDeletion: true || false,
|
|
743
573
|
* },
|
|
744
574
|
* ],
|
|
745
|
-
* PreExtractionHookConfiguration: {
|
|
575
|
+
* PreExtractionHookConfiguration: { // HookConfiguration
|
|
746
576
|
* InvocationCondition: {
|
|
747
577
|
* ConditionDocumentAttributeKey: "STRING_VALUE", // required
|
|
748
578
|
* Operator: "GreaterThan" || "GreaterThanOrEquals" || "LessThan" || "LessThanOrEquals" || "Equals" || "NotEquals" || "Contains" || "NotContains" || "Exists" || "NotExists" || "BeginsWith", // required
|