@aws-sdk/client-cloudsearch 3.428.0 → 3.430.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.
@@ -305,7 +305,7 @@ export interface AnalysisOptions {
305
305
  * @public
306
306
  * <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>
307
307
  */
308
- AlgorithmicStemming?: AlgorithmicStemming | string;
308
+ AlgorithmicStemming?: AlgorithmicStemming;
309
309
  }
310
310
  /**
311
311
  * @public
@@ -367,7 +367,7 @@ export interface AnalysisScheme {
367
367
  * @public
368
368
  * <p>An <a href="http://tools.ietf.org/html/rfc4646" target="_blank">IETF RFC 4646</a> language code or <code>mul</code> for multiple languages.</p>
369
369
  */
370
- AnalysisSchemeLanguage: AnalysisSchemeLanguage | string | undefined;
370
+ AnalysisSchemeLanguage: AnalysisSchemeLanguage | undefined;
371
371
  /**
372
372
  * @public
373
373
  * <p>Synonyms, stopwords, and stemming options for an analysis scheme. Includes tokenization dictionary for Japanese.</p>
@@ -433,7 +433,7 @@ export interface OptionStatus {
433
433
  * <li><code>FailedToValidate</code>: the option value is not compatible with the domain's data and cannot be used to index the data. You must either modify the option value or update or remove the incompatible documents.</li>
434
434
  * </ul>
435
435
  */
436
- State: OptionState | string | undefined;
436
+ State: OptionState | undefined;
437
437
  /**
438
438
  * @public
439
439
  * <p>Indicates that the option will be deleted once processing is complete.</p>
@@ -1020,7 +1020,7 @@ export interface IndexField {
1020
1020
  * @public
1021
1021
  * <p>The type of field. The valid options for a field depend on the field type. For more information about the supported field types, see <a href="http://docs.aws.amazon.com/cloudsearch/latest/developerguide/configuring-index-fields.html" target="_blank">Configuring Index Fields</a> in the <i>Amazon CloudSearch Developer Guide</i>.</p>
1022
1022
  */
1023
- IndexFieldType: IndexFieldType | string | undefined;
1023
+ IndexFieldType: IndexFieldType | undefined;
1024
1024
  /**
1025
1025
  * @public
1026
1026
  * <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>
@@ -1148,7 +1148,7 @@ export interface DocumentSuggesterOptions {
1148
1148
  * @public
1149
1149
  * <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>
1150
1150
  */
1151
- FuzzyMatching?: SuggesterFuzzyMatching | string;
1151
+ FuzzyMatching?: SuggesterFuzzyMatching;
1152
1152
  /**
1153
1153
  * @public
1154
1154
  * <p>An expression that computes a score for each suggestion to control how they are sorted. The scores are rounded to the nearest
@@ -1489,7 +1489,7 @@ export interface DomainEndpointOptions {
1489
1489
  * @public
1490
1490
  * <p>The minimum required TLS version</p>
1491
1491
  */
1492
- TLSSecurityPolicy?: TLSSecurityPolicy | string;
1492
+ TLSSecurityPolicy?: TLSSecurityPolicy;
1493
1493
  }
1494
1494
  /**
1495
1495
  * @public
@@ -1652,7 +1652,7 @@ export interface ScalingParameters {
1652
1652
  * @public
1653
1653
  * <p>The instance type that you want to preconfigure for your domain. For example, <code>search.m1.small</code>.</p>
1654
1654
  */
1655
- DesiredInstanceType?: PartitionInstanceType | string;
1655
+ DesiredInstanceType?: PartitionInstanceType;
1656
1656
  /**
1657
1657
  * @public
1658
1658
  * <p>The number of replicas you want to preconfigure for each index partition.</p>
@@ -97,7 +97,7 @@ export interface AnalysisOptions {
97
97
  Stopwords?: string;
98
98
  StemmingDictionary?: string;
99
99
  JapaneseTokenizationDictionary?: string;
100
- AlgorithmicStemming?: AlgorithmicStemming | string;
100
+ AlgorithmicStemming?: AlgorithmicStemming;
101
101
  }
102
102
  export declare const AnalysisSchemeLanguage: {
103
103
  readonly ar: "ar";
@@ -140,7 +140,7 @@ export type AnalysisSchemeLanguage =
140
140
  (typeof AnalysisSchemeLanguage)[keyof typeof AnalysisSchemeLanguage];
141
141
  export interface AnalysisScheme {
142
142
  AnalysisSchemeName: string | undefined;
143
- AnalysisSchemeLanguage: AnalysisSchemeLanguage | string | undefined;
143
+ AnalysisSchemeLanguage: AnalysisSchemeLanguage | undefined;
144
144
  AnalysisOptions?: AnalysisOptions;
145
145
  }
146
146
  export interface DefineAnalysisSchemeRequest {
@@ -158,7 +158,7 @@ export interface OptionStatus {
158
158
  CreationDate: Date | undefined;
159
159
  UpdateDate: Date | undefined;
160
160
  UpdateVersion?: number;
161
- State: OptionState | string | undefined;
161
+ State: OptionState | undefined;
162
162
  PendingDeletion?: boolean;
163
163
  }
164
164
  export interface AnalysisSchemeStatus {
@@ -292,7 +292,7 @@ export interface TextOptions {
292
292
  }
293
293
  export interface IndexField {
294
294
  IndexFieldName: string | undefined;
295
- IndexFieldType: IndexFieldType | string | undefined;
295
+ IndexFieldType: IndexFieldType | undefined;
296
296
  IntOptions?: IntOptions;
297
297
  DoubleOptions?: DoubleOptions;
298
298
  LiteralOptions?: LiteralOptions;
@@ -325,7 +325,7 @@ export type SuggesterFuzzyMatching =
325
325
  (typeof SuggesterFuzzyMatching)[keyof typeof SuggesterFuzzyMatching];
326
326
  export interface DocumentSuggesterOptions {
327
327
  SourceField: string | undefined;
328
- FuzzyMatching?: SuggesterFuzzyMatching | string;
328
+ FuzzyMatching?: SuggesterFuzzyMatching;
329
329
  SortExpression?: string;
330
330
  }
331
331
  export interface Suggester {
@@ -417,7 +417,7 @@ export type TLSSecurityPolicy =
417
417
  (typeof TLSSecurityPolicy)[keyof typeof TLSSecurityPolicy];
418
418
  export interface DomainEndpointOptions {
419
419
  EnforceHTTPS?: boolean;
420
- TLSSecurityPolicy?: TLSSecurityPolicy | string;
420
+ TLSSecurityPolicy?: TLSSecurityPolicy;
421
421
  }
422
422
  export interface DomainEndpointOptionsStatus {
423
423
  Options: DomainEndpointOptions | undefined;
@@ -473,7 +473,7 @@ export declare const PartitionInstanceType: {
473
473
  export type PartitionInstanceType =
474
474
  (typeof PartitionInstanceType)[keyof typeof PartitionInstanceType];
475
475
  export interface ScalingParameters {
476
- DesiredInstanceType?: PartitionInstanceType | string;
476
+ DesiredInstanceType?: PartitionInstanceType;
477
477
  DesiredReplicationCount?: number;
478
478
  DesiredPartitionCount?: number;
479
479
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-cloudsearch",
3
3
  "description": "AWS SDK for JavaScript Cloudsearch Client for Node.js, Browser and React Native",
4
- "version": "3.428.0",
4
+ "version": "3.430.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -21,28 +21,28 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.428.0",
25
- "@aws-sdk/credential-provider-node": "3.428.0",
26
- "@aws-sdk/middleware-host-header": "3.428.0",
24
+ "@aws-sdk/client-sts": "3.430.0",
25
+ "@aws-sdk/credential-provider-node": "3.430.0",
26
+ "@aws-sdk/middleware-host-header": "3.429.0",
27
27
  "@aws-sdk/middleware-logger": "3.428.0",
28
28
  "@aws-sdk/middleware-recursion-detection": "3.428.0",
29
29
  "@aws-sdk/middleware-signing": "3.428.0",
30
30
  "@aws-sdk/middleware-user-agent": "3.428.0",
31
- "@aws-sdk/region-config-resolver": "3.428.0",
31
+ "@aws-sdk/region-config-resolver": "3.430.0",
32
32
  "@aws-sdk/types": "3.428.0",
33
33
  "@aws-sdk/util-endpoints": "3.428.0",
34
34
  "@aws-sdk/util-user-agent-browser": "3.428.0",
35
- "@aws-sdk/util-user-agent-node": "3.428.0",
36
- "@smithy/config-resolver": "^2.0.14",
35
+ "@aws-sdk/util-user-agent-node": "3.430.0",
36
+ "@smithy/config-resolver": "^2.0.15",
37
37
  "@smithy/fetch-http-handler": "^2.2.3",
38
38
  "@smithy/hash-node": "^2.0.11",
39
39
  "@smithy/invalid-dependency": "^2.0.11",
40
40
  "@smithy/middleware-content-length": "^2.0.13",
41
- "@smithy/middleware-endpoint": "^2.1.0",
42
- "@smithy/middleware-retry": "^2.0.16",
41
+ "@smithy/middleware-endpoint": "^2.1.2",
42
+ "@smithy/middleware-retry": "^2.0.17",
43
43
  "@smithy/middleware-serde": "^2.0.11",
44
44
  "@smithy/middleware-stack": "^2.0.5",
45
- "@smithy/node-config-provider": "^2.1.1",
45
+ "@smithy/node-config-provider": "^2.1.2",
46
46
  "@smithy/node-http-handler": "^2.1.7",
47
47
  "@smithy/protocol-http": "^3.0.7",
48
48
  "@smithy/smithy-client": "^2.1.11",
@@ -52,7 +52,7 @@
52
52
  "@smithy/util-body-length-browser": "^2.0.0",
53
53
  "@smithy/util-body-length-node": "^2.1.0",
54
54
  "@smithy/util-defaults-mode-browser": "^2.0.15",
55
- "@smithy/util-defaults-mode-node": "^2.0.19",
55
+ "@smithy/util-defaults-mode-node": "^2.0.20",
56
56
  "@smithy/util-retry": "^2.0.4",
57
57
  "@smithy/util-utf8": "^2.0.0",
58
58
  "fast-xml-parser": "4.2.5",