aws-sdk-novaact 1.0.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.
- checksums.yaml +7 -0
- data/CHANGELOG.md +8 -0
- data/LICENSE.txt +202 -0
- data/VERSION +1 -0
- data/lib/aws-sdk-novaact/client.rb +1268 -0
- data/lib/aws-sdk-novaact/client_api.rb +691 -0
- data/lib/aws-sdk-novaact/customizations.rb +0 -0
- data/lib/aws-sdk-novaact/endpoint_parameters.rb +69 -0
- data/lib/aws-sdk-novaact/endpoint_provider.rb +50 -0
- data/lib/aws-sdk-novaact/endpoints.rb +20 -0
- data/lib/aws-sdk-novaact/errors.rb +237 -0
- data/lib/aws-sdk-novaact/plugins/endpoints.rb +77 -0
- data/lib/aws-sdk-novaact/resource.rb +26 -0
- data/lib/aws-sdk-novaact/types.rb +1335 -0
- data/lib/aws-sdk-novaact/waiters.rb +15 -0
- data/lib/aws-sdk-novaact.rb +62 -0
- data/sig/client.rbs +330 -0
- data/sig/errors.rbs +52 -0
- data/sig/resource.rbs +85 -0
- data/sig/types.rbs +411 -0
- data/sig/waiters.rbs +13 -0
- metadata +97 -0
|
@@ -0,0 +1,1335 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
# WARNING ABOUT GENERATED CODE
|
|
4
|
+
#
|
|
5
|
+
# This file is generated. See the contributing guide for more information:
|
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
|
7
|
+
#
|
|
8
|
+
# WARNING ABOUT GENERATED CODE
|
|
9
|
+
|
|
10
|
+
module Aws::NovaAct
|
|
11
|
+
module Types
|
|
12
|
+
|
|
13
|
+
# You don't have sufficient permissions to perform this action.
|
|
14
|
+
#
|
|
15
|
+
# @!attribute [rw] message
|
|
16
|
+
# You don't have sufficient permissions to perform this action.
|
|
17
|
+
# Verify your IAM permissions and try again.
|
|
18
|
+
# @return [String]
|
|
19
|
+
#
|
|
20
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/nova-act-2025-08-22/AccessDeniedException AWS API Documentation
|
|
21
|
+
#
|
|
22
|
+
class AccessDeniedException < Struct.new(
|
|
23
|
+
:message)
|
|
24
|
+
SENSITIVE = []
|
|
25
|
+
include Aws::Structure
|
|
26
|
+
end
|
|
27
|
+
|
|
28
|
+
# Error information when an act fails to execute successfully.
|
|
29
|
+
#
|
|
30
|
+
# @!attribute [rw] message
|
|
31
|
+
# A human-readable description of the error that occurred.
|
|
32
|
+
# @return [String]
|
|
33
|
+
#
|
|
34
|
+
# @!attribute [rw] type
|
|
35
|
+
# The type or category of error that occurred.
|
|
36
|
+
# @return [String]
|
|
37
|
+
#
|
|
38
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/nova-act-2025-08-22/ActError AWS API Documentation
|
|
39
|
+
#
|
|
40
|
+
class ActError < Struct.new(
|
|
41
|
+
:message,
|
|
42
|
+
:type)
|
|
43
|
+
SENSITIVE = [:message]
|
|
44
|
+
include Aws::Structure
|
|
45
|
+
end
|
|
46
|
+
|
|
47
|
+
# Summary information about an act, including its status and execution
|
|
48
|
+
# timing.
|
|
49
|
+
#
|
|
50
|
+
# @!attribute [rw] workflow_run_id
|
|
51
|
+
# The unique identifier of the workflow run containing this act.
|
|
52
|
+
# @return [String]
|
|
53
|
+
#
|
|
54
|
+
# @!attribute [rw] session_id
|
|
55
|
+
# The unique identifier of the session containing this act.
|
|
56
|
+
# @return [String]
|
|
57
|
+
#
|
|
58
|
+
# @!attribute [rw] act_id
|
|
59
|
+
# The unique identifier of the act.
|
|
60
|
+
# @return [String]
|
|
61
|
+
#
|
|
62
|
+
# @!attribute [rw] status
|
|
63
|
+
# The current execution status of the act.
|
|
64
|
+
# @return [String]
|
|
65
|
+
#
|
|
66
|
+
# @!attribute [rw] started_at
|
|
67
|
+
# The timestamp when the act started execution.
|
|
68
|
+
# @return [Time]
|
|
69
|
+
#
|
|
70
|
+
# @!attribute [rw] ended_at
|
|
71
|
+
# The timestamp when the act completed execution, if applicable.
|
|
72
|
+
# @return [Time]
|
|
73
|
+
#
|
|
74
|
+
# @!attribute [rw] trace_location
|
|
75
|
+
# The location where trace information for this act is stored.
|
|
76
|
+
# @return [Types::TraceLocation]
|
|
77
|
+
#
|
|
78
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/nova-act-2025-08-22/ActSummary AWS API Documentation
|
|
79
|
+
#
|
|
80
|
+
class ActSummary < Struct.new(
|
|
81
|
+
:workflow_run_id,
|
|
82
|
+
:session_id,
|
|
83
|
+
:act_id,
|
|
84
|
+
:status,
|
|
85
|
+
:started_at,
|
|
86
|
+
:ended_at,
|
|
87
|
+
:trace_location)
|
|
88
|
+
SENSITIVE = []
|
|
89
|
+
include Aws::Structure
|
|
90
|
+
end
|
|
91
|
+
|
|
92
|
+
# A request for the client to execute a specific tool with given
|
|
93
|
+
# parameters.
|
|
94
|
+
#
|
|
95
|
+
# @!attribute [rw] call_id
|
|
96
|
+
# A unique identifier for this tool call, used to match results back
|
|
97
|
+
# to requests.
|
|
98
|
+
# @return [String]
|
|
99
|
+
#
|
|
100
|
+
# @!attribute [rw] input
|
|
101
|
+
# The input parameters for the tool call, formatted according to the
|
|
102
|
+
# tool's schema.
|
|
103
|
+
# @return [Hash,Array,String,Numeric,Boolean]
|
|
104
|
+
#
|
|
105
|
+
# @!attribute [rw] name
|
|
106
|
+
# The name of the tool to invoke, following the pattern
|
|
107
|
+
# 'tool.\{toolName}' or 'browser.\{browserAction}'.
|
|
108
|
+
# @return [String]
|
|
109
|
+
#
|
|
110
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/nova-act-2025-08-22/Call AWS API Documentation
|
|
111
|
+
#
|
|
112
|
+
class Call < Struct.new(
|
|
113
|
+
:call_id,
|
|
114
|
+
:input,
|
|
115
|
+
:name)
|
|
116
|
+
SENSITIVE = [:input]
|
|
117
|
+
include Aws::Structure
|
|
118
|
+
end
|
|
119
|
+
|
|
120
|
+
# The result returned from executing a tool call.
|
|
121
|
+
#
|
|
122
|
+
# @!attribute [rw] call_id
|
|
123
|
+
# The identifier of the tool call that this result corresponds to.
|
|
124
|
+
# @return [String]
|
|
125
|
+
#
|
|
126
|
+
# @!attribute [rw] content
|
|
127
|
+
# The content returned by the tool execution, which can include text
|
|
128
|
+
# or other media types.
|
|
129
|
+
# @return [Array<Types::CallResultContent>]
|
|
130
|
+
#
|
|
131
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/nova-act-2025-08-22/CallResult AWS API Documentation
|
|
132
|
+
#
|
|
133
|
+
class CallResult < Struct.new(
|
|
134
|
+
:call_id,
|
|
135
|
+
:content)
|
|
136
|
+
SENSITIVE = [:content]
|
|
137
|
+
include Aws::Structure
|
|
138
|
+
end
|
|
139
|
+
|
|
140
|
+
# Content returned from a tool call execution.
|
|
141
|
+
#
|
|
142
|
+
# @note CallResultContent is a union - when making an API calls you must set exactly one of the members.
|
|
143
|
+
#
|
|
144
|
+
# @!attribute [rw] text
|
|
145
|
+
# Text content returned from the tool execution.
|
|
146
|
+
# @return [String]
|
|
147
|
+
#
|
|
148
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/nova-act-2025-08-22/CallResultContent AWS API Documentation
|
|
149
|
+
#
|
|
150
|
+
class CallResultContent < Struct.new(
|
|
151
|
+
:text,
|
|
152
|
+
:unknown)
|
|
153
|
+
SENSITIVE = []
|
|
154
|
+
include Aws::Structure
|
|
155
|
+
include Aws::Structure::Union
|
|
156
|
+
|
|
157
|
+
class Text < CallResultContent; end
|
|
158
|
+
class Unknown < CallResultContent; end
|
|
159
|
+
end
|
|
160
|
+
|
|
161
|
+
# Information about the client making API requests, used for
|
|
162
|
+
# compatibility checking.
|
|
163
|
+
#
|
|
164
|
+
# @!attribute [rw] compatibility_version
|
|
165
|
+
# The compatibility version of the client, used to ensure API
|
|
166
|
+
# compatibility.
|
|
167
|
+
# @return [Integer]
|
|
168
|
+
#
|
|
169
|
+
# @!attribute [rw] sdk_version
|
|
170
|
+
# The version of the SDK being used by the client.
|
|
171
|
+
# @return [String]
|
|
172
|
+
#
|
|
173
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/nova-act-2025-08-22/ClientInfo AWS API Documentation
|
|
174
|
+
#
|
|
175
|
+
class ClientInfo < Struct.new(
|
|
176
|
+
:compatibility_version,
|
|
177
|
+
:sdk_version)
|
|
178
|
+
SENSITIVE = []
|
|
179
|
+
include Aws::Structure
|
|
180
|
+
end
|
|
181
|
+
|
|
182
|
+
# Information about client compatibility and supported model versions.
|
|
183
|
+
#
|
|
184
|
+
# @!attribute [rw] client_compatibility_version
|
|
185
|
+
# The client compatibility version that was requested.
|
|
186
|
+
# @return [Integer]
|
|
187
|
+
#
|
|
188
|
+
# @!attribute [rw] supported_model_ids
|
|
189
|
+
# A list of model IDs that are supported for the client compatibility
|
|
190
|
+
# version.
|
|
191
|
+
# @return [Array<String>]
|
|
192
|
+
#
|
|
193
|
+
# @!attribute [rw] message
|
|
194
|
+
# Additional information about compatibility requirements or
|
|
195
|
+
# recommendations.
|
|
196
|
+
# @return [String]
|
|
197
|
+
#
|
|
198
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/nova-act-2025-08-22/CompatibilityInformation AWS API Documentation
|
|
199
|
+
#
|
|
200
|
+
class CompatibilityInformation < Struct.new(
|
|
201
|
+
:client_compatibility_version,
|
|
202
|
+
:supported_model_ids,
|
|
203
|
+
:message)
|
|
204
|
+
SENSITIVE = []
|
|
205
|
+
include Aws::Structure
|
|
206
|
+
end
|
|
207
|
+
|
|
208
|
+
# The request could not be completed due to a conflict with the current
|
|
209
|
+
# state of the resource.
|
|
210
|
+
#
|
|
211
|
+
# @!attribute [rw] message
|
|
212
|
+
# The requested operation conflicts with the current state of the
|
|
213
|
+
# resource.
|
|
214
|
+
# @return [String]
|
|
215
|
+
#
|
|
216
|
+
# @!attribute [rw] resource_id
|
|
217
|
+
# The identifier of the resource that caused the conflict.
|
|
218
|
+
# @return [String]
|
|
219
|
+
#
|
|
220
|
+
# @!attribute [rw] resource_type
|
|
221
|
+
# The type of resource that caused the conflict.
|
|
222
|
+
# @return [String]
|
|
223
|
+
#
|
|
224
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/nova-act-2025-08-22/ConflictException AWS API Documentation
|
|
225
|
+
#
|
|
226
|
+
class ConflictException < Struct.new(
|
|
227
|
+
:message,
|
|
228
|
+
:resource_id,
|
|
229
|
+
:resource_type)
|
|
230
|
+
SENSITIVE = []
|
|
231
|
+
include Aws::Structure
|
|
232
|
+
end
|
|
233
|
+
|
|
234
|
+
# @!attribute [rw] workflow_definition_name
|
|
235
|
+
# The name of the workflow definition containing the session.
|
|
236
|
+
# @return [String]
|
|
237
|
+
#
|
|
238
|
+
# @!attribute [rw] workflow_run_id
|
|
239
|
+
# The unique identifier of the workflow run containing the session.
|
|
240
|
+
# @return [String]
|
|
241
|
+
#
|
|
242
|
+
# @!attribute [rw] session_id
|
|
243
|
+
# The unique identifier of the session to create the act in.
|
|
244
|
+
# @return [String]
|
|
245
|
+
#
|
|
246
|
+
# @!attribute [rw] task
|
|
247
|
+
# The task description that defines what the act should accomplish.
|
|
248
|
+
# @return [String]
|
|
249
|
+
#
|
|
250
|
+
# @!attribute [rw] tool_specs
|
|
251
|
+
# A list of tool specifications that the act can invoke to complete
|
|
252
|
+
# its task.
|
|
253
|
+
# @return [Array<Types::ToolSpec>]
|
|
254
|
+
#
|
|
255
|
+
# @!attribute [rw] client_token
|
|
256
|
+
# A unique, case-sensitive identifier that you provide to ensure the
|
|
257
|
+
# idempotency of the request.
|
|
258
|
+
#
|
|
259
|
+
# **A suitable default value is auto-generated.** You should normally
|
|
260
|
+
# not need to pass this option.
|
|
261
|
+
# @return [String]
|
|
262
|
+
#
|
|
263
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/nova-act-2025-08-22/CreateActRequest AWS API Documentation
|
|
264
|
+
#
|
|
265
|
+
class CreateActRequest < Struct.new(
|
|
266
|
+
:workflow_definition_name,
|
|
267
|
+
:workflow_run_id,
|
|
268
|
+
:session_id,
|
|
269
|
+
:task,
|
|
270
|
+
:tool_specs,
|
|
271
|
+
:client_token)
|
|
272
|
+
SENSITIVE = [:task]
|
|
273
|
+
include Aws::Structure
|
|
274
|
+
end
|
|
275
|
+
|
|
276
|
+
# @!attribute [rw] act_id
|
|
277
|
+
# The unique identifier for the created act.
|
|
278
|
+
# @return [String]
|
|
279
|
+
#
|
|
280
|
+
# @!attribute [rw] status
|
|
281
|
+
# The initial status of the act after creation.
|
|
282
|
+
# @return [String]
|
|
283
|
+
#
|
|
284
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/nova-act-2025-08-22/CreateActResponse AWS API Documentation
|
|
285
|
+
#
|
|
286
|
+
class CreateActResponse < Struct.new(
|
|
287
|
+
:act_id,
|
|
288
|
+
:status)
|
|
289
|
+
SENSITIVE = []
|
|
290
|
+
include Aws::Structure
|
|
291
|
+
end
|
|
292
|
+
|
|
293
|
+
# @!attribute [rw] workflow_definition_name
|
|
294
|
+
# The name of the workflow definition containing the workflow run.
|
|
295
|
+
# @return [String]
|
|
296
|
+
#
|
|
297
|
+
# @!attribute [rw] workflow_run_id
|
|
298
|
+
# The unique identifier of the workflow run to create the session in.
|
|
299
|
+
# @return [String]
|
|
300
|
+
#
|
|
301
|
+
# @!attribute [rw] client_token
|
|
302
|
+
# A unique, case-sensitive identifier that you provide to ensure the
|
|
303
|
+
# idempotency of the request.
|
|
304
|
+
#
|
|
305
|
+
# **A suitable default value is auto-generated.** You should normally
|
|
306
|
+
# not need to pass this option.
|
|
307
|
+
# @return [String]
|
|
308
|
+
#
|
|
309
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/nova-act-2025-08-22/CreateSessionRequest AWS API Documentation
|
|
310
|
+
#
|
|
311
|
+
class CreateSessionRequest < Struct.new(
|
|
312
|
+
:workflow_definition_name,
|
|
313
|
+
:workflow_run_id,
|
|
314
|
+
:client_token)
|
|
315
|
+
SENSITIVE = []
|
|
316
|
+
include Aws::Structure
|
|
317
|
+
end
|
|
318
|
+
|
|
319
|
+
# @!attribute [rw] session_id
|
|
320
|
+
# The unique identifier for the created session.
|
|
321
|
+
# @return [String]
|
|
322
|
+
#
|
|
323
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/nova-act-2025-08-22/CreateSessionResponse AWS API Documentation
|
|
324
|
+
#
|
|
325
|
+
class CreateSessionResponse < Struct.new(
|
|
326
|
+
:session_id)
|
|
327
|
+
SENSITIVE = []
|
|
328
|
+
include Aws::Structure
|
|
329
|
+
end
|
|
330
|
+
|
|
331
|
+
# @!attribute [rw] name
|
|
332
|
+
# The name of the workflow definition. Must be unique within your
|
|
333
|
+
# account and region.
|
|
334
|
+
# @return [String]
|
|
335
|
+
#
|
|
336
|
+
# @!attribute [rw] description
|
|
337
|
+
# An optional description of the workflow definition's purpose and
|
|
338
|
+
# functionality.
|
|
339
|
+
# @return [String]
|
|
340
|
+
#
|
|
341
|
+
# @!attribute [rw] export_config
|
|
342
|
+
# Configuration for exporting workflow execution data to Amazon Simple
|
|
343
|
+
# Storage Service.
|
|
344
|
+
# @return [Types::WorkflowExportConfig]
|
|
345
|
+
#
|
|
346
|
+
# @!attribute [rw] client_token
|
|
347
|
+
# A unique, case-sensitive identifier that you provide to ensure the
|
|
348
|
+
# idempotency of the request.
|
|
349
|
+
#
|
|
350
|
+
# **A suitable default value is auto-generated.** You should normally
|
|
351
|
+
# not need to pass this option.
|
|
352
|
+
# @return [String]
|
|
353
|
+
#
|
|
354
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/nova-act-2025-08-22/CreateWorkflowDefinitionRequest AWS API Documentation
|
|
355
|
+
#
|
|
356
|
+
class CreateWorkflowDefinitionRequest < Struct.new(
|
|
357
|
+
:name,
|
|
358
|
+
:description,
|
|
359
|
+
:export_config,
|
|
360
|
+
:client_token)
|
|
361
|
+
SENSITIVE = [:description]
|
|
362
|
+
include Aws::Structure
|
|
363
|
+
end
|
|
364
|
+
|
|
365
|
+
# @!attribute [rw] status
|
|
366
|
+
# The current status of the workflow definition after creation.
|
|
367
|
+
# @return [String]
|
|
368
|
+
#
|
|
369
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/nova-act-2025-08-22/CreateWorkflowDefinitionResponse AWS API Documentation
|
|
370
|
+
#
|
|
371
|
+
class CreateWorkflowDefinitionResponse < Struct.new(
|
|
372
|
+
:status)
|
|
373
|
+
SENSITIVE = []
|
|
374
|
+
include Aws::Structure
|
|
375
|
+
end
|
|
376
|
+
|
|
377
|
+
# @!attribute [rw] workflow_definition_name
|
|
378
|
+
# The name of the workflow definition to execute.
|
|
379
|
+
# @return [String]
|
|
380
|
+
#
|
|
381
|
+
# @!attribute [rw] model_id
|
|
382
|
+
# The ID of the AI model to use for workflow execution.
|
|
383
|
+
# @return [String]
|
|
384
|
+
#
|
|
385
|
+
# @!attribute [rw] client_token
|
|
386
|
+
# A unique, case-sensitive identifier that you provide to ensure the
|
|
387
|
+
# idempotency of the request.
|
|
388
|
+
#
|
|
389
|
+
# **A suitable default value is auto-generated.** You should normally
|
|
390
|
+
# not need to pass this option.
|
|
391
|
+
# @return [String]
|
|
392
|
+
#
|
|
393
|
+
# @!attribute [rw] log_group_name
|
|
394
|
+
# The CloudWatch log group name for storing workflow execution logs.
|
|
395
|
+
# @return [String]
|
|
396
|
+
#
|
|
397
|
+
# @!attribute [rw] client_info
|
|
398
|
+
# Information about the client making the request, including
|
|
399
|
+
# compatibility version and SDK version.
|
|
400
|
+
# @return [Types::ClientInfo]
|
|
401
|
+
#
|
|
402
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/nova-act-2025-08-22/CreateWorkflowRunRequest AWS API Documentation
|
|
403
|
+
#
|
|
404
|
+
class CreateWorkflowRunRequest < Struct.new(
|
|
405
|
+
:workflow_definition_name,
|
|
406
|
+
:model_id,
|
|
407
|
+
:client_token,
|
|
408
|
+
:log_group_name,
|
|
409
|
+
:client_info)
|
|
410
|
+
SENSITIVE = []
|
|
411
|
+
include Aws::Structure
|
|
412
|
+
end
|
|
413
|
+
|
|
414
|
+
# @!attribute [rw] workflow_run_id
|
|
415
|
+
# The unique identifier for the created workflow run.
|
|
416
|
+
# @return [String]
|
|
417
|
+
#
|
|
418
|
+
# @!attribute [rw] status
|
|
419
|
+
# The initial status of the workflow run after creation.
|
|
420
|
+
# @return [String]
|
|
421
|
+
#
|
|
422
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/nova-act-2025-08-22/CreateWorkflowRunResponse AWS API Documentation
|
|
423
|
+
#
|
|
424
|
+
class CreateWorkflowRunResponse < Struct.new(
|
|
425
|
+
:workflow_run_id,
|
|
426
|
+
:status)
|
|
427
|
+
SENSITIVE = []
|
|
428
|
+
include Aws::Structure
|
|
429
|
+
end
|
|
430
|
+
|
|
431
|
+
# @!attribute [rw] workflow_definition_name
|
|
432
|
+
# The name of the workflow definition to delete.
|
|
433
|
+
# @return [String]
|
|
434
|
+
#
|
|
435
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/nova-act-2025-08-22/DeleteWorkflowDefinitionRequest AWS API Documentation
|
|
436
|
+
#
|
|
437
|
+
class DeleteWorkflowDefinitionRequest < Struct.new(
|
|
438
|
+
:workflow_definition_name)
|
|
439
|
+
SENSITIVE = []
|
|
440
|
+
include Aws::Structure
|
|
441
|
+
end
|
|
442
|
+
|
|
443
|
+
# @!attribute [rw] status
|
|
444
|
+
# The status of the workflow definition after deletion request.
|
|
445
|
+
# @return [String]
|
|
446
|
+
#
|
|
447
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/nova-act-2025-08-22/DeleteWorkflowDefinitionResponse AWS API Documentation
|
|
448
|
+
#
|
|
449
|
+
class DeleteWorkflowDefinitionResponse < Struct.new(
|
|
450
|
+
:status)
|
|
451
|
+
SENSITIVE = []
|
|
452
|
+
include Aws::Structure
|
|
453
|
+
end
|
|
454
|
+
|
|
455
|
+
# @!attribute [rw] workflow_definition_name
|
|
456
|
+
# The name of the workflow definition containing the workflow run.
|
|
457
|
+
# @return [String]
|
|
458
|
+
#
|
|
459
|
+
# @!attribute [rw] workflow_run_id
|
|
460
|
+
# The unique identifier of the workflow run to delete.
|
|
461
|
+
# @return [String]
|
|
462
|
+
#
|
|
463
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/nova-act-2025-08-22/DeleteWorkflowRunRequest AWS API Documentation
|
|
464
|
+
#
|
|
465
|
+
class DeleteWorkflowRunRequest < Struct.new(
|
|
466
|
+
:workflow_definition_name,
|
|
467
|
+
:workflow_run_id)
|
|
468
|
+
SENSITIVE = []
|
|
469
|
+
include Aws::Structure
|
|
470
|
+
end
|
|
471
|
+
|
|
472
|
+
# @!attribute [rw] status
|
|
473
|
+
# The status of the workflow run after deletion request.
|
|
474
|
+
# @return [String]
|
|
475
|
+
#
|
|
476
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/nova-act-2025-08-22/DeleteWorkflowRunResponse AWS API Documentation
|
|
477
|
+
#
|
|
478
|
+
class DeleteWorkflowRunResponse < Struct.new(
|
|
479
|
+
:status)
|
|
480
|
+
SENSITIVE = []
|
|
481
|
+
include Aws::Structure
|
|
482
|
+
end
|
|
483
|
+
|
|
484
|
+
# @!attribute [rw] workflow_definition_name
|
|
485
|
+
# The name of the workflow definition to retrieve.
|
|
486
|
+
# @return [String]
|
|
487
|
+
#
|
|
488
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/nova-act-2025-08-22/GetWorkflowDefinitionRequest AWS API Documentation
|
|
489
|
+
#
|
|
490
|
+
class GetWorkflowDefinitionRequest < Struct.new(
|
|
491
|
+
:workflow_definition_name)
|
|
492
|
+
SENSITIVE = []
|
|
493
|
+
include Aws::Structure
|
|
494
|
+
end
|
|
495
|
+
|
|
496
|
+
# @!attribute [rw] name
|
|
497
|
+
# The name of the workflow definition.
|
|
498
|
+
# @return [String]
|
|
499
|
+
#
|
|
500
|
+
# @!attribute [rw] arn
|
|
501
|
+
# The Amazon Resource Name (ARN) of the workflow definition.
|
|
502
|
+
# @return [String]
|
|
503
|
+
#
|
|
504
|
+
# @!attribute [rw] created_at
|
|
505
|
+
# The timestamp when the workflow definition was created.
|
|
506
|
+
# @return [Time]
|
|
507
|
+
#
|
|
508
|
+
# @!attribute [rw] description
|
|
509
|
+
# The description of the workflow definition.
|
|
510
|
+
# @return [String]
|
|
511
|
+
#
|
|
512
|
+
# @!attribute [rw] export_config
|
|
513
|
+
# The export configuration for the workflow definition.
|
|
514
|
+
# @return [Types::WorkflowExportConfig]
|
|
515
|
+
#
|
|
516
|
+
# @!attribute [rw] status
|
|
517
|
+
# The current status of the workflow definition.
|
|
518
|
+
# @return [String]
|
|
519
|
+
#
|
|
520
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/nova-act-2025-08-22/GetWorkflowDefinitionResponse AWS API Documentation
|
|
521
|
+
#
|
|
522
|
+
class GetWorkflowDefinitionResponse < Struct.new(
|
|
523
|
+
:name,
|
|
524
|
+
:arn,
|
|
525
|
+
:created_at,
|
|
526
|
+
:description,
|
|
527
|
+
:export_config,
|
|
528
|
+
:status)
|
|
529
|
+
SENSITIVE = [:description]
|
|
530
|
+
include Aws::Structure
|
|
531
|
+
end
|
|
532
|
+
|
|
533
|
+
# @!attribute [rw] workflow_definition_name
|
|
534
|
+
# The name of the workflow definition containing the workflow run.
|
|
535
|
+
# @return [String]
|
|
536
|
+
#
|
|
537
|
+
# @!attribute [rw] workflow_run_id
|
|
538
|
+
# The unique identifier of the workflow run to retrieve.
|
|
539
|
+
# @return [String]
|
|
540
|
+
#
|
|
541
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/nova-act-2025-08-22/GetWorkflowRunRequest AWS API Documentation
|
|
542
|
+
#
|
|
543
|
+
class GetWorkflowRunRequest < Struct.new(
|
|
544
|
+
:workflow_definition_name,
|
|
545
|
+
:workflow_run_id)
|
|
546
|
+
SENSITIVE = []
|
|
547
|
+
include Aws::Structure
|
|
548
|
+
end
|
|
549
|
+
|
|
550
|
+
# @!attribute [rw] workflow_run_arn
|
|
551
|
+
# The Amazon Resource Name (ARN) of the workflow run.
|
|
552
|
+
# @return [String]
|
|
553
|
+
#
|
|
554
|
+
# @!attribute [rw] workflow_run_id
|
|
555
|
+
# The unique identifier of the workflow run.
|
|
556
|
+
# @return [String]
|
|
557
|
+
#
|
|
558
|
+
# @!attribute [rw] status
|
|
559
|
+
# The current execution status of the workflow run.
|
|
560
|
+
# @return [String]
|
|
561
|
+
#
|
|
562
|
+
# @!attribute [rw] started_at
|
|
563
|
+
# The timestamp when the workflow run started execution.
|
|
564
|
+
# @return [Time]
|
|
565
|
+
#
|
|
566
|
+
# @!attribute [rw] ended_at
|
|
567
|
+
# The timestamp when the workflow run completed execution, if
|
|
568
|
+
# applicable.
|
|
569
|
+
# @return [Time]
|
|
570
|
+
#
|
|
571
|
+
# @!attribute [rw] model_id
|
|
572
|
+
# The ID of the AI model being used for this workflow run.
|
|
573
|
+
# @return [String]
|
|
574
|
+
#
|
|
575
|
+
# @!attribute [rw] log_group_name
|
|
576
|
+
# The CloudWatch log group name for this workflow run's logs.
|
|
577
|
+
# @return [String]
|
|
578
|
+
#
|
|
579
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/nova-act-2025-08-22/GetWorkflowRunResponse AWS API Documentation
|
|
580
|
+
#
|
|
581
|
+
class GetWorkflowRunResponse < Struct.new(
|
|
582
|
+
:workflow_run_arn,
|
|
583
|
+
:workflow_run_id,
|
|
584
|
+
:status,
|
|
585
|
+
:started_at,
|
|
586
|
+
:ended_at,
|
|
587
|
+
:model_id,
|
|
588
|
+
:log_group_name)
|
|
589
|
+
SENSITIVE = []
|
|
590
|
+
include Aws::Structure
|
|
591
|
+
end
|
|
592
|
+
|
|
593
|
+
# An internal server error occurred. Please try again later.
|
|
594
|
+
#
|
|
595
|
+
# @!attribute [rw] message
|
|
596
|
+
# The service encountered an internal error. Try again later.
|
|
597
|
+
# @return [String]
|
|
598
|
+
#
|
|
599
|
+
# @!attribute [rw] retry_after_seconds
|
|
600
|
+
# The number of seconds to wait before retrying the request.
|
|
601
|
+
# @return [Integer]
|
|
602
|
+
#
|
|
603
|
+
# @!attribute [rw] reason
|
|
604
|
+
# The reason for the internal server error.
|
|
605
|
+
# @return [String]
|
|
606
|
+
#
|
|
607
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/nova-act-2025-08-22/InternalServerException AWS API Documentation
|
|
608
|
+
#
|
|
609
|
+
class InternalServerException < Struct.new(
|
|
610
|
+
:message,
|
|
611
|
+
:retry_after_seconds,
|
|
612
|
+
:reason)
|
|
613
|
+
SENSITIVE = []
|
|
614
|
+
include Aws::Structure
|
|
615
|
+
end
|
|
616
|
+
|
|
617
|
+
# @!attribute [rw] workflow_definition_name
|
|
618
|
+
# The name of the workflow definition containing the act.
|
|
619
|
+
# @return [String]
|
|
620
|
+
#
|
|
621
|
+
# @!attribute [rw] workflow_run_id
|
|
622
|
+
# The unique identifier of the workflow run containing the act.
|
|
623
|
+
# @return [String]
|
|
624
|
+
#
|
|
625
|
+
# @!attribute [rw] session_id
|
|
626
|
+
# The unique identifier of the session containing the act.
|
|
627
|
+
# @return [String]
|
|
628
|
+
#
|
|
629
|
+
# @!attribute [rw] act_id
|
|
630
|
+
# The unique identifier of the act to invoke the next step for.
|
|
631
|
+
# @return [String]
|
|
632
|
+
#
|
|
633
|
+
# @!attribute [rw] call_results
|
|
634
|
+
# The results from previous tool calls that the act requested.
|
|
635
|
+
# @return [Array<Types::CallResult>]
|
|
636
|
+
#
|
|
637
|
+
# @!attribute [rw] previous_step_id
|
|
638
|
+
# The identifier of the previous step, used for tracking execution
|
|
639
|
+
# flow.
|
|
640
|
+
# @return [String]
|
|
641
|
+
#
|
|
642
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/nova-act-2025-08-22/InvokeActStepRequest AWS API Documentation
|
|
643
|
+
#
|
|
644
|
+
class InvokeActStepRequest < Struct.new(
|
|
645
|
+
:workflow_definition_name,
|
|
646
|
+
:workflow_run_id,
|
|
647
|
+
:session_id,
|
|
648
|
+
:act_id,
|
|
649
|
+
:call_results,
|
|
650
|
+
:previous_step_id)
|
|
651
|
+
SENSITIVE = []
|
|
652
|
+
include Aws::Structure
|
|
653
|
+
end
|
|
654
|
+
|
|
655
|
+
# @!attribute [rw] calls
|
|
656
|
+
# A list of tool calls that the act wants to execute in this step.
|
|
657
|
+
# @return [Array<Types::Call>]
|
|
658
|
+
#
|
|
659
|
+
# @!attribute [rw] step_id
|
|
660
|
+
# The unique identifier for this execution step.
|
|
661
|
+
# @return [String]
|
|
662
|
+
#
|
|
663
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/nova-act-2025-08-22/InvokeActStepResponse AWS API Documentation
|
|
664
|
+
#
|
|
665
|
+
class InvokeActStepResponse < Struct.new(
|
|
666
|
+
:calls,
|
|
667
|
+
:step_id)
|
|
668
|
+
SENSITIVE = []
|
|
669
|
+
include Aws::Structure
|
|
670
|
+
end
|
|
671
|
+
|
|
672
|
+
# @!attribute [rw] workflow_definition_name
|
|
673
|
+
# The name of the workflow definition containing the session.
|
|
674
|
+
# @return [String]
|
|
675
|
+
#
|
|
676
|
+
# @!attribute [rw] workflow_run_id
|
|
677
|
+
# The unique identifier of the workflow run containing the session.
|
|
678
|
+
# @return [String]
|
|
679
|
+
#
|
|
680
|
+
# @!attribute [rw] session_id
|
|
681
|
+
# The unique identifier of the session to list acts for.
|
|
682
|
+
# @return [String]
|
|
683
|
+
#
|
|
684
|
+
# @!attribute [rw] max_results
|
|
685
|
+
# The maximum number of acts to return in a single response.
|
|
686
|
+
# @return [Integer]
|
|
687
|
+
#
|
|
688
|
+
# @!attribute [rw] next_token
|
|
689
|
+
# The token for retrieving the next page of results.
|
|
690
|
+
# @return [String]
|
|
691
|
+
#
|
|
692
|
+
# @!attribute [rw] sort_order
|
|
693
|
+
# The sort order for the returned acts (ascending or descending).
|
|
694
|
+
# @return [String]
|
|
695
|
+
#
|
|
696
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/nova-act-2025-08-22/ListActsRequest AWS API Documentation
|
|
697
|
+
#
|
|
698
|
+
class ListActsRequest < Struct.new(
|
|
699
|
+
:workflow_definition_name,
|
|
700
|
+
:workflow_run_id,
|
|
701
|
+
:session_id,
|
|
702
|
+
:max_results,
|
|
703
|
+
:next_token,
|
|
704
|
+
:sort_order)
|
|
705
|
+
SENSITIVE = []
|
|
706
|
+
include Aws::Structure
|
|
707
|
+
end
|
|
708
|
+
|
|
709
|
+
# @!attribute [rw] act_summaries
|
|
710
|
+
# A list of summary information for acts in the session.
|
|
711
|
+
# @return [Array<Types::ActSummary>]
|
|
712
|
+
#
|
|
713
|
+
# @!attribute [rw] next_token
|
|
714
|
+
# The token for retrieving the next page of results, if available.
|
|
715
|
+
# @return [String]
|
|
716
|
+
#
|
|
717
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/nova-act-2025-08-22/ListActsResponse AWS API Documentation
|
|
718
|
+
#
|
|
719
|
+
class ListActsResponse < Struct.new(
|
|
720
|
+
:act_summaries,
|
|
721
|
+
:next_token)
|
|
722
|
+
SENSITIVE = []
|
|
723
|
+
include Aws::Structure
|
|
724
|
+
end
|
|
725
|
+
|
|
726
|
+
# @!attribute [rw] client_compatibility_version
|
|
727
|
+
# The client compatibility version to filter models by compatibility.
|
|
728
|
+
# @return [Integer]
|
|
729
|
+
#
|
|
730
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/nova-act-2025-08-22/ListModelsRequest AWS API Documentation
|
|
731
|
+
#
|
|
732
|
+
class ListModelsRequest < Struct.new(
|
|
733
|
+
:client_compatibility_version)
|
|
734
|
+
SENSITIVE = []
|
|
735
|
+
include Aws::Structure
|
|
736
|
+
end
|
|
737
|
+
|
|
738
|
+
# @!attribute [rw] model_summaries
|
|
739
|
+
# A list of available AI models with their status and compatibility
|
|
740
|
+
# information.
|
|
741
|
+
# @return [Array<Types::ModelSummary>]
|
|
742
|
+
#
|
|
743
|
+
# @!attribute [rw] model_aliases
|
|
744
|
+
# A list of model aliases that provide stable references to model
|
|
745
|
+
# versions.
|
|
746
|
+
# @return [Array<Types::ModelAlias>]
|
|
747
|
+
#
|
|
748
|
+
# @!attribute [rw] compatibility_information
|
|
749
|
+
# Information about client compatibility and supported models.
|
|
750
|
+
# @return [Types::CompatibilityInformation]
|
|
751
|
+
#
|
|
752
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/nova-act-2025-08-22/ListModelsResponse AWS API Documentation
|
|
753
|
+
#
|
|
754
|
+
class ListModelsResponse < Struct.new(
|
|
755
|
+
:model_summaries,
|
|
756
|
+
:model_aliases,
|
|
757
|
+
:compatibility_information)
|
|
758
|
+
SENSITIVE = []
|
|
759
|
+
include Aws::Structure
|
|
760
|
+
end
|
|
761
|
+
|
|
762
|
+
# @!attribute [rw] workflow_definition_name
|
|
763
|
+
# The name of the workflow definition containing the workflow run.
|
|
764
|
+
# @return [String]
|
|
765
|
+
#
|
|
766
|
+
# @!attribute [rw] workflow_run_id
|
|
767
|
+
# The unique identifier of the workflow run to list sessions for.
|
|
768
|
+
# @return [String]
|
|
769
|
+
#
|
|
770
|
+
# @!attribute [rw] max_results
|
|
771
|
+
# The maximum number of sessions to return in a single response.
|
|
772
|
+
# @return [Integer]
|
|
773
|
+
#
|
|
774
|
+
# @!attribute [rw] next_token
|
|
775
|
+
# The token for retrieving the next page of results.
|
|
776
|
+
# @return [String]
|
|
777
|
+
#
|
|
778
|
+
# @!attribute [rw] sort_order
|
|
779
|
+
# The sort order for the returned sessions (ascending or descending).
|
|
780
|
+
# @return [String]
|
|
781
|
+
#
|
|
782
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/nova-act-2025-08-22/ListSessionsRequest AWS API Documentation
|
|
783
|
+
#
|
|
784
|
+
class ListSessionsRequest < Struct.new(
|
|
785
|
+
:workflow_definition_name,
|
|
786
|
+
:workflow_run_id,
|
|
787
|
+
:max_results,
|
|
788
|
+
:next_token,
|
|
789
|
+
:sort_order)
|
|
790
|
+
SENSITIVE = []
|
|
791
|
+
include Aws::Structure
|
|
792
|
+
end
|
|
793
|
+
|
|
794
|
+
# @!attribute [rw] session_summaries
|
|
795
|
+
# A list of summary information for sessions in the workflow run.
|
|
796
|
+
# @return [Array<Types::SessionSummary>]
|
|
797
|
+
#
|
|
798
|
+
# @!attribute [rw] next_token
|
|
799
|
+
# The token for retrieving the next page of results, if available.
|
|
800
|
+
# @return [String]
|
|
801
|
+
#
|
|
802
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/nova-act-2025-08-22/ListSessionsResponse AWS API Documentation
|
|
803
|
+
#
|
|
804
|
+
class ListSessionsResponse < Struct.new(
|
|
805
|
+
:session_summaries,
|
|
806
|
+
:next_token)
|
|
807
|
+
SENSITIVE = []
|
|
808
|
+
include Aws::Structure
|
|
809
|
+
end
|
|
810
|
+
|
|
811
|
+
# @!attribute [rw] max_results
|
|
812
|
+
# The maximum number of workflow definitions to return in a single
|
|
813
|
+
# response.
|
|
814
|
+
# @return [Integer]
|
|
815
|
+
#
|
|
816
|
+
# @!attribute [rw] next_token
|
|
817
|
+
# The token for retrieving the next page of results.
|
|
818
|
+
# @return [String]
|
|
819
|
+
#
|
|
820
|
+
# @!attribute [rw] sort_order
|
|
821
|
+
# The sort order for the returned workflow definitions (ascending or
|
|
822
|
+
# descending).
|
|
823
|
+
# @return [String]
|
|
824
|
+
#
|
|
825
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/nova-act-2025-08-22/ListWorkflowDefinitionsRequest AWS API Documentation
|
|
826
|
+
#
|
|
827
|
+
class ListWorkflowDefinitionsRequest < Struct.new(
|
|
828
|
+
:max_results,
|
|
829
|
+
:next_token,
|
|
830
|
+
:sort_order)
|
|
831
|
+
SENSITIVE = []
|
|
832
|
+
include Aws::Structure
|
|
833
|
+
end
|
|
834
|
+
|
|
835
|
+
# @!attribute [rw] workflow_definition_summaries
|
|
836
|
+
# A list of summary information for workflow definitions.
|
|
837
|
+
# @return [Array<Types::WorkflowDefinitionSummary>]
|
|
838
|
+
#
|
|
839
|
+
# @!attribute [rw] next_token
|
|
840
|
+
# The token for retrieving the next page of results, if available.
|
|
841
|
+
# @return [String]
|
|
842
|
+
#
|
|
843
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/nova-act-2025-08-22/ListWorkflowDefinitionsResponse AWS API Documentation
|
|
844
|
+
#
|
|
845
|
+
class ListWorkflowDefinitionsResponse < Struct.new(
|
|
846
|
+
:workflow_definition_summaries,
|
|
847
|
+
:next_token)
|
|
848
|
+
SENSITIVE = []
|
|
849
|
+
include Aws::Structure
|
|
850
|
+
end
|
|
851
|
+
|
|
852
|
+
# @!attribute [rw] workflow_definition_name
|
|
853
|
+
# The name of the workflow definition to list workflow runs for.
|
|
854
|
+
# @return [String]
|
|
855
|
+
#
|
|
856
|
+
# @!attribute [rw] max_results
|
|
857
|
+
# The maximum number of workflow runs to return in a single response.
|
|
858
|
+
# @return [Integer]
|
|
859
|
+
#
|
|
860
|
+
# @!attribute [rw] next_token
|
|
861
|
+
# The token for retrieving the next page of results.
|
|
862
|
+
# @return [String]
|
|
863
|
+
#
|
|
864
|
+
# @!attribute [rw] sort_order
|
|
865
|
+
# The sort order for the returned workflow runs (ascending or
|
|
866
|
+
# descending).
|
|
867
|
+
# @return [String]
|
|
868
|
+
#
|
|
869
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/nova-act-2025-08-22/ListWorkflowRunsRequest AWS API Documentation
|
|
870
|
+
#
|
|
871
|
+
class ListWorkflowRunsRequest < Struct.new(
|
|
872
|
+
:workflow_definition_name,
|
|
873
|
+
:max_results,
|
|
874
|
+
:next_token,
|
|
875
|
+
:sort_order)
|
|
876
|
+
SENSITIVE = []
|
|
877
|
+
include Aws::Structure
|
|
878
|
+
end
|
|
879
|
+
|
|
880
|
+
# @!attribute [rw] workflow_run_summaries
|
|
881
|
+
# A list of summary information for workflow runs.
|
|
882
|
+
# @return [Array<Types::WorkflowRunSummary>]
|
|
883
|
+
#
|
|
884
|
+
# @!attribute [rw] next_token
|
|
885
|
+
# The token for retrieving the next page of results, if available.
|
|
886
|
+
# @return [String]
|
|
887
|
+
#
|
|
888
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/nova-act-2025-08-22/ListWorkflowRunsResponse AWS API Documentation
|
|
889
|
+
#
|
|
890
|
+
class ListWorkflowRunsResponse < Struct.new(
|
|
891
|
+
:workflow_run_summaries,
|
|
892
|
+
:next_token)
|
|
893
|
+
SENSITIVE = []
|
|
894
|
+
include Aws::Structure
|
|
895
|
+
end
|
|
896
|
+
|
|
897
|
+
# An alias that provides a stable reference to a model version.
|
|
898
|
+
#
|
|
899
|
+
# @!attribute [rw] alias_name
|
|
900
|
+
# The name of the model alias.
|
|
901
|
+
# @return [String]
|
|
902
|
+
#
|
|
903
|
+
# @!attribute [rw] latest_model_id
|
|
904
|
+
# The model ID that this alias currently points to.
|
|
905
|
+
# @return [String]
|
|
906
|
+
#
|
|
907
|
+
# @!attribute [rw] resolved_model_id
|
|
908
|
+
# The resolved model ID after alias resolution.
|
|
909
|
+
# @return [String]
|
|
910
|
+
#
|
|
911
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/nova-act-2025-08-22/ModelAlias AWS API Documentation
|
|
912
|
+
#
|
|
913
|
+
class ModelAlias < Struct.new(
|
|
914
|
+
:alias_name,
|
|
915
|
+
:latest_model_id,
|
|
916
|
+
:resolved_model_id)
|
|
917
|
+
SENSITIVE = []
|
|
918
|
+
include Aws::Structure
|
|
919
|
+
end
|
|
920
|
+
|
|
921
|
+
# Lifecycle information for an AI model.
|
|
922
|
+
#
|
|
923
|
+
# @!attribute [rw] status
|
|
924
|
+
# The current lifecycle status of the model.
|
|
925
|
+
# @return [String]
|
|
926
|
+
#
|
|
927
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/nova-act-2025-08-22/ModelLifecycle AWS API Documentation
|
|
928
|
+
#
|
|
929
|
+
class ModelLifecycle < Struct.new(
|
|
930
|
+
:status)
|
|
931
|
+
SENSITIVE = []
|
|
932
|
+
include Aws::Structure
|
|
933
|
+
end
|
|
934
|
+
|
|
935
|
+
# Summary information about an available AI model.
|
|
936
|
+
#
|
|
937
|
+
# @!attribute [rw] model_id
|
|
938
|
+
# The unique identifier of the model.
|
|
939
|
+
# @return [String]
|
|
940
|
+
#
|
|
941
|
+
# @!attribute [rw] model_lifecycle
|
|
942
|
+
# The lifecycle information for the model.
|
|
943
|
+
# @return [Types::ModelLifecycle]
|
|
944
|
+
#
|
|
945
|
+
# @!attribute [rw] minimum_compatibility_version
|
|
946
|
+
# The minimum client compatibility version required to use this model.
|
|
947
|
+
# @return [Integer]
|
|
948
|
+
#
|
|
949
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/nova-act-2025-08-22/ModelSummary AWS API Documentation
|
|
950
|
+
#
|
|
951
|
+
class ModelSummary < Struct.new(
|
|
952
|
+
:model_id,
|
|
953
|
+
:model_lifecycle,
|
|
954
|
+
:minimum_compatibility_version)
|
|
955
|
+
SENSITIVE = []
|
|
956
|
+
include Aws::Structure
|
|
957
|
+
end
|
|
958
|
+
|
|
959
|
+
# The requested resource was not found.
|
|
960
|
+
#
|
|
961
|
+
# @!attribute [rw] message
|
|
962
|
+
# The specified resource was not found.
|
|
963
|
+
# @return [String]
|
|
964
|
+
#
|
|
965
|
+
# @!attribute [rw] resource_id
|
|
966
|
+
# The identifier of the resource that wasn't found.
|
|
967
|
+
# @return [String]
|
|
968
|
+
#
|
|
969
|
+
# @!attribute [rw] resource_type
|
|
970
|
+
# The type of resource that wasn't found.
|
|
971
|
+
# @return [String]
|
|
972
|
+
#
|
|
973
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/nova-act-2025-08-22/ResourceNotFoundException AWS API Documentation
|
|
974
|
+
#
|
|
975
|
+
class ResourceNotFoundException < Struct.new(
|
|
976
|
+
:message,
|
|
977
|
+
:resource_id,
|
|
978
|
+
:resource_type)
|
|
979
|
+
SENSITIVE = []
|
|
980
|
+
include Aws::Structure
|
|
981
|
+
end
|
|
982
|
+
|
|
983
|
+
# The request would exceed a service quota limit.
|
|
984
|
+
#
|
|
985
|
+
# @!attribute [rw] message
|
|
986
|
+
# The request would exceed one or more service quotas for your
|
|
987
|
+
# account.
|
|
988
|
+
# @return [String]
|
|
989
|
+
#
|
|
990
|
+
# @!attribute [rw] resource_id
|
|
991
|
+
# The identifier of the resource that exceeded the quota.
|
|
992
|
+
# @return [String]
|
|
993
|
+
#
|
|
994
|
+
# @!attribute [rw] resource_type
|
|
995
|
+
# The type of resource that exceeded the quota.
|
|
996
|
+
# @return [String]
|
|
997
|
+
#
|
|
998
|
+
# @!attribute [rw] service_code
|
|
999
|
+
# The service code for the quota that was exceeded.
|
|
1000
|
+
# @return [String]
|
|
1001
|
+
#
|
|
1002
|
+
# @!attribute [rw] quota_code
|
|
1003
|
+
# The code for the specific quota that was exceeded.
|
|
1004
|
+
# @return [String]
|
|
1005
|
+
#
|
|
1006
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/nova-act-2025-08-22/ServiceQuotaExceededException AWS API Documentation
|
|
1007
|
+
#
|
|
1008
|
+
class ServiceQuotaExceededException < Struct.new(
|
|
1009
|
+
:message,
|
|
1010
|
+
:resource_id,
|
|
1011
|
+
:resource_type,
|
|
1012
|
+
:service_code,
|
|
1013
|
+
:quota_code)
|
|
1014
|
+
SENSITIVE = []
|
|
1015
|
+
include Aws::Structure
|
|
1016
|
+
end
|
|
1017
|
+
|
|
1018
|
+
# Summary information about a session within a workflow run.
|
|
1019
|
+
#
|
|
1020
|
+
# @!attribute [rw] session_id
|
|
1021
|
+
# The unique identifier of the session.
|
|
1022
|
+
# @return [String]
|
|
1023
|
+
#
|
|
1024
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/nova-act-2025-08-22/SessionSummary AWS API Documentation
|
|
1025
|
+
#
|
|
1026
|
+
class SessionSummary < Struct.new(
|
|
1027
|
+
:session_id)
|
|
1028
|
+
SENSITIVE = []
|
|
1029
|
+
include Aws::Structure
|
|
1030
|
+
end
|
|
1031
|
+
|
|
1032
|
+
# The request was throttled due to too many requests. Please try again
|
|
1033
|
+
# later.
|
|
1034
|
+
#
|
|
1035
|
+
# @!attribute [rw] message
|
|
1036
|
+
# The request was denied due to request throttling.
|
|
1037
|
+
# @return [String]
|
|
1038
|
+
#
|
|
1039
|
+
# @!attribute [rw] service_code
|
|
1040
|
+
# The service code where throttling occurred.
|
|
1041
|
+
# @return [String]
|
|
1042
|
+
#
|
|
1043
|
+
# @!attribute [rw] quota_code
|
|
1044
|
+
# The quota code related to the throttling.
|
|
1045
|
+
# @return [String]
|
|
1046
|
+
#
|
|
1047
|
+
# @!attribute [rw] retry_after_seconds
|
|
1048
|
+
# The number of seconds to wait before retrying the throttled request.
|
|
1049
|
+
# @return [Integer]
|
|
1050
|
+
#
|
|
1051
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/nova-act-2025-08-22/ThrottlingException AWS API Documentation
|
|
1052
|
+
#
|
|
1053
|
+
class ThrottlingException < Struct.new(
|
|
1054
|
+
:message,
|
|
1055
|
+
:service_code,
|
|
1056
|
+
:quota_code,
|
|
1057
|
+
:retry_after_seconds)
|
|
1058
|
+
SENSITIVE = []
|
|
1059
|
+
include Aws::Structure
|
|
1060
|
+
end
|
|
1061
|
+
|
|
1062
|
+
# The schema definition for tool input parameters.
|
|
1063
|
+
#
|
|
1064
|
+
# @note ToolInputSchema is a union - when making an API calls you must set exactly one of the members.
|
|
1065
|
+
#
|
|
1066
|
+
# @!attribute [rw] json
|
|
1067
|
+
# The JSON schema that defines the expected input format for the tool.
|
|
1068
|
+
# @return [Hash,Array,String,Numeric,Boolean]
|
|
1069
|
+
#
|
|
1070
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/nova-act-2025-08-22/ToolInputSchema AWS API Documentation
|
|
1071
|
+
#
|
|
1072
|
+
class ToolInputSchema < Struct.new(
|
|
1073
|
+
:json,
|
|
1074
|
+
:unknown)
|
|
1075
|
+
SENSITIVE = []
|
|
1076
|
+
include Aws::Structure
|
|
1077
|
+
include Aws::Structure::Union
|
|
1078
|
+
|
|
1079
|
+
class Json < ToolInputSchema; end
|
|
1080
|
+
class Unknown < ToolInputSchema; end
|
|
1081
|
+
end
|
|
1082
|
+
|
|
1083
|
+
# Specification for a tool that acts can invoke, including its name,
|
|
1084
|
+
# description, and input schema.
|
|
1085
|
+
#
|
|
1086
|
+
# @!attribute [rw] name
|
|
1087
|
+
# The unique name of the tool that acts will use to invoke it.
|
|
1088
|
+
# @return [String]
|
|
1089
|
+
#
|
|
1090
|
+
# @!attribute [rw] description
|
|
1091
|
+
# A description of what the tool does and how it should be used.
|
|
1092
|
+
# @return [String]
|
|
1093
|
+
#
|
|
1094
|
+
# @!attribute [rw] input_schema
|
|
1095
|
+
# The JSON schema that defines the expected input format for the tool.
|
|
1096
|
+
# @return [Types::ToolInputSchema]
|
|
1097
|
+
#
|
|
1098
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/nova-act-2025-08-22/ToolSpec AWS API Documentation
|
|
1099
|
+
#
|
|
1100
|
+
class ToolSpec < Struct.new(
|
|
1101
|
+
:name,
|
|
1102
|
+
:description,
|
|
1103
|
+
:input_schema)
|
|
1104
|
+
SENSITIVE = [:description, :input_schema]
|
|
1105
|
+
include Aws::Structure
|
|
1106
|
+
end
|
|
1107
|
+
|
|
1108
|
+
# Information about where trace data is stored for debugging and
|
|
1109
|
+
# monitoring.
|
|
1110
|
+
#
|
|
1111
|
+
# @!attribute [rw] location_type
|
|
1112
|
+
# The type of storage location for the trace data.
|
|
1113
|
+
# @return [String]
|
|
1114
|
+
#
|
|
1115
|
+
# @!attribute [rw] location
|
|
1116
|
+
# The specific location where the trace data is stored.
|
|
1117
|
+
# @return [String]
|
|
1118
|
+
#
|
|
1119
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/nova-act-2025-08-22/TraceLocation AWS API Documentation
|
|
1120
|
+
#
|
|
1121
|
+
class TraceLocation < Struct.new(
|
|
1122
|
+
:location_type,
|
|
1123
|
+
:location)
|
|
1124
|
+
SENSITIVE = []
|
|
1125
|
+
include Aws::Structure
|
|
1126
|
+
end
|
|
1127
|
+
|
|
1128
|
+
# @!attribute [rw] workflow_definition_name
|
|
1129
|
+
# The name of the workflow definition containing the act.
|
|
1130
|
+
# @return [String]
|
|
1131
|
+
#
|
|
1132
|
+
# @!attribute [rw] workflow_run_id
|
|
1133
|
+
# The unique identifier of the workflow run containing the act.
|
|
1134
|
+
# @return [String]
|
|
1135
|
+
#
|
|
1136
|
+
# @!attribute [rw] session_id
|
|
1137
|
+
# The unique identifier of the session containing the act.
|
|
1138
|
+
# @return [String]
|
|
1139
|
+
#
|
|
1140
|
+
# @!attribute [rw] act_id
|
|
1141
|
+
# The unique identifier of the act to update.
|
|
1142
|
+
# @return [String]
|
|
1143
|
+
#
|
|
1144
|
+
# @!attribute [rw] status
|
|
1145
|
+
# The new status to set for the act.
|
|
1146
|
+
# @return [String]
|
|
1147
|
+
#
|
|
1148
|
+
# @!attribute [rw] error
|
|
1149
|
+
# Error information to associate with the act, if applicable.
|
|
1150
|
+
# @return [Types::ActError]
|
|
1151
|
+
#
|
|
1152
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/nova-act-2025-08-22/UpdateActRequest AWS API Documentation
|
|
1153
|
+
#
|
|
1154
|
+
class UpdateActRequest < Struct.new(
|
|
1155
|
+
:workflow_definition_name,
|
|
1156
|
+
:workflow_run_id,
|
|
1157
|
+
:session_id,
|
|
1158
|
+
:act_id,
|
|
1159
|
+
:status,
|
|
1160
|
+
:error)
|
|
1161
|
+
SENSITIVE = []
|
|
1162
|
+
include Aws::Structure
|
|
1163
|
+
end
|
|
1164
|
+
|
|
1165
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/nova-act-2025-08-22/UpdateActResponse AWS API Documentation
|
|
1166
|
+
#
|
|
1167
|
+
class UpdateActResponse < Aws::EmptyStructure; end
|
|
1168
|
+
|
|
1169
|
+
# @!attribute [rw] workflow_definition_name
|
|
1170
|
+
# The name of the workflow definition containing the workflow run.
|
|
1171
|
+
# @return [String]
|
|
1172
|
+
#
|
|
1173
|
+
# @!attribute [rw] workflow_run_id
|
|
1174
|
+
# The unique identifier of the workflow run to update.
|
|
1175
|
+
# @return [String]
|
|
1176
|
+
#
|
|
1177
|
+
# @!attribute [rw] status
|
|
1178
|
+
# The new status to set for the workflow run.
|
|
1179
|
+
# @return [String]
|
|
1180
|
+
#
|
|
1181
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/nova-act-2025-08-22/UpdateWorkflowRunRequest AWS API Documentation
|
|
1182
|
+
#
|
|
1183
|
+
class UpdateWorkflowRunRequest < Struct.new(
|
|
1184
|
+
:workflow_definition_name,
|
|
1185
|
+
:workflow_run_id,
|
|
1186
|
+
:status)
|
|
1187
|
+
SENSITIVE = []
|
|
1188
|
+
include Aws::Structure
|
|
1189
|
+
end
|
|
1190
|
+
|
|
1191
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/nova-act-2025-08-22/UpdateWorkflowRunResponse AWS API Documentation
|
|
1192
|
+
#
|
|
1193
|
+
class UpdateWorkflowRunResponse < Aws::EmptyStructure; end
|
|
1194
|
+
|
|
1195
|
+
# The input parameters for the request are invalid.
|
|
1196
|
+
#
|
|
1197
|
+
# @!attribute [rw] message
|
|
1198
|
+
# The input fails to satisfy the constraints specified by the service.
|
|
1199
|
+
# @return [String]
|
|
1200
|
+
#
|
|
1201
|
+
# @!attribute [rw] reason
|
|
1202
|
+
# The reason for the validation failure.
|
|
1203
|
+
# @return [String]
|
|
1204
|
+
#
|
|
1205
|
+
# @!attribute [rw] field_list
|
|
1206
|
+
# The list of fields that failed validation.
|
|
1207
|
+
# @return [Array<Types::ValidationExceptionField>]
|
|
1208
|
+
#
|
|
1209
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/nova-act-2025-08-22/ValidationException AWS API Documentation
|
|
1210
|
+
#
|
|
1211
|
+
class ValidationException < Struct.new(
|
|
1212
|
+
:message,
|
|
1213
|
+
:reason,
|
|
1214
|
+
:field_list)
|
|
1215
|
+
SENSITIVE = []
|
|
1216
|
+
include Aws::Structure
|
|
1217
|
+
end
|
|
1218
|
+
|
|
1219
|
+
# Information about a field that failed validation.
|
|
1220
|
+
#
|
|
1221
|
+
# @!attribute [rw] name
|
|
1222
|
+
# The name of the field that failed validation.
|
|
1223
|
+
# @return [String]
|
|
1224
|
+
#
|
|
1225
|
+
# @!attribute [rw] message
|
|
1226
|
+
# A description of the validation error for this field.
|
|
1227
|
+
# @return [String]
|
|
1228
|
+
#
|
|
1229
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/nova-act-2025-08-22/ValidationExceptionField AWS API Documentation
|
|
1230
|
+
#
|
|
1231
|
+
class ValidationExceptionField < Struct.new(
|
|
1232
|
+
:name,
|
|
1233
|
+
:message)
|
|
1234
|
+
SENSITIVE = []
|
|
1235
|
+
include Aws::Structure
|
|
1236
|
+
end
|
|
1237
|
+
|
|
1238
|
+
# Summary information about a workflow definition, used in list
|
|
1239
|
+
# operations.
|
|
1240
|
+
#
|
|
1241
|
+
# @!attribute [rw] workflow_definition_arn
|
|
1242
|
+
# The Amazon Resource Name (ARN) of the workflow definition.
|
|
1243
|
+
# @return [String]
|
|
1244
|
+
#
|
|
1245
|
+
# @!attribute [rw] workflow_definition_name
|
|
1246
|
+
# The name of the workflow definition.
|
|
1247
|
+
# @return [String]
|
|
1248
|
+
#
|
|
1249
|
+
# @!attribute [rw] created_at
|
|
1250
|
+
# The timestamp when the workflow definition was created.
|
|
1251
|
+
# @return [Time]
|
|
1252
|
+
#
|
|
1253
|
+
# @!attribute [rw] status
|
|
1254
|
+
# The current status of the workflow definition.
|
|
1255
|
+
# @return [String]
|
|
1256
|
+
#
|
|
1257
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/nova-act-2025-08-22/WorkflowDefinitionSummary AWS API Documentation
|
|
1258
|
+
#
|
|
1259
|
+
class WorkflowDefinitionSummary < Struct.new(
|
|
1260
|
+
:workflow_definition_arn,
|
|
1261
|
+
:workflow_definition_name,
|
|
1262
|
+
:created_at,
|
|
1263
|
+
:status)
|
|
1264
|
+
SENSITIVE = []
|
|
1265
|
+
include Aws::Structure
|
|
1266
|
+
end
|
|
1267
|
+
|
|
1268
|
+
# Configuration settings for exporting workflow execution data and logs
|
|
1269
|
+
# to Amazon Simple Storage Service (Amazon S3).
|
|
1270
|
+
#
|
|
1271
|
+
# @!attribute [rw] s3_bucket_name
|
|
1272
|
+
# The name of your Amazon S3 bucket, that Nova Act uses to export your
|
|
1273
|
+
# workflow data. Note that the IAM role used to access Nova Act must
|
|
1274
|
+
# also have write permissions to this bucket.
|
|
1275
|
+
# @return [String]
|
|
1276
|
+
#
|
|
1277
|
+
# @!attribute [rw] s3_key_prefix
|
|
1278
|
+
# An optional prefix for Amazon S3 object keys to organize exported
|
|
1279
|
+
# data.
|
|
1280
|
+
# @return [String]
|
|
1281
|
+
#
|
|
1282
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/nova-act-2025-08-22/WorkflowExportConfig AWS API Documentation
|
|
1283
|
+
#
|
|
1284
|
+
class WorkflowExportConfig < Struct.new(
|
|
1285
|
+
:s3_bucket_name,
|
|
1286
|
+
:s3_key_prefix)
|
|
1287
|
+
SENSITIVE = []
|
|
1288
|
+
include Aws::Structure
|
|
1289
|
+
end
|
|
1290
|
+
|
|
1291
|
+
# Summary information about a workflow run, including execution status
|
|
1292
|
+
# and timing.
|
|
1293
|
+
#
|
|
1294
|
+
# @!attribute [rw] workflow_run_arn
|
|
1295
|
+
# The Amazon Resource Name (ARN) of the workflow run.
|
|
1296
|
+
# @return [String]
|
|
1297
|
+
#
|
|
1298
|
+
# @!attribute [rw] workflow_run_id
|
|
1299
|
+
# The unique identifier of the workflow run.
|
|
1300
|
+
# @return [String]
|
|
1301
|
+
#
|
|
1302
|
+
# @!attribute [rw] status
|
|
1303
|
+
# The current execution status of the workflow run.
|
|
1304
|
+
# @return [String]
|
|
1305
|
+
#
|
|
1306
|
+
# @!attribute [rw] started_at
|
|
1307
|
+
# The timestamp when the workflow run started execution.
|
|
1308
|
+
# @return [Time]
|
|
1309
|
+
#
|
|
1310
|
+
# @!attribute [rw] ended_at
|
|
1311
|
+
# The timestamp when the workflow run completed execution, if
|
|
1312
|
+
# applicable.
|
|
1313
|
+
# @return [Time]
|
|
1314
|
+
#
|
|
1315
|
+
# @!attribute [rw] trace_location
|
|
1316
|
+
# The location where trace information for this workflow run is
|
|
1317
|
+
# stored.
|
|
1318
|
+
# @return [Types::TraceLocation]
|
|
1319
|
+
#
|
|
1320
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/nova-act-2025-08-22/WorkflowRunSummary AWS API Documentation
|
|
1321
|
+
#
|
|
1322
|
+
class WorkflowRunSummary < Struct.new(
|
|
1323
|
+
:workflow_run_arn,
|
|
1324
|
+
:workflow_run_id,
|
|
1325
|
+
:status,
|
|
1326
|
+
:started_at,
|
|
1327
|
+
:ended_at,
|
|
1328
|
+
:trace_location)
|
|
1329
|
+
SENSITIVE = []
|
|
1330
|
+
include Aws::Structure
|
|
1331
|
+
end
|
|
1332
|
+
|
|
1333
|
+
end
|
|
1334
|
+
end
|
|
1335
|
+
|