@aws-sdk/client-cloudsearch 3.687.0 → 3.692.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/models/models_0.d.ts +135 -135
- package/dist-types/ts3.4/models/models_0.d.ts +135 -135
- package/package.json +35 -35
|
@@ -11,12 +11,12 @@ export declare class BaseException extends __BaseException {
|
|
|
11
11
|
* <p>A machine-parsable string error or warning code.</p>
|
|
12
12
|
* @public
|
|
13
13
|
*/
|
|
14
|
-
Code?: string;
|
|
14
|
+
Code?: string | undefined;
|
|
15
15
|
/**
|
|
16
16
|
* <p>A human-readable string error or warning message.</p>
|
|
17
17
|
* @public
|
|
18
18
|
*/
|
|
19
|
-
Message?: string;
|
|
19
|
+
Message?: string | undefined;
|
|
20
20
|
/**
|
|
21
21
|
* @internal
|
|
22
22
|
*/
|
|
@@ -42,7 +42,7 @@ export interface BuildSuggestersResponse {
|
|
|
42
42
|
* <p>A list of field names.</p>
|
|
43
43
|
* @public
|
|
44
44
|
*/
|
|
45
|
-
FieldNames?: string[];
|
|
45
|
+
FieldNames?: string[] | undefined;
|
|
46
46
|
}
|
|
47
47
|
/**
|
|
48
48
|
* <p>An internal error occurred while processing the request. If this problem persists,
|
|
@@ -56,12 +56,12 @@ export declare class InternalException extends __BaseException {
|
|
|
56
56
|
* <p>A machine-parsable string error or warning code.</p>
|
|
57
57
|
* @public
|
|
58
58
|
*/
|
|
59
|
-
Code?: string;
|
|
59
|
+
Code?: string | undefined;
|
|
60
60
|
/**
|
|
61
61
|
* <p>A human-readable string error or warning message.</p>
|
|
62
62
|
* @public
|
|
63
63
|
*/
|
|
64
|
-
Message?: string;
|
|
64
|
+
Message?: string | undefined;
|
|
65
65
|
/**
|
|
66
66
|
* @internal
|
|
67
67
|
*/
|
|
@@ -78,12 +78,12 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
78
78
|
* <p>A machine-parsable string error or warning code.</p>
|
|
79
79
|
* @public
|
|
80
80
|
*/
|
|
81
|
-
Code?: string;
|
|
81
|
+
Code?: string | undefined;
|
|
82
82
|
/**
|
|
83
83
|
* <p>A human-readable string error or warning message.</p>
|
|
84
84
|
* @public
|
|
85
85
|
*/
|
|
86
|
-
Message?: string;
|
|
86
|
+
Message?: string | undefined;
|
|
87
87
|
/**
|
|
88
88
|
* @internal
|
|
89
89
|
*/
|
|
@@ -100,12 +100,12 @@ export declare class ValidationException extends __BaseException {
|
|
|
100
100
|
* <p>A machine-parsable string error or warning code.</p>
|
|
101
101
|
* @public
|
|
102
102
|
*/
|
|
103
|
-
Code?: string;
|
|
103
|
+
Code?: string | undefined;
|
|
104
104
|
/**
|
|
105
105
|
* <p>A human-readable string error or warning message.</p>
|
|
106
106
|
* @public
|
|
107
107
|
*/
|
|
108
|
-
Message?: string;
|
|
108
|
+
Message?: string | undefined;
|
|
109
109
|
/**
|
|
110
110
|
* @internal
|
|
111
111
|
*/
|
|
@@ -131,7 +131,7 @@ export interface ServiceEndpoint {
|
|
|
131
131
|
* <p>The endpoint to which service requests can be submitted. For example, <code>search-imdb-movies-oopcnjfn6ugofer3zx5iadxxca.eu-west-1.cloudsearch.amazonaws.com</code> or <code>doc-imdb-movies-oopcnjfn6ugofer3zx5iadxxca.eu-west-1.cloudsearch.amazonaws.com</code>.</p>
|
|
132
132
|
* @public
|
|
133
133
|
*/
|
|
134
|
-
Endpoint?: string;
|
|
134
|
+
Endpoint?: string | undefined;
|
|
135
135
|
}
|
|
136
136
|
/**
|
|
137
137
|
* @public
|
|
@@ -159,27 +159,27 @@ export interface DomainStatus {
|
|
|
159
159
|
* <p>The Amazon Resource Name (ARN) of the search domain. See <a href="http://docs.aws.amazon.com/IAM/latest/UserGuide/index.html?Using_Identifiers.html" target="_blank">Identifiers for IAM Entities</a> in <i>Using AWS Identity and Access Management</i> for more information.</p>
|
|
160
160
|
* @public
|
|
161
161
|
*/
|
|
162
|
-
ARN?: string;
|
|
162
|
+
ARN?: string | undefined;
|
|
163
163
|
/**
|
|
164
164
|
* <p>True if the search domain is created. It can take several minutes to initialize a domain when <a>CreateDomain</a> is called. Newly created search domains are returned from <a>DescribeDomains</a> with a false value for Created until domain creation is complete.</p>
|
|
165
165
|
* @public
|
|
166
166
|
*/
|
|
167
|
-
Created?: boolean;
|
|
167
|
+
Created?: boolean | undefined;
|
|
168
168
|
/**
|
|
169
169
|
* <p>True if the search domain has been deleted. The system must clean up resources dedicated to the search domain when <a>DeleteDomain</a> is called. Newly deleted search domains are returned from <a>DescribeDomains</a> with a true value for IsDeleted for several minutes until resource cleanup is complete.</p>
|
|
170
170
|
* @public
|
|
171
171
|
*/
|
|
172
|
-
Deleted?: boolean;
|
|
172
|
+
Deleted?: boolean | undefined;
|
|
173
173
|
/**
|
|
174
174
|
* <p>The service endpoint for updating documents in a search domain.</p>
|
|
175
175
|
* @public
|
|
176
176
|
*/
|
|
177
|
-
DocService?: ServiceEndpoint;
|
|
177
|
+
DocService?: ServiceEndpoint | undefined;
|
|
178
178
|
/**
|
|
179
179
|
* <p>The service endpoint for requesting search results from a search domain.</p>
|
|
180
180
|
* @public
|
|
181
181
|
*/
|
|
182
|
-
SearchService?: ServiceEndpoint;
|
|
182
|
+
SearchService?: ServiceEndpoint | undefined;
|
|
183
183
|
/**
|
|
184
184
|
* <p>True if <a>IndexDocuments</a> needs to be called to activate the current domain configuration.</p>
|
|
185
185
|
* @public
|
|
@@ -189,23 +189,23 @@ export interface DomainStatus {
|
|
|
189
189
|
* <p>True if processing is being done to activate the current domain configuration.</p>
|
|
190
190
|
* @public
|
|
191
191
|
*/
|
|
192
|
-
Processing?: boolean;
|
|
192
|
+
Processing?: boolean | undefined;
|
|
193
193
|
/**
|
|
194
194
|
* <p>The instance type that is being used to process search requests.</p>
|
|
195
195
|
* @public
|
|
196
196
|
*/
|
|
197
|
-
SearchInstanceType?: string;
|
|
197
|
+
SearchInstanceType?: string | undefined;
|
|
198
198
|
/**
|
|
199
199
|
* <p>The number of partitions across which the search index is spread.</p>
|
|
200
200
|
* @public
|
|
201
201
|
*/
|
|
202
|
-
SearchPartitionCount?: number;
|
|
202
|
+
SearchPartitionCount?: number | undefined;
|
|
203
203
|
/**
|
|
204
204
|
* <p>The number of search instances that are available to process search requests.</p>
|
|
205
205
|
* @public
|
|
206
206
|
*/
|
|
207
|
-
SearchInstanceCount?: number;
|
|
208
|
-
Limits?: Limits;
|
|
207
|
+
SearchInstanceCount?: number | undefined;
|
|
208
|
+
Limits?: Limits | undefined;
|
|
209
209
|
}
|
|
210
210
|
/**
|
|
211
211
|
* <p>The result of a <code>CreateDomainRequest</code>. Contains the status of a newly created domain.</p>
|
|
@@ -216,7 +216,7 @@ export interface CreateDomainResponse {
|
|
|
216
216
|
* <p>The current status of the search domain.</p>
|
|
217
217
|
* @public
|
|
218
218
|
*/
|
|
219
|
-
DomainStatus?: DomainStatus;
|
|
219
|
+
DomainStatus?: DomainStatus | undefined;
|
|
220
220
|
}
|
|
221
221
|
/**
|
|
222
222
|
* <p>The request was rejected because a resource limit has already been met.</p>
|
|
@@ -229,12 +229,12 @@ export declare class LimitExceededException extends __BaseException {
|
|
|
229
229
|
* <p>A machine-parsable string error or warning code.</p>
|
|
230
230
|
* @public
|
|
231
231
|
*/
|
|
232
|
-
Code?: string;
|
|
232
|
+
Code?: string | undefined;
|
|
233
233
|
/**
|
|
234
234
|
* <p>A human-readable string error or warning message.</p>
|
|
235
235
|
* @public
|
|
236
236
|
*/
|
|
237
|
-
Message?: string;
|
|
237
|
+
Message?: string | undefined;
|
|
238
238
|
/**
|
|
239
239
|
* @internal
|
|
240
240
|
*/
|
|
@@ -251,12 +251,12 @@ export declare class ResourceAlreadyExistsException extends __BaseException {
|
|
|
251
251
|
* <p>A machine-parsable string error or warning code.</p>
|
|
252
252
|
* @public
|
|
253
253
|
*/
|
|
254
|
-
Code?: string;
|
|
254
|
+
Code?: string | undefined;
|
|
255
255
|
/**
|
|
256
256
|
* <p>A human-readable string error or warning message.</p>
|
|
257
257
|
* @public
|
|
258
258
|
*/
|
|
259
|
-
Message?: string;
|
|
259
|
+
Message?: string | undefined;
|
|
260
260
|
/**
|
|
261
261
|
* @internal
|
|
262
262
|
*/
|
|
@@ -285,27 +285,27 @@ export interface AnalysisOptions {
|
|
|
285
285
|
* <p>A JSON object that defines synonym groups and aliases. A synonym group is an array of arrays, where each sub-array is a group of terms where each term in the group is considered a synonym of every other term in the group. The aliases value is an object that contains a collection of string:value pairs where the string specifies a term and the array of values specifies each of the aliases for that term. An alias is considered a synonym of the specified term, but the term is not considered a synonym of the alias. For more information about specifying synonyms, see <a href="http://docs.aws.amazon.com/cloudsearch/latest/developerguide/configuring-analysis-schemes.html#synonyms">Synonyms</a> in the <i>Amazon CloudSearch Developer Guide</i>.</p>
|
|
286
286
|
* @public
|
|
287
287
|
*/
|
|
288
|
-
Synonyms?: string;
|
|
288
|
+
Synonyms?: string | undefined;
|
|
289
289
|
/**
|
|
290
290
|
* <p>A JSON array of terms to ignore during indexing and searching. For example, <code>["a", "an", "the", "of"]</code>. The stopwords dictionary must explicitly list each word you want to ignore. Wildcards and regular expressions are not supported. </p>
|
|
291
291
|
* @public
|
|
292
292
|
*/
|
|
293
|
-
Stopwords?: string;
|
|
293
|
+
Stopwords?: string | undefined;
|
|
294
294
|
/**
|
|
295
295
|
* <p>A JSON object that contains a collection of string:value pairs that each map a term to its stem. For example, <code>\{"term1": "stem1", "term2": "stem2", "term3": "stem3"\}</code>. The stemming dictionary is applied in addition to any algorithmic stemming. This enables you to override the results of the algorithmic stemming to correct specific cases of overstemming or understemming. The maximum size of a stemming dictionary is 500 KB.</p>
|
|
296
296
|
* @public
|
|
297
297
|
*/
|
|
298
|
-
StemmingDictionary?: string;
|
|
298
|
+
StemmingDictionary?: string | undefined;
|
|
299
299
|
/**
|
|
300
300
|
* <p>A JSON array that contains a collection of terms, tokens, readings and part of speech for Japanese Tokenizaiton. The Japanese tokenization dictionary enables you to override the default tokenization for selected terms. This is only valid for Japanese language fields.</p>
|
|
301
301
|
* @public
|
|
302
302
|
*/
|
|
303
|
-
JapaneseTokenizationDictionary?: string;
|
|
303
|
+
JapaneseTokenizationDictionary?: string | undefined;
|
|
304
304
|
/**
|
|
305
305
|
* <p>The level of algorithmic stemming to perform: <code>none</code>, <code>minimal</code>, <code>light</code>, or <code>full</code>. The available levels vary depending on the language. For more information, see <a href="http://docs.aws.amazon.com/cloudsearch/latest/developerguide/text-processing.html#text-processing-settings" target="_blank">Language Specific Text Processing Settings</a> in the <i>Amazon CloudSearch Developer Guide</i> </p>
|
|
306
306
|
* @public
|
|
307
307
|
*/
|
|
308
|
-
AlgorithmicStemming?: AlgorithmicStemming;
|
|
308
|
+
AlgorithmicStemming?: AlgorithmicStemming | undefined;
|
|
309
309
|
}
|
|
310
310
|
/**
|
|
311
311
|
* @public
|
|
@@ -372,7 +372,7 @@ export interface AnalysisScheme {
|
|
|
372
372
|
* <p>Synonyms, stopwords, and stemming options for an analysis scheme. Includes tokenization dictionary for Japanese.</p>
|
|
373
373
|
* @public
|
|
374
374
|
*/
|
|
375
|
-
AnalysisOptions?: AnalysisOptions;
|
|
375
|
+
AnalysisOptions?: AnalysisOptions | undefined;
|
|
376
376
|
}
|
|
377
377
|
/**
|
|
378
378
|
* <p>Container for the parameters to the <code><a>DefineAnalysisScheme</a></code> operation. Specifies the name of the domain you want to update and the analysis scheme configuration.</p>
|
|
@@ -423,7 +423,7 @@ export interface OptionStatus {
|
|
|
423
423
|
* <p>A unique integer that indicates when this option was last updated.</p>
|
|
424
424
|
* @public
|
|
425
425
|
*/
|
|
426
|
-
UpdateVersion?: number;
|
|
426
|
+
UpdateVersion?: number | undefined;
|
|
427
427
|
/**
|
|
428
428
|
* <p>The state of processing a change to an option. Possible values:</p><ul>
|
|
429
429
|
* <li><code>RequiresIndexDocuments</code>: the option's latest value will not be deployed until <a>IndexDocuments</a> has been called and indexing is complete.</li>
|
|
@@ -438,7 +438,7 @@ export interface OptionStatus {
|
|
|
438
438
|
* <p>Indicates that the option will be deleted once processing is complete.</p>
|
|
439
439
|
* @public
|
|
440
440
|
*/
|
|
441
|
-
PendingDeletion?: boolean;
|
|
441
|
+
PendingDeletion?: boolean | undefined;
|
|
442
442
|
}
|
|
443
443
|
/**
|
|
444
444
|
* <p>The status and configuration of an <code>AnalysisScheme</code>.</p>
|
|
@@ -478,12 +478,12 @@ export declare class InvalidTypeException extends __BaseException {
|
|
|
478
478
|
* <p>A machine-parsable string error or warning code.</p>
|
|
479
479
|
* @public
|
|
480
480
|
*/
|
|
481
|
-
Code?: string;
|
|
481
|
+
Code?: string | undefined;
|
|
482
482
|
/**
|
|
483
483
|
* <p>A human-readable string error or warning message.</p>
|
|
484
484
|
* @public
|
|
485
485
|
*/
|
|
486
|
-
Message?: string;
|
|
486
|
+
Message?: string | undefined;
|
|
487
487
|
/**
|
|
488
488
|
* @internal
|
|
489
489
|
*/
|
|
@@ -558,27 +558,27 @@ export interface DateArrayOptions {
|
|
|
558
558
|
* A value to use for the field if the field isn't specified for a document.
|
|
559
559
|
* @public
|
|
560
560
|
*/
|
|
561
|
-
DefaultValue?: string;
|
|
561
|
+
DefaultValue?: string | undefined;
|
|
562
562
|
/**
|
|
563
563
|
* <p>A list of source fields to map to the field. </p>
|
|
564
564
|
* @public
|
|
565
565
|
*/
|
|
566
|
-
SourceFields?: string;
|
|
566
|
+
SourceFields?: string | undefined;
|
|
567
567
|
/**
|
|
568
568
|
* <p>Whether facet information can be returned for the field.</p>
|
|
569
569
|
* @public
|
|
570
570
|
*/
|
|
571
|
-
FacetEnabled?: boolean;
|
|
571
|
+
FacetEnabled?: boolean | undefined;
|
|
572
572
|
/**
|
|
573
573
|
* <p>Whether the contents of the field are searchable.</p>
|
|
574
574
|
* @public
|
|
575
575
|
*/
|
|
576
|
-
SearchEnabled?: boolean;
|
|
576
|
+
SearchEnabled?: boolean | undefined;
|
|
577
577
|
/**
|
|
578
578
|
* <p>Whether the contents of the field can be returned in the search results.</p>
|
|
579
579
|
* @public
|
|
580
580
|
*/
|
|
581
|
-
ReturnEnabled?: boolean;
|
|
581
|
+
ReturnEnabled?: boolean | undefined;
|
|
582
582
|
}
|
|
583
583
|
/**
|
|
584
584
|
* <p>Options for a date field. Dates and times are specified in UTC (Coordinated Universal Time) according to IETF RFC3339: yyyy-mm-ddT00:00:00Z. Present if <code>IndexFieldType</code> specifies the field is of type <code>date</code>. All options are enabled by default.</p>
|
|
@@ -589,7 +589,7 @@ export interface DateOptions {
|
|
|
589
589
|
* A value to use for the field if the field isn't specified for a document.
|
|
590
590
|
* @public
|
|
591
591
|
*/
|
|
592
|
-
DefaultValue?: string;
|
|
592
|
+
DefaultValue?: string | undefined;
|
|
593
593
|
/**
|
|
594
594
|
* <p>A string that represents the name of an index field. CloudSearch supports regular index fields as well as dynamic fields.
|
|
595
595
|
* A dynamic field's name defines a pattern that begins or ends with a wildcard.
|
|
@@ -607,27 +607,27 @@ export interface DateOptions {
|
|
|
607
607
|
* </p>
|
|
608
608
|
* @public
|
|
609
609
|
*/
|
|
610
|
-
SourceField?: string;
|
|
610
|
+
SourceField?: string | undefined;
|
|
611
611
|
/**
|
|
612
612
|
* <p>Whether facet information can be returned for the field.</p>
|
|
613
613
|
* @public
|
|
614
614
|
*/
|
|
615
|
-
FacetEnabled?: boolean;
|
|
615
|
+
FacetEnabled?: boolean | undefined;
|
|
616
616
|
/**
|
|
617
617
|
* <p>Whether the contents of the field are searchable.</p>
|
|
618
618
|
* @public
|
|
619
619
|
*/
|
|
620
|
-
SearchEnabled?: boolean;
|
|
620
|
+
SearchEnabled?: boolean | undefined;
|
|
621
621
|
/**
|
|
622
622
|
* <p>Whether the contents of the field can be returned in the search results.</p>
|
|
623
623
|
* @public
|
|
624
624
|
*/
|
|
625
|
-
ReturnEnabled?: boolean;
|
|
625
|
+
ReturnEnabled?: boolean | undefined;
|
|
626
626
|
/**
|
|
627
627
|
* <p>Whether the field can be used to sort the search results.</p>
|
|
628
628
|
* @public
|
|
629
629
|
*/
|
|
630
|
-
SortEnabled?: boolean;
|
|
630
|
+
SortEnabled?: boolean | undefined;
|
|
631
631
|
}
|
|
632
632
|
/**
|
|
633
633
|
* <p>Options for a field that contains an array of double-precision 64-bit floating point values. Present if <code>IndexFieldType</code> specifies the field is of type <code>double-array</code>. All options are enabled by default.</p>
|
|
@@ -638,27 +638,27 @@ export interface DoubleArrayOptions {
|
|
|
638
638
|
* A value to use for the field if the field isn't specified for a document.
|
|
639
639
|
* @public
|
|
640
640
|
*/
|
|
641
|
-
DefaultValue?: number;
|
|
641
|
+
DefaultValue?: number | undefined;
|
|
642
642
|
/**
|
|
643
643
|
* <p>A list of source fields to map to the field. </p>
|
|
644
644
|
* @public
|
|
645
645
|
*/
|
|
646
|
-
SourceFields?: string;
|
|
646
|
+
SourceFields?: string | undefined;
|
|
647
647
|
/**
|
|
648
648
|
* <p>Whether facet information can be returned for the field.</p>
|
|
649
649
|
* @public
|
|
650
650
|
*/
|
|
651
|
-
FacetEnabled?: boolean;
|
|
651
|
+
FacetEnabled?: boolean | undefined;
|
|
652
652
|
/**
|
|
653
653
|
* <p>Whether the contents of the field are searchable.</p>
|
|
654
654
|
* @public
|
|
655
655
|
*/
|
|
656
|
-
SearchEnabled?: boolean;
|
|
656
|
+
SearchEnabled?: boolean | undefined;
|
|
657
657
|
/**
|
|
658
658
|
* <p>Whether the contents of the field can be returned in the search results.</p>
|
|
659
659
|
* @public
|
|
660
660
|
*/
|
|
661
|
-
ReturnEnabled?: boolean;
|
|
661
|
+
ReturnEnabled?: boolean | undefined;
|
|
662
662
|
}
|
|
663
663
|
/**
|
|
664
664
|
* <p>Options for a double-precision 64-bit floating point field. Present if <code>IndexFieldType</code> specifies the field is of type <code>double</code>. All options are enabled by default.</p>
|
|
@@ -669,32 +669,32 @@ export interface DoubleOptions {
|
|
|
669
669
|
* <p>A value to use for the field if the field isn't specified for a document. This can be important if you are using the field in an expression and that field is not present in every document.</p>
|
|
670
670
|
* @public
|
|
671
671
|
*/
|
|
672
|
-
DefaultValue?: number;
|
|
672
|
+
DefaultValue?: number | undefined;
|
|
673
673
|
/**
|
|
674
674
|
* <p>The name of the source field to map to the field. </p>
|
|
675
675
|
* @public
|
|
676
676
|
*/
|
|
677
|
-
SourceField?: string;
|
|
677
|
+
SourceField?: string | undefined;
|
|
678
678
|
/**
|
|
679
679
|
* <p>Whether facet information can be returned for the field.</p>
|
|
680
680
|
* @public
|
|
681
681
|
*/
|
|
682
|
-
FacetEnabled?: boolean;
|
|
682
|
+
FacetEnabled?: boolean | undefined;
|
|
683
683
|
/**
|
|
684
684
|
* <p>Whether the contents of the field are searchable.</p>
|
|
685
685
|
* @public
|
|
686
686
|
*/
|
|
687
|
-
SearchEnabled?: boolean;
|
|
687
|
+
SearchEnabled?: boolean | undefined;
|
|
688
688
|
/**
|
|
689
689
|
* <p>Whether the contents of the field can be returned in the search results.</p>
|
|
690
690
|
* @public
|
|
691
691
|
*/
|
|
692
|
-
ReturnEnabled?: boolean;
|
|
692
|
+
ReturnEnabled?: boolean | undefined;
|
|
693
693
|
/**
|
|
694
694
|
* <p>Whether the field can be used to sort the search results.</p>
|
|
695
695
|
* @public
|
|
696
696
|
*/
|
|
697
|
-
SortEnabled?: boolean;
|
|
697
|
+
SortEnabled?: boolean | undefined;
|
|
698
698
|
}
|
|
699
699
|
/**
|
|
700
700
|
* @public
|
|
@@ -726,27 +726,27 @@ export interface IntArrayOptions {
|
|
|
726
726
|
* A value to use for the field if the field isn't specified for a document.
|
|
727
727
|
* @public
|
|
728
728
|
*/
|
|
729
|
-
DefaultValue?: number;
|
|
729
|
+
DefaultValue?: number | undefined;
|
|
730
730
|
/**
|
|
731
731
|
* <p>A list of source fields to map to the field. </p>
|
|
732
732
|
* @public
|
|
733
733
|
*/
|
|
734
|
-
SourceFields?: string;
|
|
734
|
+
SourceFields?: string | undefined;
|
|
735
735
|
/**
|
|
736
736
|
* <p>Whether facet information can be returned for the field.</p>
|
|
737
737
|
* @public
|
|
738
738
|
*/
|
|
739
|
-
FacetEnabled?: boolean;
|
|
739
|
+
FacetEnabled?: boolean | undefined;
|
|
740
740
|
/**
|
|
741
741
|
* <p>Whether the contents of the field are searchable.</p>
|
|
742
742
|
* @public
|
|
743
743
|
*/
|
|
744
|
-
SearchEnabled?: boolean;
|
|
744
|
+
SearchEnabled?: boolean | undefined;
|
|
745
745
|
/**
|
|
746
746
|
* <p>Whether the contents of the field can be returned in the search results.</p>
|
|
747
747
|
* @public
|
|
748
748
|
*/
|
|
749
|
-
ReturnEnabled?: boolean;
|
|
749
|
+
ReturnEnabled?: boolean | undefined;
|
|
750
750
|
}
|
|
751
751
|
/**
|
|
752
752
|
* <p>Options for a 64-bit signed integer field. Present if <code>IndexFieldType</code> specifies the field is of type <code>int</code>. All options are enabled by default.</p>
|
|
@@ -757,32 +757,32 @@ export interface IntOptions {
|
|
|
757
757
|
* A value to use for the field if the field isn't specified for a document. This can be important if you are using the field in an expression and that field is not present in every document.
|
|
758
758
|
* @public
|
|
759
759
|
*/
|
|
760
|
-
DefaultValue?: number;
|
|
760
|
+
DefaultValue?: number | undefined;
|
|
761
761
|
/**
|
|
762
762
|
* <p>The name of the source field to map to the field. </p>
|
|
763
763
|
* @public
|
|
764
764
|
*/
|
|
765
|
-
SourceField?: string;
|
|
765
|
+
SourceField?: string | undefined;
|
|
766
766
|
/**
|
|
767
767
|
* <p>Whether facet information can be returned for the field.</p>
|
|
768
768
|
* @public
|
|
769
769
|
*/
|
|
770
|
-
FacetEnabled?: boolean;
|
|
770
|
+
FacetEnabled?: boolean | undefined;
|
|
771
771
|
/**
|
|
772
772
|
* <p>Whether the contents of the field are searchable.</p>
|
|
773
773
|
* @public
|
|
774
774
|
*/
|
|
775
|
-
SearchEnabled?: boolean;
|
|
775
|
+
SearchEnabled?: boolean | undefined;
|
|
776
776
|
/**
|
|
777
777
|
* <p>Whether the contents of the field can be returned in the search results.</p>
|
|
778
778
|
* @public
|
|
779
779
|
*/
|
|
780
|
-
ReturnEnabled?: boolean;
|
|
780
|
+
ReturnEnabled?: boolean | undefined;
|
|
781
781
|
/**
|
|
782
782
|
* <p>Whether the field can be used to sort the search results.</p>
|
|
783
783
|
* @public
|
|
784
784
|
*/
|
|
785
|
-
SortEnabled?: boolean;
|
|
785
|
+
SortEnabled?: boolean | undefined;
|
|
786
786
|
}
|
|
787
787
|
/**
|
|
788
788
|
* <p>Options for a latlon field. A latlon field contains a location stored as a latitude and longitude value pair. Present if <code>IndexFieldType</code> specifies the field is of type <code>latlon</code>. All options are enabled by default.</p>
|
|
@@ -793,7 +793,7 @@ export interface LatLonOptions {
|
|
|
793
793
|
* A value to use for the field if the field isn't specified for a document.
|
|
794
794
|
* @public
|
|
795
795
|
*/
|
|
796
|
-
DefaultValue?: string;
|
|
796
|
+
DefaultValue?: string | undefined;
|
|
797
797
|
/**
|
|
798
798
|
* <p>A string that represents the name of an index field. CloudSearch supports regular index fields as well as dynamic fields.
|
|
799
799
|
* A dynamic field's name defines a pattern that begins or ends with a wildcard.
|
|
@@ -811,27 +811,27 @@ export interface LatLonOptions {
|
|
|
811
811
|
* </p>
|
|
812
812
|
* @public
|
|
813
813
|
*/
|
|
814
|
-
SourceField?: string;
|
|
814
|
+
SourceField?: string | undefined;
|
|
815
815
|
/**
|
|
816
816
|
* <p>Whether facet information can be returned for the field.</p>
|
|
817
817
|
* @public
|
|
818
818
|
*/
|
|
819
|
-
FacetEnabled?: boolean;
|
|
819
|
+
FacetEnabled?: boolean | undefined;
|
|
820
820
|
/**
|
|
821
821
|
* <p>Whether the contents of the field are searchable.</p>
|
|
822
822
|
* @public
|
|
823
823
|
*/
|
|
824
|
-
SearchEnabled?: boolean;
|
|
824
|
+
SearchEnabled?: boolean | undefined;
|
|
825
825
|
/**
|
|
826
826
|
* <p>Whether the contents of the field can be returned in the search results.</p>
|
|
827
827
|
* @public
|
|
828
828
|
*/
|
|
829
|
-
ReturnEnabled?: boolean;
|
|
829
|
+
ReturnEnabled?: boolean | undefined;
|
|
830
830
|
/**
|
|
831
831
|
* <p>Whether the field can be used to sort the search results.</p>
|
|
832
832
|
* @public
|
|
833
833
|
*/
|
|
834
|
-
SortEnabled?: boolean;
|
|
834
|
+
SortEnabled?: boolean | undefined;
|
|
835
835
|
}
|
|
836
836
|
/**
|
|
837
837
|
* <p>Options for a field that contains an array of literal strings. Present if <code>IndexFieldType</code> specifies the field is of type <code>literal-array</code>. All options are enabled by default.</p>
|
|
@@ -842,27 +842,27 @@ export interface LiteralArrayOptions {
|
|
|
842
842
|
* A value to use for the field if the field isn't specified for a document.
|
|
843
843
|
* @public
|
|
844
844
|
*/
|
|
845
|
-
DefaultValue?: string;
|
|
845
|
+
DefaultValue?: string | undefined;
|
|
846
846
|
/**
|
|
847
847
|
* <p>A list of source fields to map to the field. </p>
|
|
848
848
|
* @public
|
|
849
849
|
*/
|
|
850
|
-
SourceFields?: string;
|
|
850
|
+
SourceFields?: string | undefined;
|
|
851
851
|
/**
|
|
852
852
|
* <p>Whether facet information can be returned for the field.</p>
|
|
853
853
|
* @public
|
|
854
854
|
*/
|
|
855
|
-
FacetEnabled?: boolean;
|
|
855
|
+
FacetEnabled?: boolean | undefined;
|
|
856
856
|
/**
|
|
857
857
|
* <p>Whether the contents of the field are searchable.</p>
|
|
858
858
|
* @public
|
|
859
859
|
*/
|
|
860
|
-
SearchEnabled?: boolean;
|
|
860
|
+
SearchEnabled?: boolean | undefined;
|
|
861
861
|
/**
|
|
862
862
|
* <p>Whether the contents of the field can be returned in the search results.</p>
|
|
863
863
|
* @public
|
|
864
864
|
*/
|
|
865
|
-
ReturnEnabled?: boolean;
|
|
865
|
+
ReturnEnabled?: boolean | undefined;
|
|
866
866
|
}
|
|
867
867
|
/**
|
|
868
868
|
* <p>Options for literal field. Present if <code>IndexFieldType</code> specifies the field is of type <code>literal</code>. All options are enabled by default.</p>
|
|
@@ -873,7 +873,7 @@ export interface LiteralOptions {
|
|
|
873
873
|
* A value to use for the field if the field isn't specified for a document.
|
|
874
874
|
* @public
|
|
875
875
|
*/
|
|
876
|
-
DefaultValue?: string;
|
|
876
|
+
DefaultValue?: string | undefined;
|
|
877
877
|
/**
|
|
878
878
|
* <p>A string that represents the name of an index field. CloudSearch supports regular index fields as well as dynamic fields.
|
|
879
879
|
* A dynamic field's name defines a pattern that begins or ends with a wildcard.
|
|
@@ -891,27 +891,27 @@ export interface LiteralOptions {
|
|
|
891
891
|
* </p>
|
|
892
892
|
* @public
|
|
893
893
|
*/
|
|
894
|
-
SourceField?: string;
|
|
894
|
+
SourceField?: string | undefined;
|
|
895
895
|
/**
|
|
896
896
|
* <p>Whether facet information can be returned for the field.</p>
|
|
897
897
|
* @public
|
|
898
898
|
*/
|
|
899
|
-
FacetEnabled?: boolean;
|
|
899
|
+
FacetEnabled?: boolean | undefined;
|
|
900
900
|
/**
|
|
901
901
|
* <p>Whether the contents of the field are searchable.</p>
|
|
902
902
|
* @public
|
|
903
903
|
*/
|
|
904
|
-
SearchEnabled?: boolean;
|
|
904
|
+
SearchEnabled?: boolean | undefined;
|
|
905
905
|
/**
|
|
906
906
|
* <p>Whether the contents of the field can be returned in the search results.</p>
|
|
907
907
|
* @public
|
|
908
908
|
*/
|
|
909
|
-
ReturnEnabled?: boolean;
|
|
909
|
+
ReturnEnabled?: boolean | undefined;
|
|
910
910
|
/**
|
|
911
911
|
* <p>Whether the field can be used to sort the search results.</p>
|
|
912
912
|
* @public
|
|
913
913
|
*/
|
|
914
|
-
SortEnabled?: boolean;
|
|
914
|
+
SortEnabled?: boolean | undefined;
|
|
915
915
|
}
|
|
916
916
|
/**
|
|
917
917
|
* <p>Options for a field that contains an array of text strings. Present if <code>IndexFieldType</code> specifies the field is of type <code>text-array</code>. A <code>text-array</code> field is always searchable. All options are enabled by default.</p>
|
|
@@ -922,27 +922,27 @@ export interface TextArrayOptions {
|
|
|
922
922
|
* A value to use for the field if the field isn't specified for a document.
|
|
923
923
|
* @public
|
|
924
924
|
*/
|
|
925
|
-
DefaultValue?: string;
|
|
925
|
+
DefaultValue?: string | undefined;
|
|
926
926
|
/**
|
|
927
927
|
* <p>A list of source fields to map to the field. </p>
|
|
928
928
|
* @public
|
|
929
929
|
*/
|
|
930
|
-
SourceFields?: string;
|
|
930
|
+
SourceFields?: string | undefined;
|
|
931
931
|
/**
|
|
932
932
|
* <p>Whether the contents of the field can be returned in the search results.</p>
|
|
933
933
|
* @public
|
|
934
934
|
*/
|
|
935
|
-
ReturnEnabled?: boolean;
|
|
935
|
+
ReturnEnabled?: boolean | undefined;
|
|
936
936
|
/**
|
|
937
937
|
* <p>Whether highlights can be returned for the field.</p>
|
|
938
938
|
* @public
|
|
939
939
|
*/
|
|
940
|
-
HighlightEnabled?: boolean;
|
|
940
|
+
HighlightEnabled?: boolean | undefined;
|
|
941
941
|
/**
|
|
942
942
|
* <p>The name of an analysis scheme for a <code>text-array</code> field.</p>
|
|
943
943
|
* @public
|
|
944
944
|
*/
|
|
945
|
-
AnalysisScheme?: string;
|
|
945
|
+
AnalysisScheme?: string | undefined;
|
|
946
946
|
}
|
|
947
947
|
/**
|
|
948
948
|
* <p>Options for text field. Present if <code>IndexFieldType</code> specifies the field is of type <code>text</code>. A <code>text</code> field is always searchable. All options are enabled by default.</p>
|
|
@@ -953,7 +953,7 @@ export interface TextOptions {
|
|
|
953
953
|
* A value to use for the field if the field isn't specified for a document.
|
|
954
954
|
* @public
|
|
955
955
|
*/
|
|
956
|
-
DefaultValue?: string;
|
|
956
|
+
DefaultValue?: string | undefined;
|
|
957
957
|
/**
|
|
958
958
|
* <p>A string that represents the name of an index field. CloudSearch supports regular index fields as well as dynamic fields.
|
|
959
959
|
* A dynamic field's name defines a pattern that begins or ends with a wildcard.
|
|
@@ -971,27 +971,27 @@ export interface TextOptions {
|
|
|
971
971
|
* </p>
|
|
972
972
|
* @public
|
|
973
973
|
*/
|
|
974
|
-
SourceField?: string;
|
|
974
|
+
SourceField?: string | undefined;
|
|
975
975
|
/**
|
|
976
976
|
* <p>Whether the contents of the field can be returned in the search results.</p>
|
|
977
977
|
* @public
|
|
978
978
|
*/
|
|
979
|
-
ReturnEnabled?: boolean;
|
|
979
|
+
ReturnEnabled?: boolean | undefined;
|
|
980
980
|
/**
|
|
981
981
|
* <p>Whether the field can be used to sort the search results.</p>
|
|
982
982
|
* @public
|
|
983
983
|
*/
|
|
984
|
-
SortEnabled?: boolean;
|
|
984
|
+
SortEnabled?: boolean | undefined;
|
|
985
985
|
/**
|
|
986
986
|
* <p>Whether highlights can be returned for the field.</p>
|
|
987
987
|
* @public
|
|
988
988
|
*/
|
|
989
|
-
HighlightEnabled?: boolean;
|
|
989
|
+
HighlightEnabled?: boolean | undefined;
|
|
990
990
|
/**
|
|
991
991
|
* <p>The name of an analysis scheme for a <code>text</code> field.</p>
|
|
992
992
|
* @public
|
|
993
993
|
*/
|
|
994
|
-
AnalysisScheme?: string;
|
|
994
|
+
AnalysisScheme?: string | undefined;
|
|
995
995
|
}
|
|
996
996
|
/**
|
|
997
997
|
* <p>Configuration information for a field in the index, including its name, type, and options. The supported options depend on the <code><a>IndexFieldType</a></code>.</p>
|
|
@@ -1025,57 +1025,57 @@ export interface IndexField {
|
|
|
1025
1025
|
* <p>Options for a 64-bit signed integer field. Present if <code>IndexFieldType</code> specifies the field is of type <code>int</code>. All options are enabled by default.</p>
|
|
1026
1026
|
* @public
|
|
1027
1027
|
*/
|
|
1028
|
-
IntOptions?: IntOptions;
|
|
1028
|
+
IntOptions?: IntOptions | undefined;
|
|
1029
1029
|
/**
|
|
1030
1030
|
* <p>Options for a double-precision 64-bit floating point field. Present if <code>IndexFieldType</code> specifies the field is of type <code>double</code>. All options are enabled by default.</p>
|
|
1031
1031
|
* @public
|
|
1032
1032
|
*/
|
|
1033
|
-
DoubleOptions?: DoubleOptions;
|
|
1033
|
+
DoubleOptions?: DoubleOptions | undefined;
|
|
1034
1034
|
/**
|
|
1035
1035
|
* <p>Options for literal field. Present if <code>IndexFieldType</code> specifies the field is of type <code>literal</code>. All options are enabled by default.</p>
|
|
1036
1036
|
* @public
|
|
1037
1037
|
*/
|
|
1038
|
-
LiteralOptions?: LiteralOptions;
|
|
1038
|
+
LiteralOptions?: LiteralOptions | undefined;
|
|
1039
1039
|
/**
|
|
1040
1040
|
* <p>Options for text field. Present if <code>IndexFieldType</code> specifies the field is of type <code>text</code>. A <code>text</code> field is always searchable. All options are enabled by default.</p>
|
|
1041
1041
|
* @public
|
|
1042
1042
|
*/
|
|
1043
|
-
TextOptions?: TextOptions;
|
|
1043
|
+
TextOptions?: TextOptions | undefined;
|
|
1044
1044
|
/**
|
|
1045
1045
|
* <p>Options for a date field. Dates and times are specified in UTC (Coordinated Universal Time) according to IETF RFC3339: yyyy-mm-ddT00:00:00Z. Present if <code>IndexFieldType</code> specifies the field is of type <code>date</code>. All options are enabled by default.</p>
|
|
1046
1046
|
* @public
|
|
1047
1047
|
*/
|
|
1048
|
-
DateOptions?: DateOptions;
|
|
1048
|
+
DateOptions?: DateOptions | undefined;
|
|
1049
1049
|
/**
|
|
1050
1050
|
* <p>Options for a latlon field. A latlon field contains a location stored as a latitude and longitude value pair. Present if <code>IndexFieldType</code> specifies the field is of type <code>latlon</code>. All options are enabled by default.</p>
|
|
1051
1051
|
* @public
|
|
1052
1052
|
*/
|
|
1053
|
-
LatLonOptions?: LatLonOptions;
|
|
1053
|
+
LatLonOptions?: LatLonOptions | undefined;
|
|
1054
1054
|
/**
|
|
1055
1055
|
* <p>Options for a field that contains an array of 64-bit signed integers. Present if <code>IndexFieldType</code> specifies the field is of type <code>int-array</code>. All options are enabled by default.</p>
|
|
1056
1056
|
* @public
|
|
1057
1057
|
*/
|
|
1058
|
-
IntArrayOptions?: IntArrayOptions;
|
|
1058
|
+
IntArrayOptions?: IntArrayOptions | undefined;
|
|
1059
1059
|
/**
|
|
1060
1060
|
* <p>Options for a field that contains an array of double-precision 64-bit floating point values. Present if <code>IndexFieldType</code> specifies the field is of type <code>double-array</code>. All options are enabled by default.</p>
|
|
1061
1061
|
* @public
|
|
1062
1062
|
*/
|
|
1063
|
-
DoubleArrayOptions?: DoubleArrayOptions;
|
|
1063
|
+
DoubleArrayOptions?: DoubleArrayOptions | undefined;
|
|
1064
1064
|
/**
|
|
1065
1065
|
* <p>Options for a field that contains an array of literal strings. Present if <code>IndexFieldType</code> specifies the field is of type <code>literal-array</code>. All options are enabled by default.</p>
|
|
1066
1066
|
* @public
|
|
1067
1067
|
*/
|
|
1068
|
-
LiteralArrayOptions?: LiteralArrayOptions;
|
|
1068
|
+
LiteralArrayOptions?: LiteralArrayOptions | undefined;
|
|
1069
1069
|
/**
|
|
1070
1070
|
* <p>Options for a field that contains an array of text strings. Present if <code>IndexFieldType</code> specifies the field is of type <code>text-array</code>. A <code>text-array</code> field is always searchable. All options are enabled by default.</p>
|
|
1071
1071
|
* @public
|
|
1072
1072
|
*/
|
|
1073
|
-
TextArrayOptions?: TextArrayOptions;
|
|
1073
|
+
TextArrayOptions?: TextArrayOptions | undefined;
|
|
1074
1074
|
/**
|
|
1075
1075
|
* <p>Options for a field that contains an array of dates. Present if <code>IndexFieldType</code> specifies the field is of type <code>date-array</code>. All options are enabled by default.</p>
|
|
1076
1076
|
* @public
|
|
1077
1077
|
*/
|
|
1078
|
-
DateArrayOptions?: DateArrayOptions;
|
|
1078
|
+
DateArrayOptions?: DateArrayOptions | undefined;
|
|
1079
1079
|
}
|
|
1080
1080
|
/**
|
|
1081
1081
|
* <p>Container for the parameters to the <code><a>DefineIndexField</a></code> operation. Specifies the name of the domain you want to update and the index field configuration.</p>
|
|
@@ -1148,7 +1148,7 @@ export interface DocumentSuggesterOptions {
|
|
|
1148
1148
|
* <p>The level of fuzziness allowed when suggesting matches for a string: <code>none</code>, <code>low</code>, or <code>high</code>. With none, the specified string is treated as an exact prefix. With low, suggestions must differ from the specified string by no more than one character. With high, suggestions can differ by up to two characters. The default is none. </p>
|
|
1149
1149
|
* @public
|
|
1150
1150
|
*/
|
|
1151
|
-
FuzzyMatching?: SuggesterFuzzyMatching;
|
|
1151
|
+
FuzzyMatching?: SuggesterFuzzyMatching | undefined;
|
|
1152
1152
|
/**
|
|
1153
1153
|
* <p>An expression that computes a score for each suggestion to control how they are sorted. The scores are rounded to the nearest
|
|
1154
1154
|
* integer, with a floor of 0 and a ceiling of 2^31-1. A document's relevance score is not computed
|
|
@@ -1158,7 +1158,7 @@ export interface DocumentSuggesterOptions {
|
|
|
1158
1158
|
* suggestions are sorted with the closest matches listed first.</p>
|
|
1159
1159
|
* @public
|
|
1160
1160
|
*/
|
|
1161
|
-
SortExpression?: string;
|
|
1161
|
+
SortExpression?: string | undefined;
|
|
1162
1162
|
}
|
|
1163
1163
|
/**
|
|
1164
1164
|
* <p>Configuration information for a search suggester. Each suggester has a unique name and specifies the text field you want to use for suggestions. The following options can be configured for a suggester: <code>FuzzyMatching</code>, <code>SortExpression</code>. </p>
|
|
@@ -1267,7 +1267,7 @@ export interface DeleteDomainResponse {
|
|
|
1267
1267
|
* <p>The current status of the search domain.</p>
|
|
1268
1268
|
* @public
|
|
1269
1269
|
*/
|
|
1270
|
-
DomainStatus?: DomainStatus;
|
|
1270
|
+
DomainStatus?: DomainStatus | undefined;
|
|
1271
1271
|
}
|
|
1272
1272
|
/**
|
|
1273
1273
|
* <p>Container for the parameters to the <code><a>DeleteExpression</a></code> operation. Specifies the name of the domain you want to update and the name of the expression you want to delete.</p>
|
|
@@ -1364,12 +1364,12 @@ export interface DescribeAnalysisSchemesRequest {
|
|
|
1364
1364
|
* <p>The analysis schemes you want to describe.</p>
|
|
1365
1365
|
* @public
|
|
1366
1366
|
*/
|
|
1367
|
-
AnalysisSchemeNames?: string[];
|
|
1367
|
+
AnalysisSchemeNames?: string[] | undefined;
|
|
1368
1368
|
/**
|
|
1369
1369
|
* <p>Whether to display the deployed configuration (<code>true</code>) or include any pending changes (<code>false</code>). Defaults to <code>false</code>.</p>
|
|
1370
1370
|
* @public
|
|
1371
1371
|
*/
|
|
1372
|
-
Deployed?: boolean;
|
|
1372
|
+
Deployed?: boolean | undefined;
|
|
1373
1373
|
}
|
|
1374
1374
|
/**
|
|
1375
1375
|
* <p>The result of a <code>DescribeAnalysisSchemes</code> request. Contains the analysis schemes configured for the domain specified in the request.</p>
|
|
@@ -1396,7 +1396,7 @@ export interface DescribeAvailabilityOptionsRequest {
|
|
|
1396
1396
|
* <p>Whether to display the deployed configuration (<code>true</code>) or include any pending changes (<code>false</code>). Defaults to <code>false</code>.</p>
|
|
1397
1397
|
* @public
|
|
1398
1398
|
*/
|
|
1399
|
-
Deployed?: boolean;
|
|
1399
|
+
Deployed?: boolean | undefined;
|
|
1400
1400
|
}
|
|
1401
1401
|
/**
|
|
1402
1402
|
* <p>The status and configuration of the domain's availability options.</p>
|
|
@@ -1423,7 +1423,7 @@ export interface DescribeAvailabilityOptionsResponse {
|
|
|
1423
1423
|
* <p>The availability options configured for the domain. Indicates whether Multi-AZ is enabled for the domain. </p>
|
|
1424
1424
|
* @public
|
|
1425
1425
|
*/
|
|
1426
|
-
AvailabilityOptions?: AvailabilityOptionsStatus;
|
|
1426
|
+
AvailabilityOptions?: AvailabilityOptionsStatus | undefined;
|
|
1427
1427
|
}
|
|
1428
1428
|
/**
|
|
1429
1429
|
* <p>The request was rejected because it attempted an operation which is not enabled.</p>
|
|
@@ -1436,12 +1436,12 @@ export declare class DisabledOperationException extends __BaseException {
|
|
|
1436
1436
|
* <p>A machine-parsable string error or warning code.</p>
|
|
1437
1437
|
* @public
|
|
1438
1438
|
*/
|
|
1439
|
-
Code?: string;
|
|
1439
|
+
Code?: string | undefined;
|
|
1440
1440
|
/**
|
|
1441
1441
|
* <p>A human-readable string error or warning message.</p>
|
|
1442
1442
|
* @public
|
|
1443
1443
|
*/
|
|
1444
|
-
Message?: string;
|
|
1444
|
+
Message?: string | undefined;
|
|
1445
1445
|
/**
|
|
1446
1446
|
* @internal
|
|
1447
1447
|
*/
|
|
@@ -1461,7 +1461,7 @@ export interface DescribeDomainEndpointOptionsRequest {
|
|
|
1461
1461
|
* <p>Whether to retrieve the latest configuration (which might be in a Processing state) or the current, active configuration. Defaults to <code>false</code>.</p>
|
|
1462
1462
|
* @public
|
|
1463
1463
|
*/
|
|
1464
|
-
Deployed?: boolean;
|
|
1464
|
+
Deployed?: boolean | undefined;
|
|
1465
1465
|
}
|
|
1466
1466
|
/**
|
|
1467
1467
|
* @public
|
|
@@ -1484,12 +1484,12 @@ export interface DomainEndpointOptions {
|
|
|
1484
1484
|
* <p>Whether the domain is HTTPS only enabled.</p>
|
|
1485
1485
|
* @public
|
|
1486
1486
|
*/
|
|
1487
|
-
EnforceHTTPS?: boolean;
|
|
1487
|
+
EnforceHTTPS?: boolean | undefined;
|
|
1488
1488
|
/**
|
|
1489
1489
|
* <p>The minimum required TLS version</p>
|
|
1490
1490
|
* @public
|
|
1491
1491
|
*/
|
|
1492
|
-
TLSSecurityPolicy?: TLSSecurityPolicy;
|
|
1492
|
+
TLSSecurityPolicy?: TLSSecurityPolicy | undefined;
|
|
1493
1493
|
}
|
|
1494
1494
|
/**
|
|
1495
1495
|
* <p>The configuration and status of the domain's endpoint options.</p>
|
|
@@ -1516,7 +1516,7 @@ export interface DescribeDomainEndpointOptionsResponse {
|
|
|
1516
1516
|
* <p>The status and configuration of a search domain's endpoint options.</p>
|
|
1517
1517
|
* @public
|
|
1518
1518
|
*/
|
|
1519
|
-
DomainEndpointOptions?: DomainEndpointOptionsStatus;
|
|
1519
|
+
DomainEndpointOptions?: DomainEndpointOptionsStatus | undefined;
|
|
1520
1520
|
}
|
|
1521
1521
|
/**
|
|
1522
1522
|
* <p>Container for the parameters to the <code><a>DescribeDomains</a></code> operation. By default shows the status of all domains. To restrict the response to particular domains, specify the names of the domains you want to describe.</p>
|
|
@@ -1527,7 +1527,7 @@ export interface DescribeDomainsRequest {
|
|
|
1527
1527
|
* <p>The names of the domains you want to include in the response.</p>
|
|
1528
1528
|
* @public
|
|
1529
1529
|
*/
|
|
1530
|
-
DomainNames?: string[];
|
|
1530
|
+
DomainNames?: string[] | undefined;
|
|
1531
1531
|
}
|
|
1532
1532
|
/**
|
|
1533
1533
|
* <p>The result of a <code>DescribeDomains</code> request. Contains the status of the domains specified in the request or all domains owned by the account.</p>
|
|
@@ -1555,12 +1555,12 @@ export interface DescribeExpressionsRequest {
|
|
|
1555
1555
|
* <p>Limits the <code><a>DescribeExpressions</a></code> response to the specified expressions. If not specified, all expressions are shown.</p>
|
|
1556
1556
|
* @public
|
|
1557
1557
|
*/
|
|
1558
|
-
ExpressionNames?: string[];
|
|
1558
|
+
ExpressionNames?: string[] | undefined;
|
|
1559
1559
|
/**
|
|
1560
1560
|
* <p>Whether to display the deployed configuration (<code>true</code>) or include any pending changes (<code>false</code>). Defaults to <code>false</code>.</p>
|
|
1561
1561
|
* @public
|
|
1562
1562
|
*/
|
|
1563
|
-
Deployed?: boolean;
|
|
1563
|
+
Deployed?: boolean | undefined;
|
|
1564
1564
|
}
|
|
1565
1565
|
/**
|
|
1566
1566
|
* <p>The result of a <code>DescribeExpressions</code> request. Contains the expressions configured for the domain specified in the request.</p>
|
|
@@ -1587,12 +1587,12 @@ export interface DescribeIndexFieldsRequest {
|
|
|
1587
1587
|
* <p>A list of the index fields you want to describe. If not specified, information is returned for all configured index fields.</p>
|
|
1588
1588
|
* @public
|
|
1589
1589
|
*/
|
|
1590
|
-
FieldNames?: string[];
|
|
1590
|
+
FieldNames?: string[] | undefined;
|
|
1591
1591
|
/**
|
|
1592
1592
|
* <p>Whether to display the deployed configuration (<code>true</code>) or include any pending changes (<code>false</code>). Defaults to <code>false</code>.</p>
|
|
1593
1593
|
* @public
|
|
1594
1594
|
*/
|
|
1595
|
-
Deployed?: boolean;
|
|
1595
|
+
Deployed?: boolean | undefined;
|
|
1596
1596
|
}
|
|
1597
1597
|
/**
|
|
1598
1598
|
* <p>The result of a <code>DescribeIndexFields</code> request. Contains the index fields configured for the domain specified in the request.</p>
|
|
@@ -1652,18 +1652,18 @@ export interface ScalingParameters {
|
|
|
1652
1652
|
* <p>The instance type that you want to preconfigure for your domain. For example, <code>search.m1.small</code>.</p>
|
|
1653
1653
|
* @public
|
|
1654
1654
|
*/
|
|
1655
|
-
DesiredInstanceType?: PartitionInstanceType;
|
|
1655
|
+
DesiredInstanceType?: PartitionInstanceType | undefined;
|
|
1656
1656
|
/**
|
|
1657
1657
|
* <p>The number of replicas you want to preconfigure for each index partition.</p>
|
|
1658
1658
|
* @public
|
|
1659
1659
|
*/
|
|
1660
|
-
DesiredReplicationCount?: number;
|
|
1660
|
+
DesiredReplicationCount?: number | undefined;
|
|
1661
1661
|
/**
|
|
1662
1662
|
* <p>The number of partitions you want to preconfigure for your domain. Only valid when
|
|
1663
1663
|
* you select <code>m2.2xlarge</code> as the desired instance type.</p>
|
|
1664
1664
|
* @public
|
|
1665
1665
|
*/
|
|
1666
|
-
DesiredPartitionCount?: number;
|
|
1666
|
+
DesiredPartitionCount?: number | undefined;
|
|
1667
1667
|
}
|
|
1668
1668
|
/**
|
|
1669
1669
|
* <p>The status and configuration of a search domain's scaling parameters. </p>
|
|
@@ -1706,7 +1706,7 @@ export interface DescribeServiceAccessPoliciesRequest {
|
|
|
1706
1706
|
* <p>Whether to display the deployed configuration (<code>true</code>) or include any pending changes (<code>false</code>). Defaults to <code>false</code>.</p>
|
|
1707
1707
|
* @public
|
|
1708
1708
|
*/
|
|
1709
|
-
Deployed?: boolean;
|
|
1709
|
+
Deployed?: boolean | undefined;
|
|
1710
1710
|
}
|
|
1711
1711
|
/**
|
|
1712
1712
|
* <p>The configured access rules for the domain's document and search endpoints, and the current status of those rules.</p>
|
|
@@ -1749,12 +1749,12 @@ export interface DescribeSuggestersRequest {
|
|
|
1749
1749
|
* <p>The suggesters you want to describe.</p>
|
|
1750
1750
|
* @public
|
|
1751
1751
|
*/
|
|
1752
|
-
SuggesterNames?: string[];
|
|
1752
|
+
SuggesterNames?: string[] | undefined;
|
|
1753
1753
|
/**
|
|
1754
1754
|
* <p>Whether to display the deployed configuration (<code>true</code>) or include any pending changes (<code>false</code>). Defaults to <code>false</code>.</p>
|
|
1755
1755
|
* @public
|
|
1756
1756
|
*/
|
|
1757
|
-
Deployed?: boolean;
|
|
1757
|
+
Deployed?: boolean | undefined;
|
|
1758
1758
|
}
|
|
1759
1759
|
/**
|
|
1760
1760
|
* <p>The result of a <code>DescribeSuggesters</code> request.</p>
|
|
@@ -1787,7 +1787,7 @@ export interface IndexDocumentsResponse {
|
|
|
1787
1787
|
* <p>The names of the fields that are currently being indexed.</p>
|
|
1788
1788
|
* @public
|
|
1789
1789
|
*/
|
|
1790
|
-
FieldNames?: string[];
|
|
1790
|
+
FieldNames?: string[] | undefined;
|
|
1791
1791
|
}
|
|
1792
1792
|
/**
|
|
1793
1793
|
* <p>The result of a <code>ListDomainNames</code> request. Contains a list of the domains owned by an account.</p>
|
|
@@ -1798,7 +1798,7 @@ export interface ListDomainNamesResponse {
|
|
|
1798
1798
|
* <p>The names of the search domains owned by an account.</p>
|
|
1799
1799
|
* @public
|
|
1800
1800
|
*/
|
|
1801
|
-
DomainNames?: Record<string, string
|
|
1801
|
+
DomainNames?: Record<string, string> | undefined;
|
|
1802
1802
|
}
|
|
1803
1803
|
/**
|
|
1804
1804
|
* <p>Container for the parameters to the <code><a>UpdateAvailabilityOptions</a></code> operation. Specifies the name of the domain you want to update and the Multi-AZ availability option.</p>
|
|
@@ -1825,7 +1825,7 @@ export interface UpdateAvailabilityOptionsResponse {
|
|
|
1825
1825
|
* <p>The newly-configured availability options. Indicates whether Multi-AZ is enabled for the domain. </p>
|
|
1826
1826
|
* @public
|
|
1827
1827
|
*/
|
|
1828
|
-
AvailabilityOptions?: AvailabilityOptionsStatus;
|
|
1828
|
+
AvailabilityOptions?: AvailabilityOptionsStatus | undefined;
|
|
1829
1829
|
}
|
|
1830
1830
|
/**
|
|
1831
1831
|
* <p>Container for the parameters to the <code><a>UpdateDomainEndpointOptions</a></code> operation. Specifies the name of the domain you want to update and the domain endpoint options.</p>
|
|
@@ -1852,7 +1852,7 @@ export interface UpdateDomainEndpointOptionsResponse {
|
|
|
1852
1852
|
* <p>The newly-configured domain endpoint options.</p>
|
|
1853
1853
|
* @public
|
|
1854
1854
|
*/
|
|
1855
|
-
DomainEndpointOptions?: DomainEndpointOptionsStatus;
|
|
1855
|
+
DomainEndpointOptions?: DomainEndpointOptionsStatus | undefined;
|
|
1856
1856
|
}
|
|
1857
1857
|
/**
|
|
1858
1858
|
* <p>Container for the parameters to the <code><a>UpdateScalingParameters</a></code> operation. Specifies the name of the domain you want to update and the scaling parameters you want to configure.</p>
|