cdk-comprehend-s3olap 2.0.135 → 2.0.137
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/.gitattributes +1 -0
- package/.jsii +3 -3
- package/lib/cdk-comprehend-s3olap.js +2 -2
- package/lib/comprehend-lambdas.js +2 -2
- package/lib/iam-roles.js +4 -4
- package/node_modules/aws-sdk/CHANGELOG.md +11 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/chime-sdk-messaging-2021-05-15.min.json +4 -9
- package/node_modules/aws-sdk/apis/connect-2017-08-08.min.json +1279 -275
- package/node_modules/aws-sdk/apis/connect-2017-08-08.paginators.json +17 -0
- package/node_modules/aws-sdk/apis/datasync-2018-11-09.min.json +782 -113
- package/node_modules/aws-sdk/apis/datasync-2018-11-09.paginators.json +23 -0
- package/node_modules/aws-sdk/apis/ds-2015-04-16.min.json +8 -7
- package/node_modules/aws-sdk/apis/metadata.json +3 -0
- package/node_modules/aws-sdk/apis/osis-2022-01-01.examples.json +5 -0
- package/node_modules/aws-sdk/apis/osis-2022-01-01.min.json +555 -0
- package/node_modules/aws-sdk/apis/osis-2022-01-01.paginators.json +9 -0
- package/node_modules/aws-sdk/apis/pinpoint-2016-12-01.examples.json +98 -0
- package/node_modules/aws-sdk/apis/pinpoint-2016-12-01.min.json +233 -23
- package/node_modules/aws-sdk/clients/all.d.ts +1 -0
- package/node_modules/aws-sdk/clients/all.js +2 -1
- package/node_modules/aws-sdk/clients/chimesdkmessaging.d.ts +0 -12
- package/node_modules/aws-sdk/clients/connect.d.ts +1119 -89
- package/node_modules/aws-sdk/clients/datasync.d.ts +857 -10
- package/node_modules/aws-sdk/clients/directoryservice.d.ts +7 -2
- package/node_modules/aws-sdk/clients/osis.d.ts +574 -0
- package/node_modules/aws-sdk/clients/osis.js +18 -0
- package/node_modules/aws-sdk/clients/pinpoint.d.ts +208 -23
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +2 -2
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +48 -11
- package/node_modules/aws-sdk/dist/aws-sdk.js +1302 -278
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +79 -79
- package/node_modules/aws-sdk/lib/config_service_placeholders.d.ts +2 -0
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +5 -5
@@ -1406,6 +1406,7 @@ declare namespace DirectoryService {
|
|
1406
1406
|
export type Description = string;
|
1407
1407
|
export type DesiredNumberOfDomainControllers = number;
|
1408
1408
|
export type DirectoryConfigurationSettingAllowedValues = string;
|
1409
|
+
export type DirectoryConfigurationSettingDataType = string;
|
1409
1410
|
export type DirectoryConfigurationSettingLastRequestedDateTime = Date;
|
1410
1411
|
export type DirectoryConfigurationSettingLastUpdatedDateTime = Date;
|
1411
1412
|
export type DirectoryConfigurationSettingName = string;
|
@@ -2322,7 +2323,7 @@ declare namespace DirectoryService {
|
|
2322
2323
|
export type SettingEntries = SettingEntry[];
|
2323
2324
|
export interface SettingEntry {
|
2324
2325
|
/**
|
2325
|
-
* The type of directory setting. For example, Protocol or
|
2326
|
+
* The type, or category, of a directory setting. Similar settings have the same type. For example, Protocol, Cipher, or Certificate-Based Authentication.
|
2326
2327
|
*/
|
2327
2328
|
Type?: DirectoryConfigurationSettingType;
|
2328
2329
|
/**
|
@@ -2330,7 +2331,7 @@ declare namespace DirectoryService {
|
|
2330
2331
|
*/
|
2331
2332
|
Name?: DirectoryConfigurationSettingName;
|
2332
2333
|
/**
|
2333
|
-
* The valid range of values for the directory setting.
|
2334
|
+
* The valid range of values for the directory setting. These values depend on the DataType of your directory.
|
2334
2335
|
*/
|
2335
2336
|
AllowedValues?: DirectoryConfigurationSettingAllowedValues;
|
2336
2337
|
/**
|
@@ -2361,6 +2362,10 @@ declare namespace DirectoryService {
|
|
2361
2362
|
* The date and time when the request to update a directory setting was last submitted.
|
2362
2363
|
*/
|
2363
2364
|
LastRequestedDateTime?: DirectoryConfigurationSettingLastRequestedDateTime;
|
2365
|
+
/**
|
2366
|
+
* The data type of a directory setting. This is used to define the AllowedValues of a setting. For example a data type can be Boolean, DurationInSeconds, or Enum.
|
2367
|
+
*/
|
2368
|
+
DataType?: DirectoryConfigurationSettingDataType;
|
2364
2369
|
}
|
2365
2370
|
export type Settings = Setting[];
|
2366
2371
|
export interface ShareDirectoryRequest {
|
@@ -0,0 +1,574 @@
|
|
1
|
+
import {Request} from '../lib/request';
|
2
|
+
import {Response} from '../lib/response';
|
3
|
+
import {AWSError} from '../lib/error';
|
4
|
+
import {Service} from '../lib/service';
|
5
|
+
import {ServiceConfigurationOptions} from '../lib/service';
|
6
|
+
import {ConfigBase as Config} from '../lib/config-base';
|
7
|
+
interface Blob {}
|
8
|
+
declare class OSIS extends Service {
|
9
|
+
/**
|
10
|
+
* Constructs a service object. This object has one method for each API operation.
|
11
|
+
*/
|
12
|
+
constructor(options?: OSIS.Types.ClientConfiguration)
|
13
|
+
config: Config & OSIS.Types.ClientConfiguration;
|
14
|
+
/**
|
15
|
+
* Creates an OpenSearch Ingestion pipeline. For more information, see Creating and managing OpenSearch Ingestion pipelines.
|
16
|
+
*/
|
17
|
+
createPipeline(params: OSIS.Types.CreatePipelineRequest, callback?: (err: AWSError, data: OSIS.Types.CreatePipelineResponse) => void): Request<OSIS.Types.CreatePipelineResponse, AWSError>;
|
18
|
+
/**
|
19
|
+
* Creates an OpenSearch Ingestion pipeline. For more information, see Creating and managing OpenSearch Ingestion pipelines.
|
20
|
+
*/
|
21
|
+
createPipeline(callback?: (err: AWSError, data: OSIS.Types.CreatePipelineResponse) => void): Request<OSIS.Types.CreatePipelineResponse, AWSError>;
|
22
|
+
/**
|
23
|
+
* Deletes an OpenSearch Ingestion pipeline. For more information, see Deleting pipelines.
|
24
|
+
*/
|
25
|
+
deletePipeline(params: OSIS.Types.DeletePipelineRequest, callback?: (err: AWSError, data: OSIS.Types.DeletePipelineResponse) => void): Request<OSIS.Types.DeletePipelineResponse, AWSError>;
|
26
|
+
/**
|
27
|
+
* Deletes an OpenSearch Ingestion pipeline. For more information, see Deleting pipelines.
|
28
|
+
*/
|
29
|
+
deletePipeline(callback?: (err: AWSError, data: OSIS.Types.DeletePipelineResponse) => void): Request<OSIS.Types.DeletePipelineResponse, AWSError>;
|
30
|
+
/**
|
31
|
+
* Retrieves information about an OpenSearch Ingestion pipeline.
|
32
|
+
*/
|
33
|
+
getPipeline(params: OSIS.Types.GetPipelineRequest, callback?: (err: AWSError, data: OSIS.Types.GetPipelineResponse) => void): Request<OSIS.Types.GetPipelineResponse, AWSError>;
|
34
|
+
/**
|
35
|
+
* Retrieves information about an OpenSearch Ingestion pipeline.
|
36
|
+
*/
|
37
|
+
getPipeline(callback?: (err: AWSError, data: OSIS.Types.GetPipelineResponse) => void): Request<OSIS.Types.GetPipelineResponse, AWSError>;
|
38
|
+
/**
|
39
|
+
* Retrieves information about a specific blueprint for OpenSearch Ingestion. Blueprints are templates for the configuration needed for a CreatePipeline request.
|
40
|
+
*/
|
41
|
+
getPipelineBlueprint(params: OSIS.Types.GetPipelineBlueprintRequest, callback?: (err: AWSError, data: OSIS.Types.GetPipelineBlueprintResponse) => void): Request<OSIS.Types.GetPipelineBlueprintResponse, AWSError>;
|
42
|
+
/**
|
43
|
+
* Retrieves information about a specific blueprint for OpenSearch Ingestion. Blueprints are templates for the configuration needed for a CreatePipeline request.
|
44
|
+
*/
|
45
|
+
getPipelineBlueprint(callback?: (err: AWSError, data: OSIS.Types.GetPipelineBlueprintResponse) => void): Request<OSIS.Types.GetPipelineBlueprintResponse, AWSError>;
|
46
|
+
/**
|
47
|
+
* Returns progress information for the current change happening on an OpenSearch Ingestion pipeline. Currently, this operation only returns information when a pipeline is being created. For more information, see Creating and managing OpenSearch Ingestion pipelines.
|
48
|
+
*/
|
49
|
+
getPipelineChangeProgress(params: OSIS.Types.GetPipelineChangeProgressRequest, callback?: (err: AWSError, data: OSIS.Types.GetPipelineChangeProgressResponse) => void): Request<OSIS.Types.GetPipelineChangeProgressResponse, AWSError>;
|
50
|
+
/**
|
51
|
+
* Returns progress information for the current change happening on an OpenSearch Ingestion pipeline. Currently, this operation only returns information when a pipeline is being created. For more information, see Creating and managing OpenSearch Ingestion pipelines.
|
52
|
+
*/
|
53
|
+
getPipelineChangeProgress(callback?: (err: AWSError, data: OSIS.Types.GetPipelineChangeProgressResponse) => void): Request<OSIS.Types.GetPipelineChangeProgressResponse, AWSError>;
|
54
|
+
/**
|
55
|
+
* Retrieves a list of all available blueprints for Data Prepper.
|
56
|
+
*/
|
57
|
+
listPipelineBlueprints(params: OSIS.Types.ListPipelineBlueprintsRequest, callback?: (err: AWSError, data: OSIS.Types.ListPipelineBlueprintsResponse) => void): Request<OSIS.Types.ListPipelineBlueprintsResponse, AWSError>;
|
58
|
+
/**
|
59
|
+
* Retrieves a list of all available blueprints for Data Prepper.
|
60
|
+
*/
|
61
|
+
listPipelineBlueprints(callback?: (err: AWSError, data: OSIS.Types.ListPipelineBlueprintsResponse) => void): Request<OSIS.Types.ListPipelineBlueprintsResponse, AWSError>;
|
62
|
+
/**
|
63
|
+
* Lists all OpenSearch Ingestion pipelines in the current Amazon Web Services account and Region. For more information, see Creating and managing OpenSearch Ingestion pipelines.
|
64
|
+
*/
|
65
|
+
listPipelines(params: OSIS.Types.ListPipelinesRequest, callback?: (err: AWSError, data: OSIS.Types.ListPipelinesResponse) => void): Request<OSIS.Types.ListPipelinesResponse, AWSError>;
|
66
|
+
/**
|
67
|
+
* Lists all OpenSearch Ingestion pipelines in the current Amazon Web Services account and Region. For more information, see Creating and managing OpenSearch Ingestion pipelines.
|
68
|
+
*/
|
69
|
+
listPipelines(callback?: (err: AWSError, data: OSIS.Types.ListPipelinesResponse) => void): Request<OSIS.Types.ListPipelinesResponse, AWSError>;
|
70
|
+
/**
|
71
|
+
* Lists all resource tags associated with an OpenSearch Ingestion pipeline. For more information, see Tagging OpenSearch Ingestion pipelines.
|
72
|
+
*/
|
73
|
+
listTagsForResource(params: OSIS.Types.ListTagsForResourceRequest, callback?: (err: AWSError, data: OSIS.Types.ListTagsForResourceResponse) => void): Request<OSIS.Types.ListTagsForResourceResponse, AWSError>;
|
74
|
+
/**
|
75
|
+
* Lists all resource tags associated with an OpenSearch Ingestion pipeline. For more information, see Tagging OpenSearch Ingestion pipelines.
|
76
|
+
*/
|
77
|
+
listTagsForResource(callback?: (err: AWSError, data: OSIS.Types.ListTagsForResourceResponse) => void): Request<OSIS.Types.ListTagsForResourceResponse, AWSError>;
|
78
|
+
/**
|
79
|
+
* Starts an OpenSearch Ingestion pipeline. For more information, see Starting pipelines.
|
80
|
+
*/
|
81
|
+
startPipeline(params: OSIS.Types.StartPipelineRequest, callback?: (err: AWSError, data: OSIS.Types.StartPipelineResponse) => void): Request<OSIS.Types.StartPipelineResponse, AWSError>;
|
82
|
+
/**
|
83
|
+
* Starts an OpenSearch Ingestion pipeline. For more information, see Starting pipelines.
|
84
|
+
*/
|
85
|
+
startPipeline(callback?: (err: AWSError, data: OSIS.Types.StartPipelineResponse) => void): Request<OSIS.Types.StartPipelineResponse, AWSError>;
|
86
|
+
/**
|
87
|
+
* Stops an OpenSearch Ingestion pipeline. For more information, see Stopping pipelines.
|
88
|
+
*/
|
89
|
+
stopPipeline(params: OSIS.Types.StopPipelineRequest, callback?: (err: AWSError, data: OSIS.Types.StopPipelineResponse) => void): Request<OSIS.Types.StopPipelineResponse, AWSError>;
|
90
|
+
/**
|
91
|
+
* Stops an OpenSearch Ingestion pipeline. For more information, see Stopping pipelines.
|
92
|
+
*/
|
93
|
+
stopPipeline(callback?: (err: AWSError, data: OSIS.Types.StopPipelineResponse) => void): Request<OSIS.Types.StopPipelineResponse, AWSError>;
|
94
|
+
/**
|
95
|
+
* Tags an OpenSearch Ingestion pipeline. For more information, see Tagging OpenSearch Ingestion pipelines.
|
96
|
+
*/
|
97
|
+
tagResource(params: OSIS.Types.TagResourceRequest, callback?: (err: AWSError, data: OSIS.Types.TagResourceResponse) => void): Request<OSIS.Types.TagResourceResponse, AWSError>;
|
98
|
+
/**
|
99
|
+
* Tags an OpenSearch Ingestion pipeline. For more information, see Tagging OpenSearch Ingestion pipelines.
|
100
|
+
*/
|
101
|
+
tagResource(callback?: (err: AWSError, data: OSIS.Types.TagResourceResponse) => void): Request<OSIS.Types.TagResourceResponse, AWSError>;
|
102
|
+
/**
|
103
|
+
* Removes one or more tags from an OpenSearch Ingestion pipeline. For more information, see Tagging OpenSearch Ingestion pipelines.
|
104
|
+
*/
|
105
|
+
untagResource(params: OSIS.Types.UntagResourceRequest, callback?: (err: AWSError, data: OSIS.Types.UntagResourceResponse) => void): Request<OSIS.Types.UntagResourceResponse, AWSError>;
|
106
|
+
/**
|
107
|
+
* Removes one or more tags from an OpenSearch Ingestion pipeline. For more information, see Tagging OpenSearch Ingestion pipelines.
|
108
|
+
*/
|
109
|
+
untagResource(callback?: (err: AWSError, data: OSIS.Types.UntagResourceResponse) => void): Request<OSIS.Types.UntagResourceResponse, AWSError>;
|
110
|
+
/**
|
111
|
+
* Updates an OpenSearch Ingestion pipeline. For more information, see Creating and managing OpenSearch Ingestion pipelines.
|
112
|
+
*/
|
113
|
+
updatePipeline(params: OSIS.Types.UpdatePipelineRequest, callback?: (err: AWSError, data: OSIS.Types.UpdatePipelineResponse) => void): Request<OSIS.Types.UpdatePipelineResponse, AWSError>;
|
114
|
+
/**
|
115
|
+
* Updates an OpenSearch Ingestion pipeline. For more information, see Creating and managing OpenSearch Ingestion pipelines.
|
116
|
+
*/
|
117
|
+
updatePipeline(callback?: (err: AWSError, data: OSIS.Types.UpdatePipelineResponse) => void): Request<OSIS.Types.UpdatePipelineResponse, AWSError>;
|
118
|
+
/**
|
119
|
+
* Checks whether an OpenSearch Ingestion pipeline configuration is valid prior to creation. For more information, see Creating and managing OpenSearch Ingestion pipelines.
|
120
|
+
*/
|
121
|
+
validatePipeline(params: OSIS.Types.ValidatePipelineRequest, callback?: (err: AWSError, data: OSIS.Types.ValidatePipelineResponse) => void): Request<OSIS.Types.ValidatePipelineResponse, AWSError>;
|
122
|
+
/**
|
123
|
+
* Checks whether an OpenSearch Ingestion pipeline configuration is valid prior to creation. For more information, see Creating and managing OpenSearch Ingestion pipelines.
|
124
|
+
*/
|
125
|
+
validatePipeline(callback?: (err: AWSError, data: OSIS.Types.ValidatePipelineResponse) => void): Request<OSIS.Types.ValidatePipelineResponse, AWSError>;
|
126
|
+
}
|
127
|
+
declare namespace OSIS {
|
128
|
+
export type Boolean = boolean;
|
129
|
+
export interface ChangeProgressStage {
|
130
|
+
/**
|
131
|
+
* The name of the stage.
|
132
|
+
*/
|
133
|
+
Name?: String;
|
134
|
+
/**
|
135
|
+
* The current status of the stage that the change is in.
|
136
|
+
*/
|
137
|
+
Status?: ChangeProgressStageStatuses;
|
138
|
+
/**
|
139
|
+
* A description of the stage.
|
140
|
+
*/
|
141
|
+
Description?: String;
|
142
|
+
/**
|
143
|
+
* The most recent updated timestamp of the stage.
|
144
|
+
*/
|
145
|
+
LastUpdatedAt?: Timestamp;
|
146
|
+
}
|
147
|
+
export type ChangeProgressStageList = ChangeProgressStage[];
|
148
|
+
export type ChangeProgressStageStatuses = "PENDING"|"IN_PROGRESS"|"COMPLETED"|"FAILED"|string;
|
149
|
+
export interface ChangeProgressStatus {
|
150
|
+
/**
|
151
|
+
* The time at which the configuration change is made on the pipeline.
|
152
|
+
*/
|
153
|
+
StartTime?: Timestamp;
|
154
|
+
/**
|
155
|
+
* The overall status of the pipeline configuration change.
|
156
|
+
*/
|
157
|
+
Status?: ChangeProgressStatuses;
|
158
|
+
/**
|
159
|
+
* The total number of stages required for the pipeline configuration change.
|
160
|
+
*/
|
161
|
+
TotalNumberOfStages?: Integer;
|
162
|
+
/**
|
163
|
+
* Information about the stages that the pipeline is going through to perform the configuration change.
|
164
|
+
*/
|
165
|
+
ChangeProgressStages?: ChangeProgressStageList;
|
166
|
+
}
|
167
|
+
export type ChangeProgressStatusList = ChangeProgressStatus[];
|
168
|
+
export type ChangeProgressStatuses = "PENDING"|"IN_PROGRESS"|"COMPLETED"|"FAILED"|string;
|
169
|
+
export interface CloudWatchLogDestination {
|
170
|
+
/**
|
171
|
+
* The name of the CloudWatch Logs group to send pipeline logs to. You can specify an existing log group or create a new one. For example, /aws/OpenSearchService/IngestionService/my-pipeline.
|
172
|
+
*/
|
173
|
+
LogGroup: LogGroup;
|
174
|
+
}
|
175
|
+
export interface CreatePipelineRequest {
|
176
|
+
/**
|
177
|
+
* The name of the OpenSearch Ingestion pipeline to create. Pipeline names are unique across the pipelines owned by an account within an Amazon Web Services Region.
|
178
|
+
*/
|
179
|
+
PipelineName: PipelineName;
|
180
|
+
/**
|
181
|
+
* The minimum pipeline capacity, in Ingestion Compute Units (ICUs).
|
182
|
+
*/
|
183
|
+
MinUnits: PipelineUnits;
|
184
|
+
/**
|
185
|
+
* The maximum pipeline capacity, in Ingestion Compute Units (ICUs).
|
186
|
+
*/
|
187
|
+
MaxUnits: PipelineUnits;
|
188
|
+
/**
|
189
|
+
* The pipeline configuration in YAML format. The command accepts the pipeline configuration as a string or within a .yaml file. If you provide the configuration as a string, each new line must be escaped with \n.
|
190
|
+
*/
|
191
|
+
PipelineConfigurationBody: PipelineConfigurationBody;
|
192
|
+
/**
|
193
|
+
* Key-value pairs to configure log publishing.
|
194
|
+
*/
|
195
|
+
LogPublishingOptions?: LogPublishingOptions;
|
196
|
+
/**
|
197
|
+
* Container for the values required to configure VPC access for the pipeline. If you don't specify these values, OpenSearch Ingestion creates the pipeline with a public endpoint.
|
198
|
+
*/
|
199
|
+
VpcOptions?: VpcOptions;
|
200
|
+
/**
|
201
|
+
* List of tags to add to the pipeline upon creation.
|
202
|
+
*/
|
203
|
+
Tags?: TagList;
|
204
|
+
}
|
205
|
+
export interface CreatePipelineResponse {
|
206
|
+
/**
|
207
|
+
* Container for information about the created pipeline.
|
208
|
+
*/
|
209
|
+
Pipeline?: Pipeline;
|
210
|
+
}
|
211
|
+
export interface DeletePipelineRequest {
|
212
|
+
/**
|
213
|
+
* The name of the pipeline to delete.
|
214
|
+
*/
|
215
|
+
PipelineName: PipelineName;
|
216
|
+
}
|
217
|
+
export interface DeletePipelineResponse {
|
218
|
+
}
|
219
|
+
export interface GetPipelineBlueprintRequest {
|
220
|
+
/**
|
221
|
+
* The name of the blueprint to retrieve.
|
222
|
+
*/
|
223
|
+
BlueprintName: String;
|
224
|
+
}
|
225
|
+
export interface GetPipelineBlueprintResponse {
|
226
|
+
/**
|
227
|
+
* The requested blueprint in YAML format.
|
228
|
+
*/
|
229
|
+
Blueprint?: PipelineBlueprint;
|
230
|
+
}
|
231
|
+
export interface GetPipelineChangeProgressRequest {
|
232
|
+
/**
|
233
|
+
* The name of the pipeline.
|
234
|
+
*/
|
235
|
+
PipelineName: PipelineName;
|
236
|
+
}
|
237
|
+
export interface GetPipelineChangeProgressResponse {
|
238
|
+
/**
|
239
|
+
* The current status of the change happening on the pipeline.
|
240
|
+
*/
|
241
|
+
ChangeProgressStatuses?: ChangeProgressStatusList;
|
242
|
+
}
|
243
|
+
export interface GetPipelineRequest {
|
244
|
+
/**
|
245
|
+
* The name of the pipeline to get information about.
|
246
|
+
*/
|
247
|
+
PipelineName: PipelineName;
|
248
|
+
}
|
249
|
+
export interface GetPipelineResponse {
|
250
|
+
/**
|
251
|
+
* Detailed information about the requested pipeline.
|
252
|
+
*/
|
253
|
+
Pipeline?: Pipeline;
|
254
|
+
}
|
255
|
+
export type IngestEndpointUrlsList = String[];
|
256
|
+
export type Integer = number;
|
257
|
+
export interface ListPipelineBlueprintsRequest {
|
258
|
+
}
|
259
|
+
export interface ListPipelineBlueprintsResponse {
|
260
|
+
/**
|
261
|
+
* A list of available blueprints for Data Prepper.
|
262
|
+
*/
|
263
|
+
Blueprints?: PipelineBlueprintsSummaryList;
|
264
|
+
}
|
265
|
+
export interface ListPipelinesRequest {
|
266
|
+
/**
|
267
|
+
* An optional parameter that specifies the maximum number of results to return. You can use nextToken to get the next page of results.
|
268
|
+
*/
|
269
|
+
MaxResults?: MaxResults;
|
270
|
+
/**
|
271
|
+
* If your initial ListPipelines operation returns a nextToken, you can include the returned nextToken in subsequent ListPipelines operations, which returns results in the next page.
|
272
|
+
*/
|
273
|
+
NextToken?: NextToken;
|
274
|
+
}
|
275
|
+
export interface ListPipelinesResponse {
|
276
|
+
/**
|
277
|
+
* When nextToken is returned, there are more results available. The value of nextToken is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page.
|
278
|
+
*/
|
279
|
+
NextToken?: NextToken;
|
280
|
+
/**
|
281
|
+
* A list of all existing Data Prepper pipelines.
|
282
|
+
*/
|
283
|
+
Pipelines?: PipelineSummaryList;
|
284
|
+
}
|
285
|
+
export interface ListTagsForResourceRequest {
|
286
|
+
/**
|
287
|
+
* The Amazon Resource Name (ARN) of the pipeline to retrieve tags for.
|
288
|
+
*/
|
289
|
+
Arn: PipelineArn;
|
290
|
+
}
|
291
|
+
export interface ListTagsForResourceResponse {
|
292
|
+
/**
|
293
|
+
* A list of tags associated with the given pipeline.
|
294
|
+
*/
|
295
|
+
Tags?: TagList;
|
296
|
+
}
|
297
|
+
export type LogGroup = string;
|
298
|
+
export interface LogPublishingOptions {
|
299
|
+
/**
|
300
|
+
* Whether logs should be published.
|
301
|
+
*/
|
302
|
+
IsLoggingEnabled?: Boolean;
|
303
|
+
/**
|
304
|
+
* The destination for OpenSearch Ingestion logs sent to Amazon CloudWatch Logs. This parameter is required if IsLoggingEnabled is set to true.
|
305
|
+
*/
|
306
|
+
CloudWatchLogDestination?: CloudWatchLogDestination;
|
307
|
+
}
|
308
|
+
export type MaxResults = number;
|
309
|
+
export type NextToken = string;
|
310
|
+
export interface Pipeline {
|
311
|
+
/**
|
312
|
+
* The name of the pipeline.
|
313
|
+
*/
|
314
|
+
PipelineName?: String;
|
315
|
+
/**
|
316
|
+
* The Amazon Resource Name (ARN) of the pipeline.
|
317
|
+
*/
|
318
|
+
PipelineArn?: String;
|
319
|
+
/**
|
320
|
+
* The minimum pipeline capacity, in Ingestion Compute Units (ICUs).
|
321
|
+
*/
|
322
|
+
MinUnits?: Integer;
|
323
|
+
/**
|
324
|
+
* The maximum pipeline capacity, in Ingestion Compute Units (ICUs).
|
325
|
+
*/
|
326
|
+
MaxUnits?: Integer;
|
327
|
+
/**
|
328
|
+
* The current status of the pipeline.
|
329
|
+
*/
|
330
|
+
Status?: PipelineStatus;
|
331
|
+
/**
|
332
|
+
* The reason for the current status of the pipeline.
|
333
|
+
*/
|
334
|
+
StatusReason?: PipelineStatusReason;
|
335
|
+
/**
|
336
|
+
* The Data Prepper pipeline configuration in YAML format.
|
337
|
+
*/
|
338
|
+
PipelineConfigurationBody?: String;
|
339
|
+
/**
|
340
|
+
* The date and time when the pipeline was created.
|
341
|
+
*/
|
342
|
+
CreatedAt?: Timestamp;
|
343
|
+
/**
|
344
|
+
* The date and time when the pipeline was last updated.
|
345
|
+
*/
|
346
|
+
LastUpdatedAt?: Timestamp;
|
347
|
+
/**
|
348
|
+
* The ingestion endpoints for the pipeline, which you can send data to.
|
349
|
+
*/
|
350
|
+
IngestEndpointUrls?: IngestEndpointUrlsList;
|
351
|
+
/**
|
352
|
+
* Key-value pairs that represent log publishing settings.
|
353
|
+
*/
|
354
|
+
LogPublishingOptions?: LogPublishingOptions;
|
355
|
+
/**
|
356
|
+
* The VPC interface endpoints that have access to the pipeline.
|
357
|
+
*/
|
358
|
+
VpcEndpoints?: VpcEndpointsList;
|
359
|
+
}
|
360
|
+
export type PipelineArn = string;
|
361
|
+
export interface PipelineBlueprint {
|
362
|
+
/**
|
363
|
+
* The name of the blueprint.
|
364
|
+
*/
|
365
|
+
BlueprintName?: String;
|
366
|
+
/**
|
367
|
+
* The YAML configuration of the blueprint.
|
368
|
+
*/
|
369
|
+
PipelineConfigurationBody?: String;
|
370
|
+
}
|
371
|
+
export interface PipelineBlueprintSummary {
|
372
|
+
/**
|
373
|
+
* The name of the blueprint.
|
374
|
+
*/
|
375
|
+
BlueprintName?: String;
|
376
|
+
}
|
377
|
+
export type PipelineBlueprintsSummaryList = PipelineBlueprintSummary[];
|
378
|
+
export type PipelineConfigurationBody = string;
|
379
|
+
export type PipelineName = string;
|
380
|
+
export type PipelineStatus = "CREATING"|"ACTIVE"|"UPDATING"|"DELETING"|"CREATE_FAILED"|"UPDATE_FAILED"|"STARTING"|"START_FAILED"|"STOPPING"|"STOPPED"|string;
|
381
|
+
export interface PipelineStatusReason {
|
382
|
+
/**
|
383
|
+
* A description of why a pipeline has a certain status.
|
384
|
+
*/
|
385
|
+
Description?: String;
|
386
|
+
}
|
387
|
+
export interface PipelineSummary {
|
388
|
+
/**
|
389
|
+
* The current status of the pipeline.
|
390
|
+
*/
|
391
|
+
Status?: PipelineStatus;
|
392
|
+
StatusReason?: PipelineStatusReason;
|
393
|
+
/**
|
394
|
+
* The name of the pipeline.
|
395
|
+
*/
|
396
|
+
PipelineName?: PipelineName;
|
397
|
+
/**
|
398
|
+
* The Amazon Resource Name (ARN) of the pipeline.
|
399
|
+
*/
|
400
|
+
PipelineArn?: PipelineArn;
|
401
|
+
/**
|
402
|
+
* The minimum pipeline capacity, in Ingestion Compute Units (ICUs).
|
403
|
+
*/
|
404
|
+
MinUnits?: PipelineUnits;
|
405
|
+
/**
|
406
|
+
* The maximum pipeline capacity, in Ingestion Compute Units (ICUs).
|
407
|
+
*/
|
408
|
+
MaxUnits?: PipelineUnits;
|
409
|
+
/**
|
410
|
+
* The date and time when the pipeline was created.
|
411
|
+
*/
|
412
|
+
CreatedAt?: Timestamp;
|
413
|
+
/**
|
414
|
+
* The date and time when the pipeline was last updated.
|
415
|
+
*/
|
416
|
+
LastUpdatedAt?: Timestamp;
|
417
|
+
}
|
418
|
+
export type PipelineSummaryList = PipelineSummary[];
|
419
|
+
export type PipelineUnits = number;
|
420
|
+
export type SecurityGroupId = string;
|
421
|
+
export type SecurityGroupIds = SecurityGroupId[];
|
422
|
+
export interface StartPipelineRequest {
|
423
|
+
/**
|
424
|
+
* The name of the pipeline to start.
|
425
|
+
*/
|
426
|
+
PipelineName: PipelineName;
|
427
|
+
}
|
428
|
+
export interface StartPipelineResponse {
|
429
|
+
Pipeline?: Pipeline;
|
430
|
+
}
|
431
|
+
export interface StopPipelineRequest {
|
432
|
+
/**
|
433
|
+
* The name of the pipeline to stop.
|
434
|
+
*/
|
435
|
+
PipelineName: PipelineName;
|
436
|
+
}
|
437
|
+
export interface StopPipelineResponse {
|
438
|
+
Pipeline?: Pipeline;
|
439
|
+
}
|
440
|
+
export type String = string;
|
441
|
+
export type StringList = String[];
|
442
|
+
export type SubnetId = string;
|
443
|
+
export type SubnetIds = SubnetId[];
|
444
|
+
export interface Tag {
|
445
|
+
/**
|
446
|
+
* The tag key. Tag keys must be unique for the pipeline to which they are attached.
|
447
|
+
*/
|
448
|
+
Key: TagKey;
|
449
|
+
/**
|
450
|
+
* The value assigned to the corresponding tag key. Tag values can be null and don't have to be unique in a tag set. For example, you can have a key value pair in a tag set of project : Trinity and cost-center : Trinity
|
451
|
+
*/
|
452
|
+
Value: TagValue;
|
453
|
+
}
|
454
|
+
export type TagKey = string;
|
455
|
+
export type TagList = Tag[];
|
456
|
+
export interface TagResourceRequest {
|
457
|
+
/**
|
458
|
+
* The Amazon Resource Name (ARN) of the pipeline to tag.
|
459
|
+
*/
|
460
|
+
Arn: PipelineArn;
|
461
|
+
/**
|
462
|
+
* The list of key-value tags to add to the pipeline.
|
463
|
+
*/
|
464
|
+
Tags: TagList;
|
465
|
+
}
|
466
|
+
export interface TagResourceResponse {
|
467
|
+
}
|
468
|
+
export type TagValue = string;
|
469
|
+
export type Timestamp = Date;
|
470
|
+
export interface UntagResourceRequest {
|
471
|
+
/**
|
472
|
+
* The Amazon Resource Name (ARN) of the pipeline to remove tags from.
|
473
|
+
*/
|
474
|
+
Arn: PipelineArn;
|
475
|
+
/**
|
476
|
+
* The tag keys to remove.
|
477
|
+
*/
|
478
|
+
TagKeys: StringList;
|
479
|
+
}
|
480
|
+
export interface UntagResourceResponse {
|
481
|
+
}
|
482
|
+
export interface UpdatePipelineRequest {
|
483
|
+
/**
|
484
|
+
* The name of the pipeline to update.
|
485
|
+
*/
|
486
|
+
PipelineName: PipelineName;
|
487
|
+
/**
|
488
|
+
* The minimum pipeline capacity, in Ingestion Compute Units (ICUs).
|
489
|
+
*/
|
490
|
+
MinUnits?: PipelineUnits;
|
491
|
+
/**
|
492
|
+
* The maximum pipeline capacity, in Ingestion Compute Units (ICUs)
|
493
|
+
*/
|
494
|
+
MaxUnits?: PipelineUnits;
|
495
|
+
/**
|
496
|
+
* The pipeline configuration in YAML format. The command accepts the pipeline configuration as a string or within a .yaml file. If you provide the configuration as a string, each new line must be escaped with \n.
|
497
|
+
*/
|
498
|
+
PipelineConfigurationBody?: PipelineConfigurationBody;
|
499
|
+
/**
|
500
|
+
* Key-value pairs to configure log publishing.
|
501
|
+
*/
|
502
|
+
LogPublishingOptions?: LogPublishingOptions;
|
503
|
+
}
|
504
|
+
export interface UpdatePipelineResponse {
|
505
|
+
/**
|
506
|
+
* Container for information about the updated pipeline.
|
507
|
+
*/
|
508
|
+
Pipeline?: Pipeline;
|
509
|
+
}
|
510
|
+
export interface ValidatePipelineRequest {
|
511
|
+
/**
|
512
|
+
* The pipeline configuration in YAML format. The command accepts the pipeline configuration as a string or within a .yaml file. If you provide the configuration as a string, each new line must be escaped with \n.
|
513
|
+
*/
|
514
|
+
PipelineConfigurationBody: PipelineConfigurationBody;
|
515
|
+
}
|
516
|
+
export interface ValidatePipelineResponse {
|
517
|
+
/**
|
518
|
+
* A boolean indicating whether or not the pipeline configuration is valid.
|
519
|
+
*/
|
520
|
+
isValid?: Boolean;
|
521
|
+
/**
|
522
|
+
* A list of errors if the configuration is invalid.
|
523
|
+
*/
|
524
|
+
Errors?: ValidationMessageList;
|
525
|
+
}
|
526
|
+
export interface ValidationMessage {
|
527
|
+
/**
|
528
|
+
* The validation message.
|
529
|
+
*/
|
530
|
+
Message?: String;
|
531
|
+
}
|
532
|
+
export type ValidationMessageList = ValidationMessage[];
|
533
|
+
export interface VpcEndpoint {
|
534
|
+
/**
|
535
|
+
* The unique identifier of the endpoint.
|
536
|
+
*/
|
537
|
+
VpcEndpointId?: String;
|
538
|
+
/**
|
539
|
+
* The ID for your VPC. Amazon Web Services PrivateLink generates this value when you create a VPC.
|
540
|
+
*/
|
541
|
+
VpcId?: String;
|
542
|
+
/**
|
543
|
+
* Information about the VPC, including associated subnets and security groups.
|
544
|
+
*/
|
545
|
+
VpcOptions?: VpcOptions;
|
546
|
+
}
|
547
|
+
export type VpcEndpointsList = VpcEndpoint[];
|
548
|
+
export interface VpcOptions {
|
549
|
+
/**
|
550
|
+
* A list of subnet IDs associated with the VPC endpoint.
|
551
|
+
*/
|
552
|
+
SubnetIds: SubnetIds;
|
553
|
+
/**
|
554
|
+
* A list of security groups associated with the VPC endpoint.
|
555
|
+
*/
|
556
|
+
SecurityGroupIds?: SecurityGroupIds;
|
557
|
+
}
|
558
|
+
/**
|
559
|
+
* A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.
|
560
|
+
*/
|
561
|
+
export type apiVersion = "2022-01-01"|"latest"|string;
|
562
|
+
export interface ClientApiVersions {
|
563
|
+
/**
|
564
|
+
* A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.
|
565
|
+
*/
|
566
|
+
apiVersion?: apiVersion;
|
567
|
+
}
|
568
|
+
export type ClientConfiguration = ServiceConfigurationOptions & ClientApiVersions;
|
569
|
+
/**
|
570
|
+
* Contains interfaces for use with the OSIS client.
|
571
|
+
*/
|
572
|
+
export import Types = OSIS;
|
573
|
+
}
|
574
|
+
export = OSIS;
|
@@ -0,0 +1,18 @@
|
|
1
|
+
require('../lib/node_loader');
|
2
|
+
var AWS = require('../lib/core');
|
3
|
+
var Service = AWS.Service;
|
4
|
+
var apiLoader = AWS.apiLoader;
|
5
|
+
|
6
|
+
apiLoader.services['osis'] = {};
|
7
|
+
AWS.OSIS = Service.defineService('osis', ['2022-01-01']);
|
8
|
+
Object.defineProperty(apiLoader.services['osis'], '2022-01-01', {
|
9
|
+
get: function get() {
|
10
|
+
var model = require('../apis/osis-2022-01-01.min.json');
|
11
|
+
model.paginators = require('../apis/osis-2022-01-01.paginators.json').pagination;
|
12
|
+
return model;
|
13
|
+
},
|
14
|
+
enumerable: true,
|
15
|
+
configurable: true
|
16
|
+
});
|
17
|
+
|
18
|
+
module.exports = AWS.OSIS;
|