@aws-sdk/client-cloudsearch 3.325.0 → 3.327.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/BuildSuggestersCommand.d.ts +8 -0
- package/dist-types/commands/CreateDomainCommand.d.ts +27 -0
- package/dist-types/commands/DefineAnalysisSchemeCommand.d.ts +25 -0
- package/dist-types/commands/DefineExpressionCommand.d.ts +18 -0
- package/dist-types/commands/DefineIndexFieldCommand.d.ts +101 -0
- package/dist-types/commands/DefineSuggesterCommand.d.ts +22 -0
- package/dist-types/commands/DeleteAnalysisSchemeCommand.d.ts +25 -0
- package/dist-types/commands/DeleteDomainCommand.d.ts +27 -0
- package/dist-types/commands/DeleteExpressionCommand.d.ts +18 -0
- package/dist-types/commands/DeleteIndexFieldCommand.d.ts +101 -0
- package/dist-types/commands/DeleteSuggesterCommand.d.ts +22 -0
- package/dist-types/commands/DescribeAnalysisSchemesCommand.d.ts +27 -0
- package/dist-types/commands/DescribeAvailabilityOptionsCommand.d.ts +15 -0
- package/dist-types/commands/DescribeDomainEndpointOptionsCommand.d.ts +18 -0
- package/dist-types/commands/DescribeDomainsCommand.d.ts +29 -0
- package/dist-types/commands/DescribeExpressionsCommand.d.ts +20 -0
- package/dist-types/commands/DescribeIndexFieldsCommand.d.ts +103 -0
- package/dist-types/commands/DescribeScalingParametersCommand.d.ts +19 -0
- package/dist-types/commands/DescribeServiceAccessPoliciesCommand.d.ts +15 -0
- package/dist-types/commands/DescribeSuggestersCommand.d.ts +24 -0
- package/dist-types/commands/IndexDocumentsCommand.d.ts +8 -0
- package/dist-types/commands/ListDomainNamesCommand.d.ts +8 -0
- package/dist-types/commands/UpdateAvailabilityOptionsCommand.d.ts +15 -0
- package/dist-types/commands/UpdateDomainEndpointOptionsCommand.d.ts +18 -0
- package/dist-types/commands/UpdateScalingParametersCommand.d.ts +19 -0
- package/dist-types/commands/UpdateServiceAccessPoliciesCommand.d.ts +15 -0
- package/package.json +7 -7
|
@@ -31,6 +31,12 @@ export interface BuildSuggestersCommandOutput extends BuildSuggestersResponse, _
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new BuildSuggestersCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // BuildSuggestersResponse
|
|
35
|
+
* // FieldNames: [ // FieldNameList
|
|
36
|
+
* // "STRING_VALUE",
|
|
37
|
+
* // ],
|
|
38
|
+
* // };
|
|
39
|
+
*
|
|
34
40
|
* ```
|
|
35
41
|
*
|
|
36
42
|
* @param BuildSuggestersCommandInput - {@link BuildSuggestersCommandInput}
|
|
@@ -52,6 +58,8 @@ export interface BuildSuggestersCommandOutput extends BuildSuggestersResponse, _
|
|
|
52
58
|
* @throws {@link ValidationException} (client fault)
|
|
53
59
|
* <p>The request was rejected because it has invalid parameters.</p>
|
|
54
60
|
*
|
|
61
|
+
* @throws {@link CloudSearchServiceException}
|
|
62
|
+
* <p>Base exception class for all service exceptions from CloudSearch service.</p>
|
|
55
63
|
*
|
|
56
64
|
*/
|
|
57
65
|
export declare class BuildSuggestersCommand extends $Command<BuildSuggestersCommandInput, BuildSuggestersCommandOutput, CloudSearchClientResolvedConfig> {
|
|
@@ -32,6 +32,31 @@ export interface CreateDomainCommandOutput extends CreateDomainResponse, __Metad
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new CreateDomainCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // CreateDomainResponse
|
|
36
|
+
* // DomainStatus: { // DomainStatus
|
|
37
|
+
* // DomainId: "STRING_VALUE", // required
|
|
38
|
+
* // DomainName: "STRING_VALUE", // required
|
|
39
|
+
* // ARN: "STRING_VALUE",
|
|
40
|
+
* // Created: true || false,
|
|
41
|
+
* // Deleted: true || false,
|
|
42
|
+
* // DocService: { // ServiceEndpoint
|
|
43
|
+
* // Endpoint: "STRING_VALUE",
|
|
44
|
+
* // },
|
|
45
|
+
* // SearchService: {
|
|
46
|
+
* // Endpoint: "STRING_VALUE",
|
|
47
|
+
* // },
|
|
48
|
+
* // RequiresIndexDocuments: true || false, // required
|
|
49
|
+
* // Processing: true || false,
|
|
50
|
+
* // SearchInstanceType: "STRING_VALUE",
|
|
51
|
+
* // SearchPartitionCount: Number("int"),
|
|
52
|
+
* // SearchInstanceCount: Number("int"),
|
|
53
|
+
* // Limits: { // Limits
|
|
54
|
+
* // MaximumReplicationCount: Number("int"), // required
|
|
55
|
+
* // MaximumPartitionCount: Number("int"), // required
|
|
56
|
+
* // },
|
|
57
|
+
* // },
|
|
58
|
+
* // };
|
|
59
|
+
*
|
|
35
60
|
* ```
|
|
36
61
|
*
|
|
37
62
|
* @param CreateDomainCommandInput - {@link CreateDomainCommandInput}
|
|
@@ -56,6 +81,8 @@ export interface CreateDomainCommandOutput extends CreateDomainResponse, __Metad
|
|
|
56
81
|
* @throws {@link ValidationException} (client fault)
|
|
57
82
|
* <p>The request was rejected because it has invalid parameters.</p>
|
|
58
83
|
*
|
|
84
|
+
* @throws {@link CloudSearchServiceException}
|
|
85
|
+
* <p>Base exception class for all service exceptions from CloudSearch service.</p>
|
|
59
86
|
*
|
|
60
87
|
*/
|
|
61
88
|
export declare class CreateDomainCommand extends $Command<CreateDomainCommandInput, CreateDomainCommandOutput, CloudSearchClientResolvedConfig> {
|
|
@@ -42,6 +42,29 @@ export interface DefineAnalysisSchemeCommandOutput extends DefineAnalysisSchemeR
|
|
|
42
42
|
* };
|
|
43
43
|
* const command = new DefineAnalysisSchemeCommand(input);
|
|
44
44
|
* const response = await client.send(command);
|
|
45
|
+
* // { // DefineAnalysisSchemeResponse
|
|
46
|
+
* // AnalysisScheme: { // AnalysisSchemeStatus
|
|
47
|
+
* // Options: { // AnalysisScheme
|
|
48
|
+
* // AnalysisSchemeName: "STRING_VALUE", // required
|
|
49
|
+
* // AnalysisSchemeLanguage: "STRING_VALUE", // required
|
|
50
|
+
* // AnalysisOptions: { // AnalysisOptions
|
|
51
|
+
* // Synonyms: "STRING_VALUE",
|
|
52
|
+
* // Stopwords: "STRING_VALUE",
|
|
53
|
+
* // StemmingDictionary: "STRING_VALUE",
|
|
54
|
+
* // JapaneseTokenizationDictionary: "STRING_VALUE",
|
|
55
|
+
* // AlgorithmicStemming: "STRING_VALUE",
|
|
56
|
+
* // },
|
|
57
|
+
* // },
|
|
58
|
+
* // Status: { // OptionStatus
|
|
59
|
+
* // CreationDate: new Date("TIMESTAMP"), // required
|
|
60
|
+
* // UpdateDate: new Date("TIMESTAMP"), // required
|
|
61
|
+
* // UpdateVersion: Number("int"),
|
|
62
|
+
* // State: "STRING_VALUE", // required
|
|
63
|
+
* // PendingDeletion: true || false,
|
|
64
|
+
* // },
|
|
65
|
+
* // },
|
|
66
|
+
* // };
|
|
67
|
+
*
|
|
45
68
|
* ```
|
|
46
69
|
*
|
|
47
70
|
* @param DefineAnalysisSchemeCommandInput - {@link DefineAnalysisSchemeCommandInput}
|
|
@@ -69,6 +92,8 @@ export interface DefineAnalysisSchemeCommandOutput extends DefineAnalysisSchemeR
|
|
|
69
92
|
* @throws {@link ValidationException} (client fault)
|
|
70
93
|
* <p>The request was rejected because it has invalid parameters.</p>
|
|
71
94
|
*
|
|
95
|
+
* @throws {@link CloudSearchServiceException}
|
|
96
|
+
* <p>Base exception class for all service exceptions from CloudSearch service.</p>
|
|
72
97
|
*
|
|
73
98
|
*/
|
|
74
99
|
export declare class DefineAnalysisSchemeCommand extends $Command<DefineAnalysisSchemeCommandInput, DefineAnalysisSchemeCommandOutput, CloudSearchClientResolvedConfig> {
|
|
@@ -35,6 +35,22 @@ export interface DefineExpressionCommandOutput extends DefineExpressionResponse,
|
|
|
35
35
|
* };
|
|
36
36
|
* const command = new DefineExpressionCommand(input);
|
|
37
37
|
* const response = await client.send(command);
|
|
38
|
+
* // { // DefineExpressionResponse
|
|
39
|
+
* // Expression: { // ExpressionStatus
|
|
40
|
+
* // Options: { // Expression
|
|
41
|
+
* // ExpressionName: "STRING_VALUE", // required
|
|
42
|
+
* // ExpressionValue: "STRING_VALUE", // required
|
|
43
|
+
* // },
|
|
44
|
+
* // Status: { // OptionStatus
|
|
45
|
+
* // CreationDate: new Date("TIMESTAMP"), // required
|
|
46
|
+
* // UpdateDate: new Date("TIMESTAMP"), // required
|
|
47
|
+
* // UpdateVersion: Number("int"),
|
|
48
|
+
* // State: "STRING_VALUE", // required
|
|
49
|
+
* // PendingDeletion: true || false,
|
|
50
|
+
* // },
|
|
51
|
+
* // },
|
|
52
|
+
* // };
|
|
53
|
+
*
|
|
38
54
|
* ```
|
|
39
55
|
*
|
|
40
56
|
* @param DefineExpressionCommandInput - {@link DefineExpressionCommandInput}
|
|
@@ -62,6 +78,8 @@ export interface DefineExpressionCommandOutput extends DefineExpressionResponse,
|
|
|
62
78
|
* @throws {@link ValidationException} (client fault)
|
|
63
79
|
* <p>The request was rejected because it has invalid parameters.</p>
|
|
64
80
|
*
|
|
81
|
+
* @throws {@link CloudSearchServiceException}
|
|
82
|
+
* <p>Base exception class for all service exceptions from CloudSearch service.</p>
|
|
65
83
|
*
|
|
66
84
|
*/
|
|
67
85
|
export declare class DefineExpressionCommand extends $Command<DefineExpressionCommandInput, DefineExpressionCommandOutput, CloudSearchClientResolvedConfig> {
|
|
@@ -118,6 +118,105 @@ export interface DefineIndexFieldCommandOutput extends DefineIndexFieldResponse,
|
|
|
118
118
|
* };
|
|
119
119
|
* const command = new DefineIndexFieldCommand(input);
|
|
120
120
|
* const response = await client.send(command);
|
|
121
|
+
* // { // DefineIndexFieldResponse
|
|
122
|
+
* // IndexField: { // IndexFieldStatus
|
|
123
|
+
* // Options: { // IndexField
|
|
124
|
+
* // IndexFieldName: "STRING_VALUE", // required
|
|
125
|
+
* // IndexFieldType: "STRING_VALUE", // required
|
|
126
|
+
* // IntOptions: { // IntOptions
|
|
127
|
+
* // DefaultValue: Number("long"),
|
|
128
|
+
* // SourceField: "STRING_VALUE",
|
|
129
|
+
* // FacetEnabled: true || false,
|
|
130
|
+
* // SearchEnabled: true || false,
|
|
131
|
+
* // ReturnEnabled: true || false,
|
|
132
|
+
* // SortEnabled: true || false,
|
|
133
|
+
* // },
|
|
134
|
+
* // DoubleOptions: { // DoubleOptions
|
|
135
|
+
* // DefaultValue: Number("double"),
|
|
136
|
+
* // SourceField: "STRING_VALUE",
|
|
137
|
+
* // FacetEnabled: true || false,
|
|
138
|
+
* // SearchEnabled: true || false,
|
|
139
|
+
* // ReturnEnabled: true || false,
|
|
140
|
+
* // SortEnabled: true || false,
|
|
141
|
+
* // },
|
|
142
|
+
* // LiteralOptions: { // LiteralOptions
|
|
143
|
+
* // DefaultValue: "STRING_VALUE",
|
|
144
|
+
* // SourceField: "STRING_VALUE",
|
|
145
|
+
* // FacetEnabled: true || false,
|
|
146
|
+
* // SearchEnabled: true || false,
|
|
147
|
+
* // ReturnEnabled: true || false,
|
|
148
|
+
* // SortEnabled: true || false,
|
|
149
|
+
* // },
|
|
150
|
+
* // TextOptions: { // TextOptions
|
|
151
|
+
* // DefaultValue: "STRING_VALUE",
|
|
152
|
+
* // SourceField: "STRING_VALUE",
|
|
153
|
+
* // ReturnEnabled: true || false,
|
|
154
|
+
* // SortEnabled: true || false,
|
|
155
|
+
* // HighlightEnabled: true || false,
|
|
156
|
+
* // AnalysisScheme: "STRING_VALUE",
|
|
157
|
+
* // },
|
|
158
|
+
* // DateOptions: { // DateOptions
|
|
159
|
+
* // DefaultValue: "STRING_VALUE",
|
|
160
|
+
* // SourceField: "STRING_VALUE",
|
|
161
|
+
* // FacetEnabled: true || false,
|
|
162
|
+
* // SearchEnabled: true || false,
|
|
163
|
+
* // ReturnEnabled: true || false,
|
|
164
|
+
* // SortEnabled: true || false,
|
|
165
|
+
* // },
|
|
166
|
+
* // LatLonOptions: { // LatLonOptions
|
|
167
|
+
* // DefaultValue: "STRING_VALUE",
|
|
168
|
+
* // SourceField: "STRING_VALUE",
|
|
169
|
+
* // FacetEnabled: true || false,
|
|
170
|
+
* // SearchEnabled: true || false,
|
|
171
|
+
* // ReturnEnabled: true || false,
|
|
172
|
+
* // SortEnabled: true || false,
|
|
173
|
+
* // },
|
|
174
|
+
* // IntArrayOptions: { // IntArrayOptions
|
|
175
|
+
* // DefaultValue: Number("long"),
|
|
176
|
+
* // SourceFields: "STRING_VALUE",
|
|
177
|
+
* // FacetEnabled: true || false,
|
|
178
|
+
* // SearchEnabled: true || false,
|
|
179
|
+
* // ReturnEnabled: true || false,
|
|
180
|
+
* // },
|
|
181
|
+
* // DoubleArrayOptions: { // DoubleArrayOptions
|
|
182
|
+
* // DefaultValue: Number("double"),
|
|
183
|
+
* // SourceFields: "STRING_VALUE",
|
|
184
|
+
* // FacetEnabled: true || false,
|
|
185
|
+
* // SearchEnabled: true || false,
|
|
186
|
+
* // ReturnEnabled: true || false,
|
|
187
|
+
* // },
|
|
188
|
+
* // LiteralArrayOptions: { // LiteralArrayOptions
|
|
189
|
+
* // DefaultValue: "STRING_VALUE",
|
|
190
|
+
* // SourceFields: "STRING_VALUE",
|
|
191
|
+
* // FacetEnabled: true || false,
|
|
192
|
+
* // SearchEnabled: true || false,
|
|
193
|
+
* // ReturnEnabled: true || false,
|
|
194
|
+
* // },
|
|
195
|
+
* // TextArrayOptions: { // TextArrayOptions
|
|
196
|
+
* // DefaultValue: "STRING_VALUE",
|
|
197
|
+
* // SourceFields: "STRING_VALUE",
|
|
198
|
+
* // ReturnEnabled: true || false,
|
|
199
|
+
* // HighlightEnabled: true || false,
|
|
200
|
+
* // AnalysisScheme: "STRING_VALUE",
|
|
201
|
+
* // },
|
|
202
|
+
* // DateArrayOptions: { // DateArrayOptions
|
|
203
|
+
* // DefaultValue: "STRING_VALUE",
|
|
204
|
+
* // SourceFields: "STRING_VALUE",
|
|
205
|
+
* // FacetEnabled: true || false,
|
|
206
|
+
* // SearchEnabled: true || false,
|
|
207
|
+
* // ReturnEnabled: true || false,
|
|
208
|
+
* // },
|
|
209
|
+
* // },
|
|
210
|
+
* // Status: { // OptionStatus
|
|
211
|
+
* // CreationDate: new Date("TIMESTAMP"), // required
|
|
212
|
+
* // UpdateDate: new Date("TIMESTAMP"), // required
|
|
213
|
+
* // UpdateVersion: Number("int"),
|
|
214
|
+
* // State: "STRING_VALUE", // required
|
|
215
|
+
* // PendingDeletion: true || false,
|
|
216
|
+
* // },
|
|
217
|
+
* // },
|
|
218
|
+
* // };
|
|
219
|
+
*
|
|
121
220
|
* ```
|
|
122
221
|
*
|
|
123
222
|
* @param DefineIndexFieldCommandInput - {@link DefineIndexFieldCommandInput}
|
|
@@ -145,6 +244,8 @@ export interface DefineIndexFieldCommandOutput extends DefineIndexFieldResponse,
|
|
|
145
244
|
* @throws {@link ValidationException} (client fault)
|
|
146
245
|
* <p>The request was rejected because it has invalid parameters.</p>
|
|
147
246
|
*
|
|
247
|
+
* @throws {@link CloudSearchServiceException}
|
|
248
|
+
* <p>Base exception class for all service exceptions from CloudSearch service.</p>
|
|
148
249
|
*
|
|
149
250
|
*/
|
|
150
251
|
export declare class DefineIndexFieldCommand extends $Command<DefineIndexFieldCommandInput, DefineIndexFieldCommandOutput, CloudSearchClientResolvedConfig> {
|
|
@@ -39,6 +39,26 @@ export interface DefineSuggesterCommandOutput extends DefineSuggesterResponse, _
|
|
|
39
39
|
* };
|
|
40
40
|
* const command = new DefineSuggesterCommand(input);
|
|
41
41
|
* const response = await client.send(command);
|
|
42
|
+
* // { // DefineSuggesterResponse
|
|
43
|
+
* // Suggester: { // SuggesterStatus
|
|
44
|
+
* // Options: { // Suggester
|
|
45
|
+
* // SuggesterName: "STRING_VALUE", // required
|
|
46
|
+
* // DocumentSuggesterOptions: { // DocumentSuggesterOptions
|
|
47
|
+
* // SourceField: "STRING_VALUE", // required
|
|
48
|
+
* // FuzzyMatching: "STRING_VALUE",
|
|
49
|
+
* // SortExpression: "STRING_VALUE",
|
|
50
|
+
* // },
|
|
51
|
+
* // },
|
|
52
|
+
* // Status: { // OptionStatus
|
|
53
|
+
* // CreationDate: new Date("TIMESTAMP"), // required
|
|
54
|
+
* // UpdateDate: new Date("TIMESTAMP"), // required
|
|
55
|
+
* // UpdateVersion: Number("int"),
|
|
56
|
+
* // State: "STRING_VALUE", // required
|
|
57
|
+
* // PendingDeletion: true || false,
|
|
58
|
+
* // },
|
|
59
|
+
* // },
|
|
60
|
+
* // };
|
|
61
|
+
*
|
|
42
62
|
* ```
|
|
43
63
|
*
|
|
44
64
|
* @param DefineSuggesterCommandInput - {@link DefineSuggesterCommandInput}
|
|
@@ -66,6 +86,8 @@ export interface DefineSuggesterCommandOutput extends DefineSuggesterResponse, _
|
|
|
66
86
|
* @throws {@link ValidationException} (client fault)
|
|
67
87
|
* <p>The request was rejected because it has invalid parameters.</p>
|
|
68
88
|
*
|
|
89
|
+
* @throws {@link CloudSearchServiceException}
|
|
90
|
+
* <p>Base exception class for all service exceptions from CloudSearch service.</p>
|
|
69
91
|
*
|
|
70
92
|
*/
|
|
71
93
|
export declare class DefineSuggesterCommand extends $Command<DefineSuggesterCommandInput, DefineSuggesterCommandOutput, CloudSearchClientResolvedConfig> {
|
|
@@ -32,6 +32,29 @@ export interface DeleteAnalysisSchemeCommandOutput extends DeleteAnalysisSchemeR
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DeleteAnalysisSchemeCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // DeleteAnalysisSchemeResponse
|
|
36
|
+
* // AnalysisScheme: { // AnalysisSchemeStatus
|
|
37
|
+
* // Options: { // AnalysisScheme
|
|
38
|
+
* // AnalysisSchemeName: "STRING_VALUE", // required
|
|
39
|
+
* // AnalysisSchemeLanguage: "STRING_VALUE", // required
|
|
40
|
+
* // AnalysisOptions: { // AnalysisOptions
|
|
41
|
+
* // Synonyms: "STRING_VALUE",
|
|
42
|
+
* // Stopwords: "STRING_VALUE",
|
|
43
|
+
* // StemmingDictionary: "STRING_VALUE",
|
|
44
|
+
* // JapaneseTokenizationDictionary: "STRING_VALUE",
|
|
45
|
+
* // AlgorithmicStemming: "STRING_VALUE",
|
|
46
|
+
* // },
|
|
47
|
+
* // },
|
|
48
|
+
* // Status: { // OptionStatus
|
|
49
|
+
* // CreationDate: new Date("TIMESTAMP"), // required
|
|
50
|
+
* // UpdateDate: new Date("TIMESTAMP"), // required
|
|
51
|
+
* // UpdateVersion: Number("int"),
|
|
52
|
+
* // State: "STRING_VALUE", // required
|
|
53
|
+
* // PendingDeletion: true || false,
|
|
54
|
+
* // },
|
|
55
|
+
* // },
|
|
56
|
+
* // };
|
|
57
|
+
*
|
|
35
58
|
* ```
|
|
36
59
|
*
|
|
37
60
|
* @param DeleteAnalysisSchemeCommandInput - {@link DeleteAnalysisSchemeCommandInput}
|
|
@@ -56,6 +79,8 @@ export interface DeleteAnalysisSchemeCommandOutput extends DeleteAnalysisSchemeR
|
|
|
56
79
|
* @throws {@link ValidationException} (client fault)
|
|
57
80
|
* <p>The request was rejected because it has invalid parameters.</p>
|
|
58
81
|
*
|
|
82
|
+
* @throws {@link CloudSearchServiceException}
|
|
83
|
+
* <p>Base exception class for all service exceptions from CloudSearch service.</p>
|
|
59
84
|
*
|
|
60
85
|
*/
|
|
61
86
|
export declare class DeleteAnalysisSchemeCommand extends $Command<DeleteAnalysisSchemeCommandInput, DeleteAnalysisSchemeCommandOutput, CloudSearchClientResolvedConfig> {
|
|
@@ -32,6 +32,31 @@ export interface DeleteDomainCommandOutput extends DeleteDomainResponse, __Metad
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DeleteDomainCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // DeleteDomainResponse
|
|
36
|
+
* // DomainStatus: { // DomainStatus
|
|
37
|
+
* // DomainId: "STRING_VALUE", // required
|
|
38
|
+
* // DomainName: "STRING_VALUE", // required
|
|
39
|
+
* // ARN: "STRING_VALUE",
|
|
40
|
+
* // Created: true || false,
|
|
41
|
+
* // Deleted: true || false,
|
|
42
|
+
* // DocService: { // ServiceEndpoint
|
|
43
|
+
* // Endpoint: "STRING_VALUE",
|
|
44
|
+
* // },
|
|
45
|
+
* // SearchService: {
|
|
46
|
+
* // Endpoint: "STRING_VALUE",
|
|
47
|
+
* // },
|
|
48
|
+
* // RequiresIndexDocuments: true || false, // required
|
|
49
|
+
* // Processing: true || false,
|
|
50
|
+
* // SearchInstanceType: "STRING_VALUE",
|
|
51
|
+
* // SearchPartitionCount: Number("int"),
|
|
52
|
+
* // SearchInstanceCount: Number("int"),
|
|
53
|
+
* // Limits: { // Limits
|
|
54
|
+
* // MaximumReplicationCount: Number("int"), // required
|
|
55
|
+
* // MaximumPartitionCount: Number("int"), // required
|
|
56
|
+
* // },
|
|
57
|
+
* // },
|
|
58
|
+
* // };
|
|
59
|
+
*
|
|
35
60
|
* ```
|
|
36
61
|
*
|
|
37
62
|
* @param DeleteDomainCommandInput - {@link DeleteDomainCommandInput}
|
|
@@ -47,6 +72,8 @@ export interface DeleteDomainCommandOutput extends DeleteDomainResponse, __Metad
|
|
|
47
72
|
* <p>An internal error occurred while processing the request. If this problem persists,
|
|
48
73
|
* report an issue from the <a href="http://status.aws.amazon.com/" target="_blank">Service Health Dashboard</a>.</p>
|
|
49
74
|
*
|
|
75
|
+
* @throws {@link CloudSearchServiceException}
|
|
76
|
+
* <p>Base exception class for all service exceptions from CloudSearch service.</p>
|
|
50
77
|
*
|
|
51
78
|
*/
|
|
52
79
|
export declare class DeleteDomainCommand extends $Command<DeleteDomainCommandInput, DeleteDomainCommandOutput, CloudSearchClientResolvedConfig> {
|
|
@@ -32,6 +32,22 @@ export interface DeleteExpressionCommandOutput extends DeleteExpressionResponse,
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DeleteExpressionCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // DeleteExpressionResponse
|
|
36
|
+
* // Expression: { // ExpressionStatus
|
|
37
|
+
* // Options: { // Expression
|
|
38
|
+
* // ExpressionName: "STRING_VALUE", // required
|
|
39
|
+
* // ExpressionValue: "STRING_VALUE", // required
|
|
40
|
+
* // },
|
|
41
|
+
* // Status: { // OptionStatus
|
|
42
|
+
* // CreationDate: new Date("TIMESTAMP"), // required
|
|
43
|
+
* // UpdateDate: new Date("TIMESTAMP"), // required
|
|
44
|
+
* // UpdateVersion: Number("int"),
|
|
45
|
+
* // State: "STRING_VALUE", // required
|
|
46
|
+
* // PendingDeletion: true || false,
|
|
47
|
+
* // },
|
|
48
|
+
* // },
|
|
49
|
+
* // };
|
|
50
|
+
*
|
|
35
51
|
* ```
|
|
36
52
|
*
|
|
37
53
|
* @param DeleteExpressionCommandInput - {@link DeleteExpressionCommandInput}
|
|
@@ -56,6 +72,8 @@ export interface DeleteExpressionCommandOutput extends DeleteExpressionResponse,
|
|
|
56
72
|
* @throws {@link ValidationException} (client fault)
|
|
57
73
|
* <p>The request was rejected because it has invalid parameters.</p>
|
|
58
74
|
*
|
|
75
|
+
* @throws {@link CloudSearchServiceException}
|
|
76
|
+
* <p>Base exception class for all service exceptions from CloudSearch service.</p>
|
|
59
77
|
*
|
|
60
78
|
*/
|
|
61
79
|
export declare class DeleteExpressionCommand extends $Command<DeleteExpressionCommandInput, DeleteExpressionCommandOutput, CloudSearchClientResolvedConfig> {
|
|
@@ -32,6 +32,105 @@ export interface DeleteIndexFieldCommandOutput extends DeleteIndexFieldResponse,
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DeleteIndexFieldCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // DeleteIndexFieldResponse
|
|
36
|
+
* // IndexField: { // IndexFieldStatus
|
|
37
|
+
* // Options: { // IndexField
|
|
38
|
+
* // IndexFieldName: "STRING_VALUE", // required
|
|
39
|
+
* // IndexFieldType: "STRING_VALUE", // required
|
|
40
|
+
* // IntOptions: { // IntOptions
|
|
41
|
+
* // DefaultValue: Number("long"),
|
|
42
|
+
* // SourceField: "STRING_VALUE",
|
|
43
|
+
* // FacetEnabled: true || false,
|
|
44
|
+
* // SearchEnabled: true || false,
|
|
45
|
+
* // ReturnEnabled: true || false,
|
|
46
|
+
* // SortEnabled: true || false,
|
|
47
|
+
* // },
|
|
48
|
+
* // DoubleOptions: { // DoubleOptions
|
|
49
|
+
* // DefaultValue: Number("double"),
|
|
50
|
+
* // SourceField: "STRING_VALUE",
|
|
51
|
+
* // FacetEnabled: true || false,
|
|
52
|
+
* // SearchEnabled: true || false,
|
|
53
|
+
* // ReturnEnabled: true || false,
|
|
54
|
+
* // SortEnabled: true || false,
|
|
55
|
+
* // },
|
|
56
|
+
* // LiteralOptions: { // LiteralOptions
|
|
57
|
+
* // DefaultValue: "STRING_VALUE",
|
|
58
|
+
* // SourceField: "STRING_VALUE",
|
|
59
|
+
* // FacetEnabled: true || false,
|
|
60
|
+
* // SearchEnabled: true || false,
|
|
61
|
+
* // ReturnEnabled: true || false,
|
|
62
|
+
* // SortEnabled: true || false,
|
|
63
|
+
* // },
|
|
64
|
+
* // TextOptions: { // TextOptions
|
|
65
|
+
* // DefaultValue: "STRING_VALUE",
|
|
66
|
+
* // SourceField: "STRING_VALUE",
|
|
67
|
+
* // ReturnEnabled: true || false,
|
|
68
|
+
* // SortEnabled: true || false,
|
|
69
|
+
* // HighlightEnabled: true || false,
|
|
70
|
+
* // AnalysisScheme: "STRING_VALUE",
|
|
71
|
+
* // },
|
|
72
|
+
* // DateOptions: { // DateOptions
|
|
73
|
+
* // DefaultValue: "STRING_VALUE",
|
|
74
|
+
* // SourceField: "STRING_VALUE",
|
|
75
|
+
* // FacetEnabled: true || false,
|
|
76
|
+
* // SearchEnabled: true || false,
|
|
77
|
+
* // ReturnEnabled: true || false,
|
|
78
|
+
* // SortEnabled: true || false,
|
|
79
|
+
* // },
|
|
80
|
+
* // LatLonOptions: { // LatLonOptions
|
|
81
|
+
* // DefaultValue: "STRING_VALUE",
|
|
82
|
+
* // SourceField: "STRING_VALUE",
|
|
83
|
+
* // FacetEnabled: true || false,
|
|
84
|
+
* // SearchEnabled: true || false,
|
|
85
|
+
* // ReturnEnabled: true || false,
|
|
86
|
+
* // SortEnabled: true || false,
|
|
87
|
+
* // },
|
|
88
|
+
* // IntArrayOptions: { // IntArrayOptions
|
|
89
|
+
* // DefaultValue: Number("long"),
|
|
90
|
+
* // SourceFields: "STRING_VALUE",
|
|
91
|
+
* // FacetEnabled: true || false,
|
|
92
|
+
* // SearchEnabled: true || false,
|
|
93
|
+
* // ReturnEnabled: true || false,
|
|
94
|
+
* // },
|
|
95
|
+
* // DoubleArrayOptions: { // DoubleArrayOptions
|
|
96
|
+
* // DefaultValue: Number("double"),
|
|
97
|
+
* // SourceFields: "STRING_VALUE",
|
|
98
|
+
* // FacetEnabled: true || false,
|
|
99
|
+
* // SearchEnabled: true || false,
|
|
100
|
+
* // ReturnEnabled: true || false,
|
|
101
|
+
* // },
|
|
102
|
+
* // LiteralArrayOptions: { // LiteralArrayOptions
|
|
103
|
+
* // DefaultValue: "STRING_VALUE",
|
|
104
|
+
* // SourceFields: "STRING_VALUE",
|
|
105
|
+
* // FacetEnabled: true || false,
|
|
106
|
+
* // SearchEnabled: true || false,
|
|
107
|
+
* // ReturnEnabled: true || false,
|
|
108
|
+
* // },
|
|
109
|
+
* // TextArrayOptions: { // TextArrayOptions
|
|
110
|
+
* // DefaultValue: "STRING_VALUE",
|
|
111
|
+
* // SourceFields: "STRING_VALUE",
|
|
112
|
+
* // ReturnEnabled: true || false,
|
|
113
|
+
* // HighlightEnabled: true || false,
|
|
114
|
+
* // AnalysisScheme: "STRING_VALUE",
|
|
115
|
+
* // },
|
|
116
|
+
* // DateArrayOptions: { // DateArrayOptions
|
|
117
|
+
* // DefaultValue: "STRING_VALUE",
|
|
118
|
+
* // SourceFields: "STRING_VALUE",
|
|
119
|
+
* // FacetEnabled: true || false,
|
|
120
|
+
* // SearchEnabled: true || false,
|
|
121
|
+
* // ReturnEnabled: true || false,
|
|
122
|
+
* // },
|
|
123
|
+
* // },
|
|
124
|
+
* // Status: { // OptionStatus
|
|
125
|
+
* // CreationDate: new Date("TIMESTAMP"), // required
|
|
126
|
+
* // UpdateDate: new Date("TIMESTAMP"), // required
|
|
127
|
+
* // UpdateVersion: Number("int"),
|
|
128
|
+
* // State: "STRING_VALUE", // required
|
|
129
|
+
* // PendingDeletion: true || false,
|
|
130
|
+
* // },
|
|
131
|
+
* // },
|
|
132
|
+
* // };
|
|
133
|
+
*
|
|
35
134
|
* ```
|
|
36
135
|
*
|
|
37
136
|
* @param DeleteIndexFieldCommandInput - {@link DeleteIndexFieldCommandInput}
|
|
@@ -56,6 +155,8 @@ export interface DeleteIndexFieldCommandOutput extends DeleteIndexFieldResponse,
|
|
|
56
155
|
* @throws {@link ValidationException} (client fault)
|
|
57
156
|
* <p>The request was rejected because it has invalid parameters.</p>
|
|
58
157
|
*
|
|
158
|
+
* @throws {@link CloudSearchServiceException}
|
|
159
|
+
* <p>Base exception class for all service exceptions from CloudSearch service.</p>
|
|
59
160
|
*
|
|
60
161
|
*/
|
|
61
162
|
export declare class DeleteIndexFieldCommand extends $Command<DeleteIndexFieldCommandInput, DeleteIndexFieldCommandOutput, CloudSearchClientResolvedConfig> {
|
|
@@ -32,6 +32,26 @@ export interface DeleteSuggesterCommandOutput extends DeleteSuggesterResponse, _
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DeleteSuggesterCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // DeleteSuggesterResponse
|
|
36
|
+
* // Suggester: { // SuggesterStatus
|
|
37
|
+
* // Options: { // Suggester
|
|
38
|
+
* // SuggesterName: "STRING_VALUE", // required
|
|
39
|
+
* // DocumentSuggesterOptions: { // DocumentSuggesterOptions
|
|
40
|
+
* // SourceField: "STRING_VALUE", // required
|
|
41
|
+
* // FuzzyMatching: "STRING_VALUE",
|
|
42
|
+
* // SortExpression: "STRING_VALUE",
|
|
43
|
+
* // },
|
|
44
|
+
* // },
|
|
45
|
+
* // Status: { // OptionStatus
|
|
46
|
+
* // CreationDate: new Date("TIMESTAMP"), // required
|
|
47
|
+
* // UpdateDate: new Date("TIMESTAMP"), // required
|
|
48
|
+
* // UpdateVersion: Number("int"),
|
|
49
|
+
* // State: "STRING_VALUE", // required
|
|
50
|
+
* // PendingDeletion: true || false,
|
|
51
|
+
* // },
|
|
52
|
+
* // },
|
|
53
|
+
* // };
|
|
54
|
+
*
|
|
35
55
|
* ```
|
|
36
56
|
*
|
|
37
57
|
* @param DeleteSuggesterCommandInput - {@link DeleteSuggesterCommandInput}
|
|
@@ -56,6 +76,8 @@ export interface DeleteSuggesterCommandOutput extends DeleteSuggesterResponse, _
|
|
|
56
76
|
* @throws {@link ValidationException} (client fault)
|
|
57
77
|
* <p>The request was rejected because it has invalid parameters.</p>
|
|
58
78
|
*
|
|
79
|
+
* @throws {@link CloudSearchServiceException}
|
|
80
|
+
* <p>Base exception class for all service exceptions from CloudSearch service.</p>
|
|
59
81
|
*
|
|
60
82
|
*/
|
|
61
83
|
export declare class DeleteSuggesterCommand extends $Command<DeleteSuggesterCommandInput, DeleteSuggesterCommandOutput, CloudSearchClientResolvedConfig> {
|
|
@@ -35,6 +35,31 @@ export interface DescribeAnalysisSchemesCommandOutput extends DescribeAnalysisSc
|
|
|
35
35
|
* };
|
|
36
36
|
* const command = new DescribeAnalysisSchemesCommand(input);
|
|
37
37
|
* const response = await client.send(command);
|
|
38
|
+
* // { // DescribeAnalysisSchemesResponse
|
|
39
|
+
* // AnalysisSchemes: [ // AnalysisSchemeStatusList // required
|
|
40
|
+
* // { // AnalysisSchemeStatus
|
|
41
|
+
* // Options: { // AnalysisScheme
|
|
42
|
+
* // AnalysisSchemeName: "STRING_VALUE", // required
|
|
43
|
+
* // AnalysisSchemeLanguage: "STRING_VALUE", // required
|
|
44
|
+
* // AnalysisOptions: { // AnalysisOptions
|
|
45
|
+
* // Synonyms: "STRING_VALUE",
|
|
46
|
+
* // Stopwords: "STRING_VALUE",
|
|
47
|
+
* // StemmingDictionary: "STRING_VALUE",
|
|
48
|
+
* // JapaneseTokenizationDictionary: "STRING_VALUE",
|
|
49
|
+
* // AlgorithmicStemming: "STRING_VALUE",
|
|
50
|
+
* // },
|
|
51
|
+
* // },
|
|
52
|
+
* // Status: { // OptionStatus
|
|
53
|
+
* // CreationDate: new Date("TIMESTAMP"), // required
|
|
54
|
+
* // UpdateDate: new Date("TIMESTAMP"), // required
|
|
55
|
+
* // UpdateVersion: Number("int"),
|
|
56
|
+
* // State: "STRING_VALUE", // required
|
|
57
|
+
* // PendingDeletion: true || false,
|
|
58
|
+
* // },
|
|
59
|
+
* // },
|
|
60
|
+
* // ],
|
|
61
|
+
* // };
|
|
62
|
+
*
|
|
38
63
|
* ```
|
|
39
64
|
*
|
|
40
65
|
* @param DescribeAnalysisSchemesCommandInput - {@link DescribeAnalysisSchemesCommandInput}
|
|
@@ -53,6 +78,8 @@ export interface DescribeAnalysisSchemesCommandOutput extends DescribeAnalysisSc
|
|
|
53
78
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
54
79
|
* <p>The request was rejected because it attempted to reference a resource that does not exist.</p>
|
|
55
80
|
*
|
|
81
|
+
* @throws {@link CloudSearchServiceException}
|
|
82
|
+
* <p>Base exception class for all service exceptions from CloudSearch service.</p>
|
|
56
83
|
*
|
|
57
84
|
*/
|
|
58
85
|
export declare class DescribeAnalysisSchemesCommand extends $Command<DescribeAnalysisSchemesCommandInput, DescribeAnalysisSchemesCommandOutput, CloudSearchClientResolvedConfig> {
|
|
@@ -32,6 +32,19 @@ export interface DescribeAvailabilityOptionsCommandOutput extends DescribeAvaila
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DescribeAvailabilityOptionsCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // DescribeAvailabilityOptionsResponse
|
|
36
|
+
* // AvailabilityOptions: { // AvailabilityOptionsStatus
|
|
37
|
+
* // Options: true || false, // required
|
|
38
|
+
* // Status: { // OptionStatus
|
|
39
|
+
* // CreationDate: new Date("TIMESTAMP"), // required
|
|
40
|
+
* // UpdateDate: new Date("TIMESTAMP"), // required
|
|
41
|
+
* // UpdateVersion: Number("int"),
|
|
42
|
+
* // State: "STRING_VALUE", // required
|
|
43
|
+
* // PendingDeletion: true || false,
|
|
44
|
+
* // },
|
|
45
|
+
* // },
|
|
46
|
+
* // };
|
|
47
|
+
*
|
|
35
48
|
* ```
|
|
36
49
|
*
|
|
37
50
|
* @param DescribeAvailabilityOptionsCommandInput - {@link DescribeAvailabilityOptionsCommandInput}
|
|
@@ -59,6 +72,8 @@ export interface DescribeAvailabilityOptionsCommandOutput extends DescribeAvaila
|
|
|
59
72
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
60
73
|
* <p>The request was rejected because it attempted to reference a resource that does not exist.</p>
|
|
61
74
|
*
|
|
75
|
+
* @throws {@link CloudSearchServiceException}
|
|
76
|
+
* <p>Base exception class for all service exceptions from CloudSearch service.</p>
|
|
62
77
|
*
|
|
63
78
|
*/
|
|
64
79
|
export declare class DescribeAvailabilityOptionsCommand extends $Command<DescribeAvailabilityOptionsCommandInput, DescribeAvailabilityOptionsCommandOutput, CloudSearchClientResolvedConfig> {
|
|
@@ -32,6 +32,22 @@ export interface DescribeDomainEndpointOptionsCommandOutput extends DescribeDoma
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DescribeDomainEndpointOptionsCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // DescribeDomainEndpointOptionsResponse
|
|
36
|
+
* // DomainEndpointOptions: { // DomainEndpointOptionsStatus
|
|
37
|
+
* // Options: { // DomainEndpointOptions
|
|
38
|
+
* // EnforceHTTPS: true || false,
|
|
39
|
+
* // TLSSecurityPolicy: "STRING_VALUE",
|
|
40
|
+
* // },
|
|
41
|
+
* // Status: { // OptionStatus
|
|
42
|
+
* // CreationDate: new Date("TIMESTAMP"), // required
|
|
43
|
+
* // UpdateDate: new Date("TIMESTAMP"), // required
|
|
44
|
+
* // UpdateVersion: Number("int"),
|
|
45
|
+
* // State: "STRING_VALUE", // required
|
|
46
|
+
* // PendingDeletion: true || false,
|
|
47
|
+
* // },
|
|
48
|
+
* // },
|
|
49
|
+
* // };
|
|
50
|
+
*
|
|
35
51
|
* ```
|
|
36
52
|
*
|
|
37
53
|
* @param DescribeDomainEndpointOptionsCommandInput - {@link DescribeDomainEndpointOptionsCommandInput}
|
|
@@ -56,6 +72,8 @@ export interface DescribeDomainEndpointOptionsCommandOutput extends DescribeDoma
|
|
|
56
72
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
57
73
|
* <p>The request was rejected because it attempted to reference a resource that does not exist.</p>
|
|
58
74
|
*
|
|
75
|
+
* @throws {@link CloudSearchServiceException}
|
|
76
|
+
* <p>Base exception class for all service exceptions from CloudSearch service.</p>
|
|
59
77
|
*
|
|
60
78
|
*/
|
|
61
79
|
export declare class DescribeDomainEndpointOptionsCommand extends $Command<DescribeDomainEndpointOptionsCommandInput, DescribeDomainEndpointOptionsCommandOutput, CloudSearchClientResolvedConfig> {
|
|
@@ -35,6 +35,33 @@ export interface DescribeDomainsCommandOutput extends DescribeDomainsResponse, _
|
|
|
35
35
|
* };
|
|
36
36
|
* const command = new DescribeDomainsCommand(input);
|
|
37
37
|
* const response = await client.send(command);
|
|
38
|
+
* // { // DescribeDomainsResponse
|
|
39
|
+
* // DomainStatusList: [ // DomainStatusList // required
|
|
40
|
+
* // { // DomainStatus
|
|
41
|
+
* // DomainId: "STRING_VALUE", // required
|
|
42
|
+
* // DomainName: "STRING_VALUE", // required
|
|
43
|
+
* // ARN: "STRING_VALUE",
|
|
44
|
+
* // Created: true || false,
|
|
45
|
+
* // Deleted: true || false,
|
|
46
|
+
* // DocService: { // ServiceEndpoint
|
|
47
|
+
* // Endpoint: "STRING_VALUE",
|
|
48
|
+
* // },
|
|
49
|
+
* // SearchService: {
|
|
50
|
+
* // Endpoint: "STRING_VALUE",
|
|
51
|
+
* // },
|
|
52
|
+
* // RequiresIndexDocuments: true || false, // required
|
|
53
|
+
* // Processing: true || false,
|
|
54
|
+
* // SearchInstanceType: "STRING_VALUE",
|
|
55
|
+
* // SearchPartitionCount: Number("int"),
|
|
56
|
+
* // SearchInstanceCount: Number("int"),
|
|
57
|
+
* // Limits: { // Limits
|
|
58
|
+
* // MaximumReplicationCount: Number("int"), // required
|
|
59
|
+
* // MaximumPartitionCount: Number("int"), // required
|
|
60
|
+
* // },
|
|
61
|
+
* // },
|
|
62
|
+
* // ],
|
|
63
|
+
* // };
|
|
64
|
+
*
|
|
38
65
|
* ```
|
|
39
66
|
*
|
|
40
67
|
* @param DescribeDomainsCommandInput - {@link DescribeDomainsCommandInput}
|
|
@@ -50,6 +77,8 @@ export interface DescribeDomainsCommandOutput extends DescribeDomainsResponse, _
|
|
|
50
77
|
* <p>An internal error occurred while processing the request. If this problem persists,
|
|
51
78
|
* report an issue from the <a href="http://status.aws.amazon.com/" target="_blank">Service Health Dashboard</a>.</p>
|
|
52
79
|
*
|
|
80
|
+
* @throws {@link CloudSearchServiceException}
|
|
81
|
+
* <p>Base exception class for all service exceptions from CloudSearch service.</p>
|
|
53
82
|
*
|
|
54
83
|
*/
|
|
55
84
|
export declare class DescribeDomainsCommand extends $Command<DescribeDomainsCommandInput, DescribeDomainsCommandOutput, CloudSearchClientResolvedConfig> {
|
|
@@ -35,6 +35,24 @@ export interface DescribeExpressionsCommandOutput extends DescribeExpressionsRes
|
|
|
35
35
|
* };
|
|
36
36
|
* const command = new DescribeExpressionsCommand(input);
|
|
37
37
|
* const response = await client.send(command);
|
|
38
|
+
* // { // DescribeExpressionsResponse
|
|
39
|
+
* // Expressions: [ // ExpressionStatusList // required
|
|
40
|
+
* // { // ExpressionStatus
|
|
41
|
+
* // Options: { // Expression
|
|
42
|
+
* // ExpressionName: "STRING_VALUE", // required
|
|
43
|
+
* // ExpressionValue: "STRING_VALUE", // required
|
|
44
|
+
* // },
|
|
45
|
+
* // Status: { // OptionStatus
|
|
46
|
+
* // CreationDate: new Date("TIMESTAMP"), // required
|
|
47
|
+
* // UpdateDate: new Date("TIMESTAMP"), // required
|
|
48
|
+
* // UpdateVersion: Number("int"),
|
|
49
|
+
* // State: "STRING_VALUE", // required
|
|
50
|
+
* // PendingDeletion: true || false,
|
|
51
|
+
* // },
|
|
52
|
+
* // },
|
|
53
|
+
* // ],
|
|
54
|
+
* // };
|
|
55
|
+
*
|
|
38
56
|
* ```
|
|
39
57
|
*
|
|
40
58
|
* @param DescribeExpressionsCommandInput - {@link DescribeExpressionsCommandInput}
|
|
@@ -53,6 +71,8 @@ export interface DescribeExpressionsCommandOutput extends DescribeExpressionsRes
|
|
|
53
71
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
54
72
|
* <p>The request was rejected because it attempted to reference a resource that does not exist.</p>
|
|
55
73
|
*
|
|
74
|
+
* @throws {@link CloudSearchServiceException}
|
|
75
|
+
* <p>Base exception class for all service exceptions from CloudSearch service.</p>
|
|
56
76
|
*
|
|
57
77
|
*/
|
|
58
78
|
export declare class DescribeExpressionsCommand extends $Command<DescribeExpressionsCommandInput, DescribeExpressionsCommandOutput, CloudSearchClientResolvedConfig> {
|
|
@@ -37,6 +37,107 @@ export interface DescribeIndexFieldsCommandOutput extends DescribeIndexFieldsRes
|
|
|
37
37
|
* };
|
|
38
38
|
* const command = new DescribeIndexFieldsCommand(input);
|
|
39
39
|
* const response = await client.send(command);
|
|
40
|
+
* // { // DescribeIndexFieldsResponse
|
|
41
|
+
* // IndexFields: [ // IndexFieldStatusList // required
|
|
42
|
+
* // { // IndexFieldStatus
|
|
43
|
+
* // Options: { // IndexField
|
|
44
|
+
* // IndexFieldName: "STRING_VALUE", // required
|
|
45
|
+
* // IndexFieldType: "STRING_VALUE", // required
|
|
46
|
+
* // IntOptions: { // IntOptions
|
|
47
|
+
* // DefaultValue: Number("long"),
|
|
48
|
+
* // SourceField: "STRING_VALUE",
|
|
49
|
+
* // FacetEnabled: true || false,
|
|
50
|
+
* // SearchEnabled: true || false,
|
|
51
|
+
* // ReturnEnabled: true || false,
|
|
52
|
+
* // SortEnabled: true || false,
|
|
53
|
+
* // },
|
|
54
|
+
* // DoubleOptions: { // DoubleOptions
|
|
55
|
+
* // DefaultValue: Number("double"),
|
|
56
|
+
* // SourceField: "STRING_VALUE",
|
|
57
|
+
* // FacetEnabled: true || false,
|
|
58
|
+
* // SearchEnabled: true || false,
|
|
59
|
+
* // ReturnEnabled: true || false,
|
|
60
|
+
* // SortEnabled: true || false,
|
|
61
|
+
* // },
|
|
62
|
+
* // LiteralOptions: { // LiteralOptions
|
|
63
|
+
* // DefaultValue: "STRING_VALUE",
|
|
64
|
+
* // SourceField: "STRING_VALUE",
|
|
65
|
+
* // FacetEnabled: true || false,
|
|
66
|
+
* // SearchEnabled: true || false,
|
|
67
|
+
* // ReturnEnabled: true || false,
|
|
68
|
+
* // SortEnabled: true || false,
|
|
69
|
+
* // },
|
|
70
|
+
* // TextOptions: { // TextOptions
|
|
71
|
+
* // DefaultValue: "STRING_VALUE",
|
|
72
|
+
* // SourceField: "STRING_VALUE",
|
|
73
|
+
* // ReturnEnabled: true || false,
|
|
74
|
+
* // SortEnabled: true || false,
|
|
75
|
+
* // HighlightEnabled: true || false,
|
|
76
|
+
* // AnalysisScheme: "STRING_VALUE",
|
|
77
|
+
* // },
|
|
78
|
+
* // DateOptions: { // DateOptions
|
|
79
|
+
* // DefaultValue: "STRING_VALUE",
|
|
80
|
+
* // SourceField: "STRING_VALUE",
|
|
81
|
+
* // FacetEnabled: true || false,
|
|
82
|
+
* // SearchEnabled: true || false,
|
|
83
|
+
* // ReturnEnabled: true || false,
|
|
84
|
+
* // SortEnabled: true || false,
|
|
85
|
+
* // },
|
|
86
|
+
* // LatLonOptions: { // LatLonOptions
|
|
87
|
+
* // DefaultValue: "STRING_VALUE",
|
|
88
|
+
* // SourceField: "STRING_VALUE",
|
|
89
|
+
* // FacetEnabled: true || false,
|
|
90
|
+
* // SearchEnabled: true || false,
|
|
91
|
+
* // ReturnEnabled: true || false,
|
|
92
|
+
* // SortEnabled: true || false,
|
|
93
|
+
* // },
|
|
94
|
+
* // IntArrayOptions: { // IntArrayOptions
|
|
95
|
+
* // DefaultValue: Number("long"),
|
|
96
|
+
* // SourceFields: "STRING_VALUE",
|
|
97
|
+
* // FacetEnabled: true || false,
|
|
98
|
+
* // SearchEnabled: true || false,
|
|
99
|
+
* // ReturnEnabled: true || false,
|
|
100
|
+
* // },
|
|
101
|
+
* // DoubleArrayOptions: { // DoubleArrayOptions
|
|
102
|
+
* // DefaultValue: Number("double"),
|
|
103
|
+
* // SourceFields: "STRING_VALUE",
|
|
104
|
+
* // FacetEnabled: true || false,
|
|
105
|
+
* // SearchEnabled: true || false,
|
|
106
|
+
* // ReturnEnabled: true || false,
|
|
107
|
+
* // },
|
|
108
|
+
* // LiteralArrayOptions: { // LiteralArrayOptions
|
|
109
|
+
* // DefaultValue: "STRING_VALUE",
|
|
110
|
+
* // SourceFields: "STRING_VALUE",
|
|
111
|
+
* // FacetEnabled: true || false,
|
|
112
|
+
* // SearchEnabled: true || false,
|
|
113
|
+
* // ReturnEnabled: true || false,
|
|
114
|
+
* // },
|
|
115
|
+
* // TextArrayOptions: { // TextArrayOptions
|
|
116
|
+
* // DefaultValue: "STRING_VALUE",
|
|
117
|
+
* // SourceFields: "STRING_VALUE",
|
|
118
|
+
* // ReturnEnabled: true || false,
|
|
119
|
+
* // HighlightEnabled: true || false,
|
|
120
|
+
* // AnalysisScheme: "STRING_VALUE",
|
|
121
|
+
* // },
|
|
122
|
+
* // DateArrayOptions: { // DateArrayOptions
|
|
123
|
+
* // DefaultValue: "STRING_VALUE",
|
|
124
|
+
* // SourceFields: "STRING_VALUE",
|
|
125
|
+
* // FacetEnabled: true || false,
|
|
126
|
+
* // SearchEnabled: true || false,
|
|
127
|
+
* // ReturnEnabled: true || false,
|
|
128
|
+
* // },
|
|
129
|
+
* // },
|
|
130
|
+
* // Status: { // OptionStatus
|
|
131
|
+
* // CreationDate: new Date("TIMESTAMP"), // required
|
|
132
|
+
* // UpdateDate: new Date("TIMESTAMP"), // required
|
|
133
|
+
* // UpdateVersion: Number("int"),
|
|
134
|
+
* // State: "STRING_VALUE", // required
|
|
135
|
+
* // PendingDeletion: true || false,
|
|
136
|
+
* // },
|
|
137
|
+
* // },
|
|
138
|
+
* // ],
|
|
139
|
+
* // };
|
|
140
|
+
*
|
|
40
141
|
* ```
|
|
41
142
|
*
|
|
42
143
|
* @param DescribeIndexFieldsCommandInput - {@link DescribeIndexFieldsCommandInput}
|
|
@@ -55,6 +156,8 @@ export interface DescribeIndexFieldsCommandOutput extends DescribeIndexFieldsRes
|
|
|
55
156
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
56
157
|
* <p>The request was rejected because it attempted to reference a resource that does not exist.</p>
|
|
57
158
|
*
|
|
159
|
+
* @throws {@link CloudSearchServiceException}
|
|
160
|
+
* <p>Base exception class for all service exceptions from CloudSearch service.</p>
|
|
58
161
|
*
|
|
59
162
|
*/
|
|
60
163
|
export declare class DescribeIndexFieldsCommand extends $Command<DescribeIndexFieldsCommandInput, DescribeIndexFieldsCommandOutput, CloudSearchClientResolvedConfig> {
|
|
@@ -31,6 +31,23 @@ export interface DescribeScalingParametersCommandOutput extends DescribeScalingP
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DescribeScalingParametersCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // DescribeScalingParametersResponse
|
|
35
|
+
* // ScalingParameters: { // ScalingParametersStatus
|
|
36
|
+
* // Options: { // ScalingParameters
|
|
37
|
+
* // DesiredInstanceType: "STRING_VALUE",
|
|
38
|
+
* // DesiredReplicationCount: Number("int"),
|
|
39
|
+
* // DesiredPartitionCount: Number("int"),
|
|
40
|
+
* // },
|
|
41
|
+
* // Status: { // OptionStatus
|
|
42
|
+
* // CreationDate: new Date("TIMESTAMP"), // required
|
|
43
|
+
* // UpdateDate: new Date("TIMESTAMP"), // required
|
|
44
|
+
* // UpdateVersion: Number("int"),
|
|
45
|
+
* // State: "STRING_VALUE", // required
|
|
46
|
+
* // PendingDeletion: true || false,
|
|
47
|
+
* // },
|
|
48
|
+
* // },
|
|
49
|
+
* // };
|
|
50
|
+
*
|
|
34
51
|
* ```
|
|
35
52
|
*
|
|
36
53
|
* @param DescribeScalingParametersCommandInput - {@link DescribeScalingParametersCommandInput}
|
|
@@ -49,6 +66,8 @@ export interface DescribeScalingParametersCommandOutput extends DescribeScalingP
|
|
|
49
66
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
50
67
|
* <p>The request was rejected because it attempted to reference a resource that does not exist.</p>
|
|
51
68
|
*
|
|
69
|
+
* @throws {@link CloudSearchServiceException}
|
|
70
|
+
* <p>Base exception class for all service exceptions from CloudSearch service.</p>
|
|
52
71
|
*
|
|
53
72
|
*/
|
|
54
73
|
export declare class DescribeScalingParametersCommand extends $Command<DescribeScalingParametersCommandInput, DescribeScalingParametersCommandOutput, CloudSearchClientResolvedConfig> {
|
|
@@ -33,6 +33,19 @@ export interface DescribeServiceAccessPoliciesCommandOutput extends DescribeServ
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new DescribeServiceAccessPoliciesCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // DescribeServiceAccessPoliciesResponse
|
|
37
|
+
* // AccessPolicies: { // AccessPoliciesStatus
|
|
38
|
+
* // Options: "STRING_VALUE", // required
|
|
39
|
+
* // Status: { // OptionStatus
|
|
40
|
+
* // CreationDate: new Date("TIMESTAMP"), // required
|
|
41
|
+
* // UpdateDate: new Date("TIMESTAMP"), // required
|
|
42
|
+
* // UpdateVersion: Number("int"),
|
|
43
|
+
* // State: "STRING_VALUE", // required
|
|
44
|
+
* // PendingDeletion: true || false,
|
|
45
|
+
* // },
|
|
46
|
+
* // },
|
|
47
|
+
* // };
|
|
48
|
+
*
|
|
36
49
|
* ```
|
|
37
50
|
*
|
|
38
51
|
* @param DescribeServiceAccessPoliciesCommandInput - {@link DescribeServiceAccessPoliciesCommandInput}
|
|
@@ -51,6 +64,8 @@ export interface DescribeServiceAccessPoliciesCommandOutput extends DescribeServ
|
|
|
51
64
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
52
65
|
* <p>The request was rejected because it attempted to reference a resource that does not exist.</p>
|
|
53
66
|
*
|
|
67
|
+
* @throws {@link CloudSearchServiceException}
|
|
68
|
+
* <p>Base exception class for all service exceptions from CloudSearch service.</p>
|
|
54
69
|
*
|
|
55
70
|
*/
|
|
56
71
|
export declare class DescribeServiceAccessPoliciesCommand extends $Command<DescribeServiceAccessPoliciesCommandInput, DescribeServiceAccessPoliciesCommandOutput, CloudSearchClientResolvedConfig> {
|
|
@@ -35,6 +35,28 @@ export interface DescribeSuggestersCommandOutput extends DescribeSuggestersRespo
|
|
|
35
35
|
* };
|
|
36
36
|
* const command = new DescribeSuggestersCommand(input);
|
|
37
37
|
* const response = await client.send(command);
|
|
38
|
+
* // { // DescribeSuggestersResponse
|
|
39
|
+
* // Suggesters: [ // SuggesterStatusList // required
|
|
40
|
+
* // { // SuggesterStatus
|
|
41
|
+
* // Options: { // Suggester
|
|
42
|
+
* // SuggesterName: "STRING_VALUE", // required
|
|
43
|
+
* // DocumentSuggesterOptions: { // DocumentSuggesterOptions
|
|
44
|
+
* // SourceField: "STRING_VALUE", // required
|
|
45
|
+
* // FuzzyMatching: "STRING_VALUE",
|
|
46
|
+
* // SortExpression: "STRING_VALUE",
|
|
47
|
+
* // },
|
|
48
|
+
* // },
|
|
49
|
+
* // Status: { // OptionStatus
|
|
50
|
+
* // CreationDate: new Date("TIMESTAMP"), // required
|
|
51
|
+
* // UpdateDate: new Date("TIMESTAMP"), // required
|
|
52
|
+
* // UpdateVersion: Number("int"),
|
|
53
|
+
* // State: "STRING_VALUE", // required
|
|
54
|
+
* // PendingDeletion: true || false,
|
|
55
|
+
* // },
|
|
56
|
+
* // },
|
|
57
|
+
* // ],
|
|
58
|
+
* // };
|
|
59
|
+
*
|
|
38
60
|
* ```
|
|
39
61
|
*
|
|
40
62
|
* @param DescribeSuggestersCommandInput - {@link DescribeSuggestersCommandInput}
|
|
@@ -53,6 +75,8 @@ export interface DescribeSuggestersCommandOutput extends DescribeSuggestersRespo
|
|
|
53
75
|
* @throws {@link ResourceNotFoundException} (client fault)
|
|
54
76
|
* <p>The request was rejected because it attempted to reference a resource that does not exist.</p>
|
|
55
77
|
*
|
|
78
|
+
* @throws {@link CloudSearchServiceException}
|
|
79
|
+
* <p>Base exception class for all service exceptions from CloudSearch service.</p>
|
|
56
80
|
*
|
|
57
81
|
*/
|
|
58
82
|
export declare class DescribeSuggestersCommand extends $Command<DescribeSuggestersCommandInput, DescribeSuggestersCommandOutput, CloudSearchClientResolvedConfig> {
|
|
@@ -31,6 +31,12 @@ export interface IndexDocumentsCommandOutput extends IndexDocumentsResponse, __M
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new IndexDocumentsCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // IndexDocumentsResponse
|
|
35
|
+
* // FieldNames: [ // FieldNameList
|
|
36
|
+
* // "STRING_VALUE",
|
|
37
|
+
* // ],
|
|
38
|
+
* // };
|
|
39
|
+
*
|
|
34
40
|
* ```
|
|
35
41
|
*
|
|
36
42
|
* @param IndexDocumentsCommandInput - {@link IndexDocumentsCommandInput}
|
|
@@ -52,6 +58,8 @@ export interface IndexDocumentsCommandOutput extends IndexDocumentsResponse, __M
|
|
|
52
58
|
* @throws {@link ValidationException} (client fault)
|
|
53
59
|
* <p>The request was rejected because it has invalid parameters.</p>
|
|
54
60
|
*
|
|
61
|
+
* @throws {@link CloudSearchServiceException}
|
|
62
|
+
* <p>Base exception class for all service exceptions from CloudSearch service.</p>
|
|
55
63
|
*
|
|
56
64
|
*/
|
|
57
65
|
export declare class IndexDocumentsCommand extends $Command<IndexDocumentsCommandInput, IndexDocumentsCommandOutput, CloudSearchClientResolvedConfig> {
|
|
@@ -29,6 +29,12 @@ export interface ListDomainNamesCommandOutput extends ListDomainNamesResponse, _
|
|
|
29
29
|
* const input = {};
|
|
30
30
|
* const command = new ListDomainNamesCommand(input);
|
|
31
31
|
* const response = await client.send(command);
|
|
32
|
+
* // { // ListDomainNamesResponse
|
|
33
|
+
* // DomainNames: { // DomainNameMap
|
|
34
|
+
* // "<keys>": "STRING_VALUE",
|
|
35
|
+
* // },
|
|
36
|
+
* // };
|
|
37
|
+
*
|
|
32
38
|
* ```
|
|
33
39
|
*
|
|
34
40
|
* @param ListDomainNamesCommandInput - {@link ListDomainNamesCommandInput}
|
|
@@ -40,6 +46,8 @@ export interface ListDomainNamesCommandOutput extends ListDomainNamesResponse, _
|
|
|
40
46
|
* @throws {@link BaseException} (client fault)
|
|
41
47
|
* <p>An error occurred while processing the request.</p>
|
|
42
48
|
*
|
|
49
|
+
* @throws {@link CloudSearchServiceException}
|
|
50
|
+
* <p>Base exception class for all service exceptions from CloudSearch service.</p>
|
|
43
51
|
*
|
|
44
52
|
*/
|
|
45
53
|
export declare class ListDomainNamesCommand extends $Command<ListDomainNamesCommandInput, ListDomainNamesCommandOutput, CloudSearchClientResolvedConfig> {
|
|
@@ -32,6 +32,19 @@ export interface UpdateAvailabilityOptionsCommandOutput extends UpdateAvailabili
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new UpdateAvailabilityOptionsCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // UpdateAvailabilityOptionsResponse
|
|
36
|
+
* // AvailabilityOptions: { // AvailabilityOptionsStatus
|
|
37
|
+
* // Options: true || false, // required
|
|
38
|
+
* // Status: { // OptionStatus
|
|
39
|
+
* // CreationDate: new Date("TIMESTAMP"), // required
|
|
40
|
+
* // UpdateDate: new Date("TIMESTAMP"), // required
|
|
41
|
+
* // UpdateVersion: Number("int"),
|
|
42
|
+
* // State: "STRING_VALUE", // required
|
|
43
|
+
* // PendingDeletion: true || false,
|
|
44
|
+
* // },
|
|
45
|
+
* // },
|
|
46
|
+
* // };
|
|
47
|
+
*
|
|
35
48
|
* ```
|
|
36
49
|
*
|
|
37
50
|
* @param UpdateAvailabilityOptionsCommandInput - {@link UpdateAvailabilityOptionsCommandInput}
|
|
@@ -62,6 +75,8 @@ export interface UpdateAvailabilityOptionsCommandOutput extends UpdateAvailabili
|
|
|
62
75
|
* @throws {@link ValidationException} (client fault)
|
|
63
76
|
* <p>The request was rejected because it has invalid parameters.</p>
|
|
64
77
|
*
|
|
78
|
+
* @throws {@link CloudSearchServiceException}
|
|
79
|
+
* <p>Base exception class for all service exceptions from CloudSearch service.</p>
|
|
65
80
|
*
|
|
66
81
|
*/
|
|
67
82
|
export declare class UpdateAvailabilityOptionsCommand extends $Command<UpdateAvailabilityOptionsCommandInput, UpdateAvailabilityOptionsCommandOutput, CloudSearchClientResolvedConfig> {
|
|
@@ -35,6 +35,22 @@ export interface UpdateDomainEndpointOptionsCommandOutput extends UpdateDomainEn
|
|
|
35
35
|
* };
|
|
36
36
|
* const command = new UpdateDomainEndpointOptionsCommand(input);
|
|
37
37
|
* const response = await client.send(command);
|
|
38
|
+
* // { // UpdateDomainEndpointOptionsResponse
|
|
39
|
+
* // DomainEndpointOptions: { // DomainEndpointOptionsStatus
|
|
40
|
+
* // Options: { // DomainEndpointOptions
|
|
41
|
+
* // EnforceHTTPS: true || false,
|
|
42
|
+
* // TLSSecurityPolicy: "STRING_VALUE",
|
|
43
|
+
* // },
|
|
44
|
+
* // Status: { // OptionStatus
|
|
45
|
+
* // CreationDate: new Date("TIMESTAMP"), // required
|
|
46
|
+
* // UpdateDate: new Date("TIMESTAMP"), // required
|
|
47
|
+
* // UpdateVersion: Number("int"),
|
|
48
|
+
* // State: "STRING_VALUE", // required
|
|
49
|
+
* // PendingDeletion: true || false,
|
|
50
|
+
* // },
|
|
51
|
+
* // },
|
|
52
|
+
* // };
|
|
53
|
+
*
|
|
38
54
|
* ```
|
|
39
55
|
*
|
|
40
56
|
* @param UpdateDomainEndpointOptionsCommandInput - {@link UpdateDomainEndpointOptionsCommandInput}
|
|
@@ -65,6 +81,8 @@ export interface UpdateDomainEndpointOptionsCommandOutput extends UpdateDomainEn
|
|
|
65
81
|
* @throws {@link ValidationException} (client fault)
|
|
66
82
|
* <p>The request was rejected because it has invalid parameters.</p>
|
|
67
83
|
*
|
|
84
|
+
* @throws {@link CloudSearchServiceException}
|
|
85
|
+
* <p>Base exception class for all service exceptions from CloudSearch service.</p>
|
|
68
86
|
*
|
|
69
87
|
*/
|
|
70
88
|
export declare class UpdateDomainEndpointOptionsCommand extends $Command<UpdateDomainEndpointOptionsCommandInput, UpdateDomainEndpointOptionsCommandOutput, CloudSearchClientResolvedConfig> {
|
|
@@ -36,6 +36,23 @@ export interface UpdateScalingParametersCommandOutput extends UpdateScalingParam
|
|
|
36
36
|
* };
|
|
37
37
|
* const command = new UpdateScalingParametersCommand(input);
|
|
38
38
|
* const response = await client.send(command);
|
|
39
|
+
* // { // UpdateScalingParametersResponse
|
|
40
|
+
* // ScalingParameters: { // ScalingParametersStatus
|
|
41
|
+
* // Options: { // ScalingParameters
|
|
42
|
+
* // DesiredInstanceType: "STRING_VALUE",
|
|
43
|
+
* // DesiredReplicationCount: Number("int"),
|
|
44
|
+
* // DesiredPartitionCount: Number("int"),
|
|
45
|
+
* // },
|
|
46
|
+
* // Status: { // OptionStatus
|
|
47
|
+
* // CreationDate: new Date("TIMESTAMP"), // required
|
|
48
|
+
* // UpdateDate: new Date("TIMESTAMP"), // required
|
|
49
|
+
* // UpdateVersion: Number("int"),
|
|
50
|
+
* // State: "STRING_VALUE", // required
|
|
51
|
+
* // PendingDeletion: true || false,
|
|
52
|
+
* // },
|
|
53
|
+
* // },
|
|
54
|
+
* // };
|
|
55
|
+
*
|
|
39
56
|
* ```
|
|
40
57
|
*
|
|
41
58
|
* @param UpdateScalingParametersCommandInput - {@link UpdateScalingParametersCommandInput}
|
|
@@ -63,6 +80,8 @@ export interface UpdateScalingParametersCommandOutput extends UpdateScalingParam
|
|
|
63
80
|
* @throws {@link ValidationException} (client fault)
|
|
64
81
|
* <p>The request was rejected because it has invalid parameters.</p>
|
|
65
82
|
*
|
|
83
|
+
* @throws {@link CloudSearchServiceException}
|
|
84
|
+
* <p>Base exception class for all service exceptions from CloudSearch service.</p>
|
|
66
85
|
*
|
|
67
86
|
*/
|
|
68
87
|
export declare class UpdateScalingParametersCommand extends $Command<UpdateScalingParametersCommandInput, UpdateScalingParametersCommandOutput, CloudSearchClientResolvedConfig> {
|
|
@@ -34,6 +34,19 @@ export interface UpdateServiceAccessPoliciesCommandOutput extends UpdateServiceA
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new UpdateServiceAccessPoliciesCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // { // UpdateServiceAccessPoliciesResponse
|
|
38
|
+
* // AccessPolicies: { // AccessPoliciesStatus
|
|
39
|
+
* // Options: "STRING_VALUE", // required
|
|
40
|
+
* // Status: { // OptionStatus
|
|
41
|
+
* // CreationDate: new Date("TIMESTAMP"), // required
|
|
42
|
+
* // UpdateDate: new Date("TIMESTAMP"), // required
|
|
43
|
+
* // UpdateVersion: Number("int"),
|
|
44
|
+
* // State: "STRING_VALUE", // required
|
|
45
|
+
* // PendingDeletion: true || false,
|
|
46
|
+
* // },
|
|
47
|
+
* // },
|
|
48
|
+
* // };
|
|
49
|
+
*
|
|
37
50
|
* ```
|
|
38
51
|
*
|
|
39
52
|
* @param UpdateServiceAccessPoliciesCommandInput - {@link UpdateServiceAccessPoliciesCommandInput}
|
|
@@ -61,6 +74,8 @@ export interface UpdateServiceAccessPoliciesCommandOutput extends UpdateServiceA
|
|
|
61
74
|
* @throws {@link ValidationException} (client fault)
|
|
62
75
|
* <p>The request was rejected because it has invalid parameters.</p>
|
|
63
76
|
*
|
|
77
|
+
* @throws {@link CloudSearchServiceException}
|
|
78
|
+
* <p>Base exception class for all service exceptions from CloudSearch service.</p>
|
|
64
79
|
*
|
|
65
80
|
*/
|
|
66
81
|
export declare class UpdateServiceAccessPoliciesCommand extends $Command<UpdateServiceAccessPoliciesCommandInput, UpdateServiceAccessPoliciesCommandOutput, CloudSearchClientResolvedConfig> {
|
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.
|
|
4
|
+
"version": "3.327.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,9 +21,9 @@
|
|
|
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.
|
|
24
|
+
"@aws-sdk/client-sts": "3.327.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.310.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.327.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.310.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.310.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.310.0",
|
|
@@ -32,11 +32,11 @@
|
|
|
32
32
|
"@aws-sdk/middleware-host-header": "3.325.0",
|
|
33
33
|
"@aws-sdk/middleware-logger": "3.325.0",
|
|
34
34
|
"@aws-sdk/middleware-recursion-detection": "3.325.0",
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.327.0",
|
|
36
36
|
"@aws-sdk/middleware-serde": "3.325.0",
|
|
37
37
|
"@aws-sdk/middleware-signing": "3.325.0",
|
|
38
38
|
"@aws-sdk/middleware-stack": "3.325.0",
|
|
39
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
39
|
+
"@aws-sdk/middleware-user-agent": "3.327.0",
|
|
40
40
|
"@aws-sdk/node-config-provider": "3.310.0",
|
|
41
41
|
"@aws-sdk/node-http-handler": "3.321.1",
|
|
42
42
|
"@aws-sdk/protocol-http": "3.310.0",
|
|
@@ -48,8 +48,8 @@
|
|
|
48
48
|
"@aws-sdk/util-body-length-node": "3.310.0",
|
|
49
49
|
"@aws-sdk/util-defaults-mode-browser": "3.325.0",
|
|
50
50
|
"@aws-sdk/util-defaults-mode-node": "3.325.0",
|
|
51
|
-
"@aws-sdk/util-endpoints": "3.
|
|
52
|
-
"@aws-sdk/util-retry": "3.
|
|
51
|
+
"@aws-sdk/util-endpoints": "3.327.0",
|
|
52
|
+
"@aws-sdk/util-retry": "3.327.0",
|
|
53
53
|
"@aws-sdk/util-user-agent-browser": "3.310.0",
|
|
54
54
|
"@aws-sdk/util-user-agent-node": "3.310.0",
|
|
55
55
|
"@aws-sdk/util-utf8": "3.310.0",
|