@aws-sdk/client-iotthingsgraph 3.50.0 → 3.51.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/CHANGELOG.md +8 -0
- package/dist-types/ts3.4/IoTThingsGraph.d.ts +180 -0
- package/dist-types/ts3.4/IoTThingsGraphClient.d.ts +108 -0
- package/dist-types/ts3.4/commands/AssociateEntityToThingCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateFlowTemplateCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateSystemInstanceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateSystemTemplateCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteFlowTemplateCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteNamespaceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteSystemInstanceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteSystemTemplateCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeploySystemInstanceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeprecateFlowTemplateCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeprecateSystemTemplateCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeNamespaceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DissociateEntityFromThingCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetEntitiesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetFlowTemplateCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetFlowTemplateRevisionsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetNamespaceDeletionStatusCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetSystemInstanceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetSystemTemplateCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetSystemTemplateRevisionsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetUploadStatusCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListFlowExecutionMessagesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/SearchEntitiesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/SearchFlowExecutionsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/SearchFlowTemplatesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/SearchSystemInstancesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/SearchSystemTemplatesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/SearchThingsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UndeploySystemInstanceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateFlowTemplateCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateSystemTemplateCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UploadEntityDefinitionsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +35 -0
- package/dist-types/ts3.4/endpoints.d.ts +2 -0
- package/dist-types/ts3.4/index.d.ts +5 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +1065 -0
- package/dist-types/ts3.4/pagination/GetFlowTemplateRevisionsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/GetSystemTemplateRevisionsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListFlowExecutionMessagesPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListTagsForResourcePaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/SearchEntitiesPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/SearchFlowExecutionsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/SearchFlowTemplatesPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/SearchSystemInstancesPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/SearchSystemTemplatesPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/SearchThingsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/index.d.ts +11 -0
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +107 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +38 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +38 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +37 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
- package/package.json +8 -8
|
@@ -0,0 +1,1065 @@
|
|
|
1
|
+
import { MetadataBearer as $MetadataBearer, SmithyException as __SmithyException } from "@aws-sdk/types";
|
|
2
|
+
export interface AssociateEntityToThingRequest {
|
|
3
|
+
|
|
4
|
+
thingName: string | undefined;
|
|
5
|
+
|
|
6
|
+
entityId: string | undefined;
|
|
7
|
+
|
|
8
|
+
namespaceVersion?: number;
|
|
9
|
+
}
|
|
10
|
+
export declare namespace AssociateEntityToThingRequest {
|
|
11
|
+
|
|
12
|
+
const filterSensitiveLog: (obj: AssociateEntityToThingRequest) => any;
|
|
13
|
+
}
|
|
14
|
+
export interface AssociateEntityToThingResponse {
|
|
15
|
+
}
|
|
16
|
+
export declare namespace AssociateEntityToThingResponse {
|
|
17
|
+
|
|
18
|
+
const filterSensitiveLog: (obj: AssociateEntityToThingResponse) => any;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
export interface InternalFailureException extends __SmithyException, $MetadataBearer {
|
|
22
|
+
name: "InternalFailureException";
|
|
23
|
+
$fault: "server";
|
|
24
|
+
message?: string;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
export interface InvalidRequestException extends __SmithyException, $MetadataBearer {
|
|
28
|
+
name: "InvalidRequestException";
|
|
29
|
+
$fault: "client";
|
|
30
|
+
message?: string;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
export interface ResourceNotFoundException extends __SmithyException, $MetadataBearer {
|
|
34
|
+
name: "ResourceNotFoundException";
|
|
35
|
+
$fault: "client";
|
|
36
|
+
message?: string;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
export interface ThrottlingException extends __SmithyException, $MetadataBearer {
|
|
40
|
+
name: "ThrottlingException";
|
|
41
|
+
$fault: "client";
|
|
42
|
+
message?: string;
|
|
43
|
+
}
|
|
44
|
+
export declare enum DefinitionLanguage {
|
|
45
|
+
GRAPHQL = "GRAPHQL"
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
export interface DefinitionDocument {
|
|
49
|
+
|
|
50
|
+
language: DefinitionLanguage | string | undefined;
|
|
51
|
+
|
|
52
|
+
text: string | undefined;
|
|
53
|
+
}
|
|
54
|
+
export declare namespace DefinitionDocument {
|
|
55
|
+
|
|
56
|
+
const filterSensitiveLog: (obj: DefinitionDocument) => any;
|
|
57
|
+
}
|
|
58
|
+
export interface CreateFlowTemplateRequest {
|
|
59
|
+
|
|
60
|
+
definition: DefinitionDocument | undefined;
|
|
61
|
+
|
|
62
|
+
compatibleNamespaceVersion?: number;
|
|
63
|
+
}
|
|
64
|
+
export declare namespace CreateFlowTemplateRequest {
|
|
65
|
+
|
|
66
|
+
const filterSensitiveLog: (obj: CreateFlowTemplateRequest) => any;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
export interface FlowTemplateSummary {
|
|
70
|
+
|
|
71
|
+
id?: string;
|
|
72
|
+
|
|
73
|
+
arn?: string;
|
|
74
|
+
|
|
75
|
+
revisionNumber?: number;
|
|
76
|
+
|
|
77
|
+
createdAt?: Date;
|
|
78
|
+
}
|
|
79
|
+
export declare namespace FlowTemplateSummary {
|
|
80
|
+
|
|
81
|
+
const filterSensitiveLog: (obj: FlowTemplateSummary) => any;
|
|
82
|
+
}
|
|
83
|
+
export interface CreateFlowTemplateResponse {
|
|
84
|
+
|
|
85
|
+
summary?: FlowTemplateSummary;
|
|
86
|
+
}
|
|
87
|
+
export declare namespace CreateFlowTemplateResponse {
|
|
88
|
+
|
|
89
|
+
const filterSensitiveLog: (obj: CreateFlowTemplateResponse) => any;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
export interface LimitExceededException extends __SmithyException, $MetadataBearer {
|
|
93
|
+
name: "LimitExceededException";
|
|
94
|
+
$fault: "client";
|
|
95
|
+
message?: string;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
export interface ResourceAlreadyExistsException extends __SmithyException, $MetadataBearer {
|
|
99
|
+
name: "ResourceAlreadyExistsException";
|
|
100
|
+
$fault: "client";
|
|
101
|
+
message?: string;
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
export interface MetricsConfiguration {
|
|
105
|
+
|
|
106
|
+
cloudMetricEnabled?: boolean;
|
|
107
|
+
|
|
108
|
+
metricRuleRoleArn?: string;
|
|
109
|
+
}
|
|
110
|
+
export declare namespace MetricsConfiguration {
|
|
111
|
+
|
|
112
|
+
const filterSensitiveLog: (obj: MetricsConfiguration) => any;
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
export interface Tag {
|
|
116
|
+
|
|
117
|
+
key: string | undefined;
|
|
118
|
+
|
|
119
|
+
value: string | undefined;
|
|
120
|
+
}
|
|
121
|
+
export declare namespace Tag {
|
|
122
|
+
|
|
123
|
+
const filterSensitiveLog: (obj: Tag) => any;
|
|
124
|
+
}
|
|
125
|
+
export declare enum DeploymentTarget {
|
|
126
|
+
CLOUD = "CLOUD",
|
|
127
|
+
GREENGRASS = "GREENGRASS"
|
|
128
|
+
}
|
|
129
|
+
export interface CreateSystemInstanceRequest {
|
|
130
|
+
|
|
131
|
+
tags?: Tag[];
|
|
132
|
+
|
|
133
|
+
definition: DefinitionDocument | undefined;
|
|
134
|
+
|
|
135
|
+
target: DeploymentTarget | string | undefined;
|
|
136
|
+
|
|
137
|
+
greengrassGroupName?: string;
|
|
138
|
+
|
|
139
|
+
s3BucketName?: string;
|
|
140
|
+
|
|
141
|
+
metricsConfiguration?: MetricsConfiguration;
|
|
142
|
+
|
|
143
|
+
flowActionsRoleArn?: string;
|
|
144
|
+
}
|
|
145
|
+
export declare namespace CreateSystemInstanceRequest {
|
|
146
|
+
|
|
147
|
+
const filterSensitiveLog: (obj: CreateSystemInstanceRequest) => any;
|
|
148
|
+
}
|
|
149
|
+
export declare enum SystemInstanceDeploymentStatus {
|
|
150
|
+
BOOTSTRAP = "BOOTSTRAP",
|
|
151
|
+
DELETED_IN_TARGET = "DELETED_IN_TARGET",
|
|
152
|
+
DEPLOYED_IN_TARGET = "DEPLOYED_IN_TARGET",
|
|
153
|
+
DEPLOY_IN_PROGRESS = "DEPLOY_IN_PROGRESS",
|
|
154
|
+
FAILED = "FAILED",
|
|
155
|
+
NOT_DEPLOYED = "NOT_DEPLOYED",
|
|
156
|
+
PENDING_DELETE = "PENDING_DELETE",
|
|
157
|
+
UNDEPLOY_IN_PROGRESS = "UNDEPLOY_IN_PROGRESS"
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
export interface SystemInstanceSummary {
|
|
161
|
+
|
|
162
|
+
id?: string;
|
|
163
|
+
|
|
164
|
+
arn?: string;
|
|
165
|
+
|
|
166
|
+
status?: SystemInstanceDeploymentStatus | string;
|
|
167
|
+
|
|
168
|
+
target?: DeploymentTarget | string;
|
|
169
|
+
|
|
170
|
+
greengrassGroupName?: string;
|
|
171
|
+
|
|
172
|
+
createdAt?: Date;
|
|
173
|
+
|
|
174
|
+
updatedAt?: Date;
|
|
175
|
+
|
|
176
|
+
greengrassGroupId?: string;
|
|
177
|
+
|
|
178
|
+
greengrassGroupVersionId?: string;
|
|
179
|
+
}
|
|
180
|
+
export declare namespace SystemInstanceSummary {
|
|
181
|
+
|
|
182
|
+
const filterSensitiveLog: (obj: SystemInstanceSummary) => any;
|
|
183
|
+
}
|
|
184
|
+
export interface CreateSystemInstanceResponse {
|
|
185
|
+
|
|
186
|
+
summary?: SystemInstanceSummary;
|
|
187
|
+
}
|
|
188
|
+
export declare namespace CreateSystemInstanceResponse {
|
|
189
|
+
|
|
190
|
+
const filterSensitiveLog: (obj: CreateSystemInstanceResponse) => any;
|
|
191
|
+
}
|
|
192
|
+
export interface CreateSystemTemplateRequest {
|
|
193
|
+
|
|
194
|
+
definition: DefinitionDocument | undefined;
|
|
195
|
+
|
|
196
|
+
compatibleNamespaceVersion?: number;
|
|
197
|
+
}
|
|
198
|
+
export declare namespace CreateSystemTemplateRequest {
|
|
199
|
+
|
|
200
|
+
const filterSensitiveLog: (obj: CreateSystemTemplateRequest) => any;
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
export interface SystemTemplateSummary {
|
|
204
|
+
|
|
205
|
+
id?: string;
|
|
206
|
+
|
|
207
|
+
arn?: string;
|
|
208
|
+
|
|
209
|
+
revisionNumber?: number;
|
|
210
|
+
|
|
211
|
+
createdAt?: Date;
|
|
212
|
+
}
|
|
213
|
+
export declare namespace SystemTemplateSummary {
|
|
214
|
+
|
|
215
|
+
const filterSensitiveLog: (obj: SystemTemplateSummary) => any;
|
|
216
|
+
}
|
|
217
|
+
export interface CreateSystemTemplateResponse {
|
|
218
|
+
|
|
219
|
+
summary?: SystemTemplateSummary;
|
|
220
|
+
}
|
|
221
|
+
export declare namespace CreateSystemTemplateResponse {
|
|
222
|
+
|
|
223
|
+
const filterSensitiveLog: (obj: CreateSystemTemplateResponse) => any;
|
|
224
|
+
}
|
|
225
|
+
export interface DeleteFlowTemplateRequest {
|
|
226
|
+
|
|
227
|
+
id: string | undefined;
|
|
228
|
+
}
|
|
229
|
+
export declare namespace DeleteFlowTemplateRequest {
|
|
230
|
+
|
|
231
|
+
const filterSensitiveLog: (obj: DeleteFlowTemplateRequest) => any;
|
|
232
|
+
}
|
|
233
|
+
export interface DeleteFlowTemplateResponse {
|
|
234
|
+
}
|
|
235
|
+
export declare namespace DeleteFlowTemplateResponse {
|
|
236
|
+
|
|
237
|
+
const filterSensitiveLog: (obj: DeleteFlowTemplateResponse) => any;
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
export interface ResourceInUseException extends __SmithyException, $MetadataBearer {
|
|
241
|
+
name: "ResourceInUseException";
|
|
242
|
+
$fault: "client";
|
|
243
|
+
message?: string;
|
|
244
|
+
}
|
|
245
|
+
export interface DeleteNamespaceRequest {
|
|
246
|
+
}
|
|
247
|
+
export declare namespace DeleteNamespaceRequest {
|
|
248
|
+
|
|
249
|
+
const filterSensitiveLog: (obj: DeleteNamespaceRequest) => any;
|
|
250
|
+
}
|
|
251
|
+
export interface DeleteNamespaceResponse {
|
|
252
|
+
|
|
253
|
+
namespaceArn?: string;
|
|
254
|
+
|
|
255
|
+
namespaceName?: string;
|
|
256
|
+
}
|
|
257
|
+
export declare namespace DeleteNamespaceResponse {
|
|
258
|
+
|
|
259
|
+
const filterSensitiveLog: (obj: DeleteNamespaceResponse) => any;
|
|
260
|
+
}
|
|
261
|
+
export interface DeleteSystemInstanceRequest {
|
|
262
|
+
|
|
263
|
+
id?: string;
|
|
264
|
+
}
|
|
265
|
+
export declare namespace DeleteSystemInstanceRequest {
|
|
266
|
+
|
|
267
|
+
const filterSensitiveLog: (obj: DeleteSystemInstanceRequest) => any;
|
|
268
|
+
}
|
|
269
|
+
export interface DeleteSystemInstanceResponse {
|
|
270
|
+
}
|
|
271
|
+
export declare namespace DeleteSystemInstanceResponse {
|
|
272
|
+
|
|
273
|
+
const filterSensitiveLog: (obj: DeleteSystemInstanceResponse) => any;
|
|
274
|
+
}
|
|
275
|
+
export interface DeleteSystemTemplateRequest {
|
|
276
|
+
|
|
277
|
+
id: string | undefined;
|
|
278
|
+
}
|
|
279
|
+
export declare namespace DeleteSystemTemplateRequest {
|
|
280
|
+
|
|
281
|
+
const filterSensitiveLog: (obj: DeleteSystemTemplateRequest) => any;
|
|
282
|
+
}
|
|
283
|
+
export interface DeleteSystemTemplateResponse {
|
|
284
|
+
}
|
|
285
|
+
export declare namespace DeleteSystemTemplateResponse {
|
|
286
|
+
|
|
287
|
+
const filterSensitiveLog: (obj: DeleteSystemTemplateResponse) => any;
|
|
288
|
+
}
|
|
289
|
+
|
|
290
|
+
export interface DependencyRevision {
|
|
291
|
+
|
|
292
|
+
id?: string;
|
|
293
|
+
|
|
294
|
+
revisionNumber?: number;
|
|
295
|
+
}
|
|
296
|
+
export declare namespace DependencyRevision {
|
|
297
|
+
|
|
298
|
+
const filterSensitiveLog: (obj: DependencyRevision) => any;
|
|
299
|
+
}
|
|
300
|
+
export interface DeploySystemInstanceRequest {
|
|
301
|
+
|
|
302
|
+
id?: string;
|
|
303
|
+
}
|
|
304
|
+
export declare namespace DeploySystemInstanceRequest {
|
|
305
|
+
|
|
306
|
+
const filterSensitiveLog: (obj: DeploySystemInstanceRequest) => any;
|
|
307
|
+
}
|
|
308
|
+
export interface DeploySystemInstanceResponse {
|
|
309
|
+
|
|
310
|
+
summary: SystemInstanceSummary | undefined;
|
|
311
|
+
|
|
312
|
+
greengrassDeploymentId?: string;
|
|
313
|
+
}
|
|
314
|
+
export declare namespace DeploySystemInstanceResponse {
|
|
315
|
+
|
|
316
|
+
const filterSensitiveLog: (obj: DeploySystemInstanceResponse) => any;
|
|
317
|
+
}
|
|
318
|
+
export interface DeprecateFlowTemplateRequest {
|
|
319
|
+
|
|
320
|
+
id: string | undefined;
|
|
321
|
+
}
|
|
322
|
+
export declare namespace DeprecateFlowTemplateRequest {
|
|
323
|
+
|
|
324
|
+
const filterSensitiveLog: (obj: DeprecateFlowTemplateRequest) => any;
|
|
325
|
+
}
|
|
326
|
+
export interface DeprecateFlowTemplateResponse {
|
|
327
|
+
}
|
|
328
|
+
export declare namespace DeprecateFlowTemplateResponse {
|
|
329
|
+
|
|
330
|
+
const filterSensitiveLog: (obj: DeprecateFlowTemplateResponse) => any;
|
|
331
|
+
}
|
|
332
|
+
export interface DeprecateSystemTemplateRequest {
|
|
333
|
+
|
|
334
|
+
id: string | undefined;
|
|
335
|
+
}
|
|
336
|
+
export declare namespace DeprecateSystemTemplateRequest {
|
|
337
|
+
|
|
338
|
+
const filterSensitiveLog: (obj: DeprecateSystemTemplateRequest) => any;
|
|
339
|
+
}
|
|
340
|
+
export interface DeprecateSystemTemplateResponse {
|
|
341
|
+
}
|
|
342
|
+
export declare namespace DeprecateSystemTemplateResponse {
|
|
343
|
+
|
|
344
|
+
const filterSensitiveLog: (obj: DeprecateSystemTemplateResponse) => any;
|
|
345
|
+
}
|
|
346
|
+
export interface DescribeNamespaceRequest {
|
|
347
|
+
|
|
348
|
+
namespaceName?: string;
|
|
349
|
+
}
|
|
350
|
+
export declare namespace DescribeNamespaceRequest {
|
|
351
|
+
|
|
352
|
+
const filterSensitiveLog: (obj: DescribeNamespaceRequest) => any;
|
|
353
|
+
}
|
|
354
|
+
export interface DescribeNamespaceResponse {
|
|
355
|
+
|
|
356
|
+
namespaceArn?: string;
|
|
357
|
+
|
|
358
|
+
namespaceName?: string;
|
|
359
|
+
|
|
360
|
+
trackingNamespaceName?: string;
|
|
361
|
+
|
|
362
|
+
trackingNamespaceVersion?: number;
|
|
363
|
+
|
|
364
|
+
namespaceVersion?: number;
|
|
365
|
+
}
|
|
366
|
+
export declare namespace DescribeNamespaceResponse {
|
|
367
|
+
|
|
368
|
+
const filterSensitiveLog: (obj: DescribeNamespaceResponse) => any;
|
|
369
|
+
}
|
|
370
|
+
export declare enum EntityType {
|
|
371
|
+
ACTION = "ACTION",
|
|
372
|
+
CAPABILITY = "CAPABILITY",
|
|
373
|
+
DEVICE = "DEVICE",
|
|
374
|
+
DEVICE_MODEL = "DEVICE_MODEL",
|
|
375
|
+
ENUM = "ENUM",
|
|
376
|
+
EVENT = "EVENT",
|
|
377
|
+
MAPPING = "MAPPING",
|
|
378
|
+
PROPERTY = "PROPERTY",
|
|
379
|
+
SERVICE = "SERVICE",
|
|
380
|
+
STATE = "STATE"
|
|
381
|
+
}
|
|
382
|
+
export interface DissociateEntityFromThingRequest {
|
|
383
|
+
|
|
384
|
+
thingName: string | undefined;
|
|
385
|
+
|
|
386
|
+
entityType: EntityType | string | undefined;
|
|
387
|
+
}
|
|
388
|
+
export declare namespace DissociateEntityFromThingRequest {
|
|
389
|
+
|
|
390
|
+
const filterSensitiveLog: (obj: DissociateEntityFromThingRequest) => any;
|
|
391
|
+
}
|
|
392
|
+
export interface DissociateEntityFromThingResponse {
|
|
393
|
+
}
|
|
394
|
+
export declare namespace DissociateEntityFromThingResponse {
|
|
395
|
+
|
|
396
|
+
const filterSensitiveLog: (obj: DissociateEntityFromThingResponse) => any;
|
|
397
|
+
}
|
|
398
|
+
|
|
399
|
+
export interface EntityDescription {
|
|
400
|
+
|
|
401
|
+
id?: string;
|
|
402
|
+
|
|
403
|
+
arn?: string;
|
|
404
|
+
|
|
405
|
+
type?: EntityType | string;
|
|
406
|
+
|
|
407
|
+
createdAt?: Date;
|
|
408
|
+
|
|
409
|
+
definition?: DefinitionDocument;
|
|
410
|
+
}
|
|
411
|
+
export declare namespace EntityDescription {
|
|
412
|
+
|
|
413
|
+
const filterSensitiveLog: (obj: EntityDescription) => any;
|
|
414
|
+
}
|
|
415
|
+
export declare enum EntityFilterName {
|
|
416
|
+
NAME = "NAME",
|
|
417
|
+
NAMESPACE = "NAMESPACE",
|
|
418
|
+
REFERENCED_ENTITY_ID = "REFERENCED_ENTITY_ID",
|
|
419
|
+
SEMANTIC_TYPE_PATH = "SEMANTIC_TYPE_PATH"
|
|
420
|
+
}
|
|
421
|
+
|
|
422
|
+
export interface EntityFilter {
|
|
423
|
+
|
|
424
|
+
name?: EntityFilterName | string;
|
|
425
|
+
|
|
426
|
+
value?: string[];
|
|
427
|
+
}
|
|
428
|
+
export declare namespace EntityFilter {
|
|
429
|
+
|
|
430
|
+
const filterSensitiveLog: (obj: EntityFilter) => any;
|
|
431
|
+
}
|
|
432
|
+
export declare enum FlowExecutionEventType {
|
|
433
|
+
ACKNOWLEDGE_TASK_MESSAGE = "ACKNOWLEDGE_TASK_MESSAGE",
|
|
434
|
+
ACTIVITY_FAILED = "ACTIVITY_FAILED",
|
|
435
|
+
ACTIVITY_SCHEDULED = "ACTIVITY_SCHEDULED",
|
|
436
|
+
ACTIVITY_STARTED = "ACTIVITY_STARTED",
|
|
437
|
+
ACTIVITY_SUCCEEDED = "ACTIVITY_SUCCEEDED",
|
|
438
|
+
EXECUTION_ABORTED = "EXECUTION_ABORTED",
|
|
439
|
+
EXECUTION_FAILED = "EXECUTION_FAILED",
|
|
440
|
+
EXECUTION_STARTED = "EXECUTION_STARTED",
|
|
441
|
+
EXECUTION_SUCCEEDED = "EXECUTION_SUCCEEDED",
|
|
442
|
+
SCHEDULE_NEXT_READY_STEPS_TASK = "SCHEDULE_NEXT_READY_STEPS_TASK",
|
|
443
|
+
START_FLOW_EXECUTION_TASK = "START_FLOW_EXECUTION_TASK",
|
|
444
|
+
STEP_FAILED = "STEP_FAILED",
|
|
445
|
+
STEP_STARTED = "STEP_STARTED",
|
|
446
|
+
STEP_SUCCEEDED = "STEP_SUCCEEDED",
|
|
447
|
+
THING_ACTION_TASK = "THING_ACTION_TASK",
|
|
448
|
+
THING_ACTION_TASK_FAILED = "THING_ACTION_TASK_FAILED",
|
|
449
|
+
THING_ACTION_TASK_SUCCEEDED = "THING_ACTION_TASK_SUCCEEDED"
|
|
450
|
+
}
|
|
451
|
+
|
|
452
|
+
export interface FlowExecutionMessage {
|
|
453
|
+
|
|
454
|
+
messageId?: string;
|
|
455
|
+
|
|
456
|
+
eventType?: FlowExecutionEventType | string;
|
|
457
|
+
|
|
458
|
+
timestamp?: Date;
|
|
459
|
+
|
|
460
|
+
payload?: string;
|
|
461
|
+
}
|
|
462
|
+
export declare namespace FlowExecutionMessage {
|
|
463
|
+
|
|
464
|
+
const filterSensitiveLog: (obj: FlowExecutionMessage) => any;
|
|
465
|
+
}
|
|
466
|
+
export declare enum FlowExecutionStatus {
|
|
467
|
+
ABORTED = "ABORTED",
|
|
468
|
+
FAILED = "FAILED",
|
|
469
|
+
RUNNING = "RUNNING",
|
|
470
|
+
SUCCEEDED = "SUCCEEDED"
|
|
471
|
+
}
|
|
472
|
+
|
|
473
|
+
export interface FlowExecutionSummary {
|
|
474
|
+
|
|
475
|
+
flowExecutionId?: string;
|
|
476
|
+
|
|
477
|
+
status?: FlowExecutionStatus | string;
|
|
478
|
+
|
|
479
|
+
systemInstanceId?: string;
|
|
480
|
+
|
|
481
|
+
flowTemplateId?: string;
|
|
482
|
+
|
|
483
|
+
createdAt?: Date;
|
|
484
|
+
|
|
485
|
+
updatedAt?: Date;
|
|
486
|
+
}
|
|
487
|
+
export declare namespace FlowExecutionSummary {
|
|
488
|
+
|
|
489
|
+
const filterSensitiveLog: (obj: FlowExecutionSummary) => any;
|
|
490
|
+
}
|
|
491
|
+
|
|
492
|
+
export interface FlowTemplateDescription {
|
|
493
|
+
|
|
494
|
+
summary?: FlowTemplateSummary;
|
|
495
|
+
|
|
496
|
+
definition?: DefinitionDocument;
|
|
497
|
+
|
|
498
|
+
validatedNamespaceVersion?: number;
|
|
499
|
+
}
|
|
500
|
+
export declare namespace FlowTemplateDescription {
|
|
501
|
+
|
|
502
|
+
const filterSensitiveLog: (obj: FlowTemplateDescription) => any;
|
|
503
|
+
}
|
|
504
|
+
export declare enum FlowTemplateFilterName {
|
|
505
|
+
DEVICE_MODEL_ID = "DEVICE_MODEL_ID"
|
|
506
|
+
}
|
|
507
|
+
|
|
508
|
+
export interface FlowTemplateFilter {
|
|
509
|
+
|
|
510
|
+
name: FlowTemplateFilterName | string | undefined;
|
|
511
|
+
|
|
512
|
+
value: string[] | undefined;
|
|
513
|
+
}
|
|
514
|
+
export declare namespace FlowTemplateFilter {
|
|
515
|
+
|
|
516
|
+
const filterSensitiveLog: (obj: FlowTemplateFilter) => any;
|
|
517
|
+
}
|
|
518
|
+
export interface GetEntitiesRequest {
|
|
519
|
+
|
|
520
|
+
ids: string[] | undefined;
|
|
521
|
+
|
|
522
|
+
namespaceVersion?: number;
|
|
523
|
+
}
|
|
524
|
+
export declare namespace GetEntitiesRequest {
|
|
525
|
+
|
|
526
|
+
const filterSensitiveLog: (obj: GetEntitiesRequest) => any;
|
|
527
|
+
}
|
|
528
|
+
export interface GetEntitiesResponse {
|
|
529
|
+
|
|
530
|
+
descriptions?: EntityDescription[];
|
|
531
|
+
}
|
|
532
|
+
export declare namespace GetEntitiesResponse {
|
|
533
|
+
|
|
534
|
+
const filterSensitiveLog: (obj: GetEntitiesResponse) => any;
|
|
535
|
+
}
|
|
536
|
+
export interface GetFlowTemplateRequest {
|
|
537
|
+
|
|
538
|
+
id: string | undefined;
|
|
539
|
+
|
|
540
|
+
revisionNumber?: number;
|
|
541
|
+
}
|
|
542
|
+
export declare namespace GetFlowTemplateRequest {
|
|
543
|
+
|
|
544
|
+
const filterSensitiveLog: (obj: GetFlowTemplateRequest) => any;
|
|
545
|
+
}
|
|
546
|
+
export interface GetFlowTemplateResponse {
|
|
547
|
+
|
|
548
|
+
description?: FlowTemplateDescription;
|
|
549
|
+
}
|
|
550
|
+
export declare namespace GetFlowTemplateResponse {
|
|
551
|
+
|
|
552
|
+
const filterSensitiveLog: (obj: GetFlowTemplateResponse) => any;
|
|
553
|
+
}
|
|
554
|
+
export interface GetFlowTemplateRevisionsRequest {
|
|
555
|
+
|
|
556
|
+
id: string | undefined;
|
|
557
|
+
|
|
558
|
+
nextToken?: string;
|
|
559
|
+
|
|
560
|
+
maxResults?: number;
|
|
561
|
+
}
|
|
562
|
+
export declare namespace GetFlowTemplateRevisionsRequest {
|
|
563
|
+
|
|
564
|
+
const filterSensitiveLog: (obj: GetFlowTemplateRevisionsRequest) => any;
|
|
565
|
+
}
|
|
566
|
+
export interface GetFlowTemplateRevisionsResponse {
|
|
567
|
+
|
|
568
|
+
summaries?: FlowTemplateSummary[];
|
|
569
|
+
|
|
570
|
+
nextToken?: string;
|
|
571
|
+
}
|
|
572
|
+
export declare namespace GetFlowTemplateRevisionsResponse {
|
|
573
|
+
|
|
574
|
+
const filterSensitiveLog: (obj: GetFlowTemplateRevisionsResponse) => any;
|
|
575
|
+
}
|
|
576
|
+
export interface GetNamespaceDeletionStatusRequest {
|
|
577
|
+
}
|
|
578
|
+
export declare namespace GetNamespaceDeletionStatusRequest {
|
|
579
|
+
|
|
580
|
+
const filterSensitiveLog: (obj: GetNamespaceDeletionStatusRequest) => any;
|
|
581
|
+
}
|
|
582
|
+
export declare enum NamespaceDeletionStatusErrorCodes {
|
|
583
|
+
VALIDATION_FAILED = "VALIDATION_FAILED"
|
|
584
|
+
}
|
|
585
|
+
export declare enum NamespaceDeletionStatus {
|
|
586
|
+
FAILED = "FAILED",
|
|
587
|
+
IN_PROGRESS = "IN_PROGRESS",
|
|
588
|
+
SUCCEEDED = "SUCCEEDED"
|
|
589
|
+
}
|
|
590
|
+
export interface GetNamespaceDeletionStatusResponse {
|
|
591
|
+
|
|
592
|
+
namespaceArn?: string;
|
|
593
|
+
|
|
594
|
+
namespaceName?: string;
|
|
595
|
+
|
|
596
|
+
status?: NamespaceDeletionStatus | string;
|
|
597
|
+
|
|
598
|
+
errorCode?: NamespaceDeletionStatusErrorCodes | string;
|
|
599
|
+
|
|
600
|
+
errorMessage?: string;
|
|
601
|
+
}
|
|
602
|
+
export declare namespace GetNamespaceDeletionStatusResponse {
|
|
603
|
+
|
|
604
|
+
const filterSensitiveLog: (obj: GetNamespaceDeletionStatusResponse) => any;
|
|
605
|
+
}
|
|
606
|
+
export interface GetSystemInstanceRequest {
|
|
607
|
+
|
|
608
|
+
id: string | undefined;
|
|
609
|
+
}
|
|
610
|
+
export declare namespace GetSystemInstanceRequest {
|
|
611
|
+
|
|
612
|
+
const filterSensitiveLog: (obj: GetSystemInstanceRequest) => any;
|
|
613
|
+
}
|
|
614
|
+
|
|
615
|
+
export interface SystemInstanceDescription {
|
|
616
|
+
|
|
617
|
+
summary?: SystemInstanceSummary;
|
|
618
|
+
|
|
619
|
+
definition?: DefinitionDocument;
|
|
620
|
+
|
|
621
|
+
s3BucketName?: string;
|
|
622
|
+
|
|
623
|
+
metricsConfiguration?: MetricsConfiguration;
|
|
624
|
+
|
|
625
|
+
validatedNamespaceVersion?: number;
|
|
626
|
+
|
|
627
|
+
validatedDependencyRevisions?: DependencyRevision[];
|
|
628
|
+
|
|
629
|
+
flowActionsRoleArn?: string;
|
|
630
|
+
}
|
|
631
|
+
export declare namespace SystemInstanceDescription {
|
|
632
|
+
|
|
633
|
+
const filterSensitiveLog: (obj: SystemInstanceDescription) => any;
|
|
634
|
+
}
|
|
635
|
+
export interface GetSystemInstanceResponse {
|
|
636
|
+
|
|
637
|
+
description?: SystemInstanceDescription;
|
|
638
|
+
}
|
|
639
|
+
export declare namespace GetSystemInstanceResponse {
|
|
640
|
+
|
|
641
|
+
const filterSensitiveLog: (obj: GetSystemInstanceResponse) => any;
|
|
642
|
+
}
|
|
643
|
+
export interface GetSystemTemplateRequest {
|
|
644
|
+
|
|
645
|
+
id: string | undefined;
|
|
646
|
+
|
|
647
|
+
revisionNumber?: number;
|
|
648
|
+
}
|
|
649
|
+
export declare namespace GetSystemTemplateRequest {
|
|
650
|
+
|
|
651
|
+
const filterSensitiveLog: (obj: GetSystemTemplateRequest) => any;
|
|
652
|
+
}
|
|
653
|
+
|
|
654
|
+
export interface SystemTemplateDescription {
|
|
655
|
+
|
|
656
|
+
summary?: SystemTemplateSummary;
|
|
657
|
+
|
|
658
|
+
definition?: DefinitionDocument;
|
|
659
|
+
|
|
660
|
+
validatedNamespaceVersion?: number;
|
|
661
|
+
}
|
|
662
|
+
export declare namespace SystemTemplateDescription {
|
|
663
|
+
|
|
664
|
+
const filterSensitiveLog: (obj: SystemTemplateDescription) => any;
|
|
665
|
+
}
|
|
666
|
+
export interface GetSystemTemplateResponse {
|
|
667
|
+
|
|
668
|
+
description?: SystemTemplateDescription;
|
|
669
|
+
}
|
|
670
|
+
export declare namespace GetSystemTemplateResponse {
|
|
671
|
+
|
|
672
|
+
const filterSensitiveLog: (obj: GetSystemTemplateResponse) => any;
|
|
673
|
+
}
|
|
674
|
+
export interface GetSystemTemplateRevisionsRequest {
|
|
675
|
+
|
|
676
|
+
id: string | undefined;
|
|
677
|
+
|
|
678
|
+
nextToken?: string;
|
|
679
|
+
|
|
680
|
+
maxResults?: number;
|
|
681
|
+
}
|
|
682
|
+
export declare namespace GetSystemTemplateRevisionsRequest {
|
|
683
|
+
|
|
684
|
+
const filterSensitiveLog: (obj: GetSystemTemplateRevisionsRequest) => any;
|
|
685
|
+
}
|
|
686
|
+
export interface GetSystemTemplateRevisionsResponse {
|
|
687
|
+
|
|
688
|
+
summaries?: SystemTemplateSummary[];
|
|
689
|
+
|
|
690
|
+
nextToken?: string;
|
|
691
|
+
}
|
|
692
|
+
export declare namespace GetSystemTemplateRevisionsResponse {
|
|
693
|
+
|
|
694
|
+
const filterSensitiveLog: (obj: GetSystemTemplateRevisionsResponse) => any;
|
|
695
|
+
}
|
|
696
|
+
export interface GetUploadStatusRequest {
|
|
697
|
+
|
|
698
|
+
uploadId: string | undefined;
|
|
699
|
+
}
|
|
700
|
+
export declare namespace GetUploadStatusRequest {
|
|
701
|
+
|
|
702
|
+
const filterSensitiveLog: (obj: GetUploadStatusRequest) => any;
|
|
703
|
+
}
|
|
704
|
+
export declare enum UploadStatus {
|
|
705
|
+
FAILED = "FAILED",
|
|
706
|
+
IN_PROGRESS = "IN_PROGRESS",
|
|
707
|
+
SUCCEEDED = "SUCCEEDED"
|
|
708
|
+
}
|
|
709
|
+
export interface GetUploadStatusResponse {
|
|
710
|
+
|
|
711
|
+
uploadId: string | undefined;
|
|
712
|
+
|
|
713
|
+
uploadStatus: UploadStatus | string | undefined;
|
|
714
|
+
|
|
715
|
+
namespaceArn?: string;
|
|
716
|
+
|
|
717
|
+
namespaceName?: string;
|
|
718
|
+
|
|
719
|
+
namespaceVersion?: number;
|
|
720
|
+
|
|
721
|
+
failureReason?: string[];
|
|
722
|
+
|
|
723
|
+
createdDate: Date | undefined;
|
|
724
|
+
}
|
|
725
|
+
export declare namespace GetUploadStatusResponse {
|
|
726
|
+
|
|
727
|
+
const filterSensitiveLog: (obj: GetUploadStatusResponse) => any;
|
|
728
|
+
}
|
|
729
|
+
export interface ListFlowExecutionMessagesRequest {
|
|
730
|
+
|
|
731
|
+
flowExecutionId: string | undefined;
|
|
732
|
+
|
|
733
|
+
nextToken?: string;
|
|
734
|
+
|
|
735
|
+
maxResults?: number;
|
|
736
|
+
}
|
|
737
|
+
export declare namespace ListFlowExecutionMessagesRequest {
|
|
738
|
+
|
|
739
|
+
const filterSensitiveLog: (obj: ListFlowExecutionMessagesRequest) => any;
|
|
740
|
+
}
|
|
741
|
+
export interface ListFlowExecutionMessagesResponse {
|
|
742
|
+
|
|
743
|
+
messages?: FlowExecutionMessage[];
|
|
744
|
+
|
|
745
|
+
nextToken?: string;
|
|
746
|
+
}
|
|
747
|
+
export declare namespace ListFlowExecutionMessagesResponse {
|
|
748
|
+
|
|
749
|
+
const filterSensitiveLog: (obj: ListFlowExecutionMessagesResponse) => any;
|
|
750
|
+
}
|
|
751
|
+
export interface ListTagsForResourceRequest {
|
|
752
|
+
|
|
753
|
+
maxResults?: number;
|
|
754
|
+
|
|
755
|
+
resourceArn: string | undefined;
|
|
756
|
+
|
|
757
|
+
nextToken?: string;
|
|
758
|
+
}
|
|
759
|
+
export declare namespace ListTagsForResourceRequest {
|
|
760
|
+
|
|
761
|
+
const filterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
|
|
762
|
+
}
|
|
763
|
+
export interface ListTagsForResourceResponse {
|
|
764
|
+
|
|
765
|
+
tags?: Tag[];
|
|
766
|
+
|
|
767
|
+
nextToken?: string;
|
|
768
|
+
}
|
|
769
|
+
export declare namespace ListTagsForResourceResponse {
|
|
770
|
+
|
|
771
|
+
const filterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
|
|
772
|
+
}
|
|
773
|
+
export interface SearchEntitiesRequest {
|
|
774
|
+
|
|
775
|
+
entityTypes: (EntityType | string)[] | undefined;
|
|
776
|
+
|
|
777
|
+
filters?: EntityFilter[];
|
|
778
|
+
|
|
779
|
+
nextToken?: string;
|
|
780
|
+
|
|
781
|
+
maxResults?: number;
|
|
782
|
+
|
|
783
|
+
namespaceVersion?: number;
|
|
784
|
+
}
|
|
785
|
+
export declare namespace SearchEntitiesRequest {
|
|
786
|
+
|
|
787
|
+
const filterSensitiveLog: (obj: SearchEntitiesRequest) => any;
|
|
788
|
+
}
|
|
789
|
+
export interface SearchEntitiesResponse {
|
|
790
|
+
|
|
791
|
+
descriptions?: EntityDescription[];
|
|
792
|
+
|
|
793
|
+
nextToken?: string;
|
|
794
|
+
}
|
|
795
|
+
export declare namespace SearchEntitiesResponse {
|
|
796
|
+
|
|
797
|
+
const filterSensitiveLog: (obj: SearchEntitiesResponse) => any;
|
|
798
|
+
}
|
|
799
|
+
export interface SearchFlowExecutionsRequest {
|
|
800
|
+
|
|
801
|
+
systemInstanceId: string | undefined;
|
|
802
|
+
|
|
803
|
+
flowExecutionId?: string;
|
|
804
|
+
|
|
805
|
+
startTime?: Date;
|
|
806
|
+
|
|
807
|
+
endTime?: Date;
|
|
808
|
+
|
|
809
|
+
nextToken?: string;
|
|
810
|
+
|
|
811
|
+
maxResults?: number;
|
|
812
|
+
}
|
|
813
|
+
export declare namespace SearchFlowExecutionsRequest {
|
|
814
|
+
|
|
815
|
+
const filterSensitiveLog: (obj: SearchFlowExecutionsRequest) => any;
|
|
816
|
+
}
|
|
817
|
+
export interface SearchFlowExecutionsResponse {
|
|
818
|
+
|
|
819
|
+
summaries?: FlowExecutionSummary[];
|
|
820
|
+
|
|
821
|
+
nextToken?: string;
|
|
822
|
+
}
|
|
823
|
+
export declare namespace SearchFlowExecutionsResponse {
|
|
824
|
+
|
|
825
|
+
const filterSensitiveLog: (obj: SearchFlowExecutionsResponse) => any;
|
|
826
|
+
}
|
|
827
|
+
export interface SearchFlowTemplatesRequest {
|
|
828
|
+
|
|
829
|
+
filters?: FlowTemplateFilter[];
|
|
830
|
+
|
|
831
|
+
nextToken?: string;
|
|
832
|
+
|
|
833
|
+
maxResults?: number;
|
|
834
|
+
}
|
|
835
|
+
export declare namespace SearchFlowTemplatesRequest {
|
|
836
|
+
|
|
837
|
+
const filterSensitiveLog: (obj: SearchFlowTemplatesRequest) => any;
|
|
838
|
+
}
|
|
839
|
+
export interface SearchFlowTemplatesResponse {
|
|
840
|
+
|
|
841
|
+
summaries?: FlowTemplateSummary[];
|
|
842
|
+
|
|
843
|
+
nextToken?: string;
|
|
844
|
+
}
|
|
845
|
+
export declare namespace SearchFlowTemplatesResponse {
|
|
846
|
+
|
|
847
|
+
const filterSensitiveLog: (obj: SearchFlowTemplatesResponse) => any;
|
|
848
|
+
}
|
|
849
|
+
export declare enum SystemInstanceFilterName {
|
|
850
|
+
GREENGRASS_GROUP_NAME = "GREENGRASS_GROUP_NAME",
|
|
851
|
+
STATUS = "STATUS",
|
|
852
|
+
SYSTEM_TEMPLATE_ID = "SYSTEM_TEMPLATE_ID"
|
|
853
|
+
}
|
|
854
|
+
|
|
855
|
+
export interface SystemInstanceFilter {
|
|
856
|
+
|
|
857
|
+
name?: SystemInstanceFilterName | string;
|
|
858
|
+
|
|
859
|
+
value?: string[];
|
|
860
|
+
}
|
|
861
|
+
export declare namespace SystemInstanceFilter {
|
|
862
|
+
|
|
863
|
+
const filterSensitiveLog: (obj: SystemInstanceFilter) => any;
|
|
864
|
+
}
|
|
865
|
+
export interface SearchSystemInstancesRequest {
|
|
866
|
+
|
|
867
|
+
filters?: SystemInstanceFilter[];
|
|
868
|
+
|
|
869
|
+
nextToken?: string;
|
|
870
|
+
|
|
871
|
+
maxResults?: number;
|
|
872
|
+
}
|
|
873
|
+
export declare namespace SearchSystemInstancesRequest {
|
|
874
|
+
|
|
875
|
+
const filterSensitiveLog: (obj: SearchSystemInstancesRequest) => any;
|
|
876
|
+
}
|
|
877
|
+
export interface SearchSystemInstancesResponse {
|
|
878
|
+
|
|
879
|
+
summaries?: SystemInstanceSummary[];
|
|
880
|
+
|
|
881
|
+
nextToken?: string;
|
|
882
|
+
}
|
|
883
|
+
export declare namespace SearchSystemInstancesResponse {
|
|
884
|
+
|
|
885
|
+
const filterSensitiveLog: (obj: SearchSystemInstancesResponse) => any;
|
|
886
|
+
}
|
|
887
|
+
export declare enum SystemTemplateFilterName {
|
|
888
|
+
FLOW_TEMPLATE_ID = "FLOW_TEMPLATE_ID"
|
|
889
|
+
}
|
|
890
|
+
|
|
891
|
+
export interface SystemTemplateFilter {
|
|
892
|
+
|
|
893
|
+
name: SystemTemplateFilterName | string | undefined;
|
|
894
|
+
|
|
895
|
+
value: string[] | undefined;
|
|
896
|
+
}
|
|
897
|
+
export declare namespace SystemTemplateFilter {
|
|
898
|
+
|
|
899
|
+
const filterSensitiveLog: (obj: SystemTemplateFilter) => any;
|
|
900
|
+
}
|
|
901
|
+
export interface SearchSystemTemplatesRequest {
|
|
902
|
+
|
|
903
|
+
filters?: SystemTemplateFilter[];
|
|
904
|
+
|
|
905
|
+
nextToken?: string;
|
|
906
|
+
|
|
907
|
+
maxResults?: number;
|
|
908
|
+
}
|
|
909
|
+
export declare namespace SearchSystemTemplatesRequest {
|
|
910
|
+
|
|
911
|
+
const filterSensitiveLog: (obj: SearchSystemTemplatesRequest) => any;
|
|
912
|
+
}
|
|
913
|
+
export interface SearchSystemTemplatesResponse {
|
|
914
|
+
|
|
915
|
+
summaries?: SystemTemplateSummary[];
|
|
916
|
+
|
|
917
|
+
nextToken?: string;
|
|
918
|
+
}
|
|
919
|
+
export declare namespace SearchSystemTemplatesResponse {
|
|
920
|
+
|
|
921
|
+
const filterSensitiveLog: (obj: SearchSystemTemplatesResponse) => any;
|
|
922
|
+
}
|
|
923
|
+
export interface SearchThingsRequest {
|
|
924
|
+
|
|
925
|
+
entityId: string | undefined;
|
|
926
|
+
|
|
927
|
+
nextToken?: string;
|
|
928
|
+
|
|
929
|
+
maxResults?: number;
|
|
930
|
+
|
|
931
|
+
namespaceVersion?: number;
|
|
932
|
+
}
|
|
933
|
+
export declare namespace SearchThingsRequest {
|
|
934
|
+
|
|
935
|
+
const filterSensitiveLog: (obj: SearchThingsRequest) => any;
|
|
936
|
+
}
|
|
937
|
+
|
|
938
|
+
export interface Thing {
|
|
939
|
+
|
|
940
|
+
thingArn?: string;
|
|
941
|
+
|
|
942
|
+
thingName?: string;
|
|
943
|
+
}
|
|
944
|
+
export declare namespace Thing {
|
|
945
|
+
|
|
946
|
+
const filterSensitiveLog: (obj: Thing) => any;
|
|
947
|
+
}
|
|
948
|
+
export interface SearchThingsResponse {
|
|
949
|
+
|
|
950
|
+
things?: Thing[];
|
|
951
|
+
|
|
952
|
+
nextToken?: string;
|
|
953
|
+
}
|
|
954
|
+
export declare namespace SearchThingsResponse {
|
|
955
|
+
|
|
956
|
+
const filterSensitiveLog: (obj: SearchThingsResponse) => any;
|
|
957
|
+
}
|
|
958
|
+
export interface TagResourceRequest {
|
|
959
|
+
|
|
960
|
+
resourceArn: string | undefined;
|
|
961
|
+
|
|
962
|
+
tags: Tag[] | undefined;
|
|
963
|
+
}
|
|
964
|
+
export declare namespace TagResourceRequest {
|
|
965
|
+
|
|
966
|
+
const filterSensitiveLog: (obj: TagResourceRequest) => any;
|
|
967
|
+
}
|
|
968
|
+
export interface TagResourceResponse {
|
|
969
|
+
}
|
|
970
|
+
export declare namespace TagResourceResponse {
|
|
971
|
+
|
|
972
|
+
const filterSensitiveLog: (obj: TagResourceResponse) => any;
|
|
973
|
+
}
|
|
974
|
+
export interface UndeploySystemInstanceRequest {
|
|
975
|
+
|
|
976
|
+
id?: string;
|
|
977
|
+
}
|
|
978
|
+
export declare namespace UndeploySystemInstanceRequest {
|
|
979
|
+
|
|
980
|
+
const filterSensitiveLog: (obj: UndeploySystemInstanceRequest) => any;
|
|
981
|
+
}
|
|
982
|
+
export interface UndeploySystemInstanceResponse {
|
|
983
|
+
|
|
984
|
+
summary?: SystemInstanceSummary;
|
|
985
|
+
}
|
|
986
|
+
export declare namespace UndeploySystemInstanceResponse {
|
|
987
|
+
|
|
988
|
+
const filterSensitiveLog: (obj: UndeploySystemInstanceResponse) => any;
|
|
989
|
+
}
|
|
990
|
+
export interface UntagResourceRequest {
|
|
991
|
+
|
|
992
|
+
resourceArn: string | undefined;
|
|
993
|
+
|
|
994
|
+
tagKeys: string[] | undefined;
|
|
995
|
+
}
|
|
996
|
+
export declare namespace UntagResourceRequest {
|
|
997
|
+
|
|
998
|
+
const filterSensitiveLog: (obj: UntagResourceRequest) => any;
|
|
999
|
+
}
|
|
1000
|
+
export interface UntagResourceResponse {
|
|
1001
|
+
}
|
|
1002
|
+
export declare namespace UntagResourceResponse {
|
|
1003
|
+
|
|
1004
|
+
const filterSensitiveLog: (obj: UntagResourceResponse) => any;
|
|
1005
|
+
}
|
|
1006
|
+
export interface UpdateFlowTemplateRequest {
|
|
1007
|
+
|
|
1008
|
+
id: string | undefined;
|
|
1009
|
+
|
|
1010
|
+
definition: DefinitionDocument | undefined;
|
|
1011
|
+
|
|
1012
|
+
compatibleNamespaceVersion?: number;
|
|
1013
|
+
}
|
|
1014
|
+
export declare namespace UpdateFlowTemplateRequest {
|
|
1015
|
+
|
|
1016
|
+
const filterSensitiveLog: (obj: UpdateFlowTemplateRequest) => any;
|
|
1017
|
+
}
|
|
1018
|
+
export interface UpdateFlowTemplateResponse {
|
|
1019
|
+
|
|
1020
|
+
summary?: FlowTemplateSummary;
|
|
1021
|
+
}
|
|
1022
|
+
export declare namespace UpdateFlowTemplateResponse {
|
|
1023
|
+
|
|
1024
|
+
const filterSensitiveLog: (obj: UpdateFlowTemplateResponse) => any;
|
|
1025
|
+
}
|
|
1026
|
+
export interface UpdateSystemTemplateRequest {
|
|
1027
|
+
|
|
1028
|
+
id: string | undefined;
|
|
1029
|
+
|
|
1030
|
+
definition: DefinitionDocument | undefined;
|
|
1031
|
+
|
|
1032
|
+
compatibleNamespaceVersion?: number;
|
|
1033
|
+
}
|
|
1034
|
+
export declare namespace UpdateSystemTemplateRequest {
|
|
1035
|
+
|
|
1036
|
+
const filterSensitiveLog: (obj: UpdateSystemTemplateRequest) => any;
|
|
1037
|
+
}
|
|
1038
|
+
export interface UpdateSystemTemplateResponse {
|
|
1039
|
+
|
|
1040
|
+
summary?: SystemTemplateSummary;
|
|
1041
|
+
}
|
|
1042
|
+
export declare namespace UpdateSystemTemplateResponse {
|
|
1043
|
+
|
|
1044
|
+
const filterSensitiveLog: (obj: UpdateSystemTemplateResponse) => any;
|
|
1045
|
+
}
|
|
1046
|
+
export interface UploadEntityDefinitionsRequest {
|
|
1047
|
+
|
|
1048
|
+
document?: DefinitionDocument;
|
|
1049
|
+
|
|
1050
|
+
syncWithPublicNamespace?: boolean;
|
|
1051
|
+
|
|
1052
|
+
deprecateExistingEntities?: boolean;
|
|
1053
|
+
}
|
|
1054
|
+
export declare namespace UploadEntityDefinitionsRequest {
|
|
1055
|
+
|
|
1056
|
+
const filterSensitiveLog: (obj: UploadEntityDefinitionsRequest) => any;
|
|
1057
|
+
}
|
|
1058
|
+
export interface UploadEntityDefinitionsResponse {
|
|
1059
|
+
|
|
1060
|
+
uploadId: string | undefined;
|
|
1061
|
+
}
|
|
1062
|
+
export declare namespace UploadEntityDefinitionsResponse {
|
|
1063
|
+
|
|
1064
|
+
const filterSensitiveLog: (obj: UploadEntityDefinitionsResponse) => any;
|
|
1065
|
+
}
|