aws-sdk-states 1.72.0 → 1.73.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-states/client.rb +109 -12
- data/lib/aws-sdk-states/client_api.rb +82 -0
- data/lib/aws-sdk-states/errors.rb +85 -0
- data/lib/aws-sdk-states/types.rb +219 -10
- data/lib/aws-sdk-states.rb +1 -1
- data/sig/client.rbs +29 -7
- data/sig/errors.rbs +16 -0
- data/sig/types.rbs +43 -0
- metadata +2 -2
data/sig/types.rbs
CHANGED
@@ -8,6 +8,11 @@
|
|
8
8
|
module Aws::States
|
9
9
|
module Types
|
10
10
|
|
11
|
+
class ActivityAlreadyExists
|
12
|
+
attr_accessor message: ::String
|
13
|
+
SENSITIVE: []
|
14
|
+
end
|
15
|
+
|
11
16
|
class ActivityDoesNotExist
|
12
17
|
attr_accessor message: ::String
|
13
18
|
SENSITIVE: []
|
@@ -92,6 +97,7 @@ module Aws::States
|
|
92
97
|
class CreateActivityInput
|
93
98
|
attr_accessor name: ::String
|
94
99
|
attr_accessor tags: ::Array[Types::Tag]
|
100
|
+
attr_accessor encryption_configuration: Types::EncryptionConfiguration
|
95
101
|
SENSITIVE: []
|
96
102
|
end
|
97
103
|
|
@@ -124,6 +130,7 @@ module Aws::States
|
|
124
130
|
attr_accessor tracing_configuration: Types::TracingConfiguration
|
125
131
|
attr_accessor publish: bool
|
126
132
|
attr_accessor version_description: ::String
|
133
|
+
attr_accessor encryption_configuration: Types::EncryptionConfiguration
|
127
134
|
SENSITIVE: [:definition, :version_description]
|
128
135
|
end
|
129
136
|
|
@@ -175,11 +182,13 @@ module Aws::States
|
|
175
182
|
attr_accessor activity_arn: ::String
|
176
183
|
attr_accessor name: ::String
|
177
184
|
attr_accessor creation_date: ::Time
|
185
|
+
attr_accessor encryption_configuration: Types::EncryptionConfiguration
|
178
186
|
SENSITIVE: []
|
179
187
|
end
|
180
188
|
|
181
189
|
class DescribeExecutionInput
|
182
190
|
attr_accessor execution_arn: ::String
|
191
|
+
attr_accessor included_data: ("ALL_DATA" | "METADATA_ONLY")
|
183
192
|
SENSITIVE: []
|
184
193
|
end
|
185
194
|
|
@@ -245,6 +254,7 @@ module Aws::States
|
|
245
254
|
|
246
255
|
class DescribeStateMachineForExecutionInput
|
247
256
|
attr_accessor execution_arn: ::String
|
257
|
+
attr_accessor included_data: ("ALL_DATA" | "METADATA_ONLY")
|
248
258
|
SENSITIVE: []
|
249
259
|
end
|
250
260
|
|
@@ -259,11 +269,13 @@ module Aws::States
|
|
259
269
|
attr_accessor map_run_arn: ::String
|
260
270
|
attr_accessor label: ::String
|
261
271
|
attr_accessor revision_id: ::String
|
272
|
+
attr_accessor encryption_configuration: Types::EncryptionConfiguration
|
262
273
|
SENSITIVE: [:definition]
|
263
274
|
end
|
264
275
|
|
265
276
|
class DescribeStateMachineInput
|
266
277
|
attr_accessor state_machine_arn: ::String
|
278
|
+
attr_accessor included_data: ("ALL_DATA" | "METADATA_ONLY")
|
267
279
|
SENSITIVE: []
|
268
280
|
end
|
269
281
|
|
@@ -280,9 +292,17 @@ module Aws::States
|
|
280
292
|
attr_accessor label: ::String
|
281
293
|
attr_accessor revision_id: ::String
|
282
294
|
attr_accessor description: ::String
|
295
|
+
attr_accessor encryption_configuration: Types::EncryptionConfiguration
|
283
296
|
SENSITIVE: [:definition, :description]
|
284
297
|
end
|
285
298
|
|
299
|
+
class EncryptionConfiguration
|
300
|
+
attr_accessor kms_key_id: ::String
|
301
|
+
attr_accessor kms_data_key_reuse_period_seconds: ::Integer
|
302
|
+
attr_accessor type: ("AWS_OWNED_KEY" | "CUSTOMER_MANAGED_KMS_KEY")
|
303
|
+
SENSITIVE: []
|
304
|
+
end
|
305
|
+
|
286
306
|
class ExecutionAbortedEventDetails
|
287
307
|
attr_accessor error: ::String
|
288
308
|
attr_accessor cause: ::String
|
@@ -473,6 +493,11 @@ module Aws::States
|
|
473
493
|
SENSITIVE: []
|
474
494
|
end
|
475
495
|
|
496
|
+
class InvalidEncryptionConfiguration
|
497
|
+
attr_accessor message: ::String
|
498
|
+
SENSITIVE: []
|
499
|
+
end
|
500
|
+
|
476
501
|
class InvalidExecutionInput
|
477
502
|
attr_accessor message: ::String
|
478
503
|
SENSITIVE: []
|
@@ -503,6 +528,22 @@ module Aws::States
|
|
503
528
|
SENSITIVE: []
|
504
529
|
end
|
505
530
|
|
531
|
+
class KmsAccessDeniedException
|
532
|
+
attr_accessor message: ::String
|
533
|
+
SENSITIVE: []
|
534
|
+
end
|
535
|
+
|
536
|
+
class KmsInvalidStateException
|
537
|
+
attr_accessor kms_key_state: ("DISABLED" | "PENDING_DELETION" | "PENDING_IMPORT" | "UNAVAILABLE" | "CREATING")
|
538
|
+
attr_accessor message: ::String
|
539
|
+
SENSITIVE: []
|
540
|
+
end
|
541
|
+
|
542
|
+
class KmsThrottlingException
|
543
|
+
attr_accessor message: ::String
|
544
|
+
SENSITIVE: []
|
545
|
+
end
|
546
|
+
|
506
547
|
class LambdaFunctionFailedEventDetails
|
507
548
|
attr_accessor error: ::String
|
508
549
|
attr_accessor cause: ::String
|
@@ -800,6 +841,7 @@ module Aws::States
|
|
800
841
|
attr_accessor name: ::String
|
801
842
|
attr_accessor input: ::String
|
802
843
|
attr_accessor trace_header: ::String
|
844
|
+
attr_accessor included_data: ("ALL_DATA" | "METADATA_ONLY")
|
803
845
|
SENSITIVE: [:input]
|
804
846
|
end
|
805
847
|
|
@@ -1057,6 +1099,7 @@ module Aws::States
|
|
1057
1099
|
attr_accessor tracing_configuration: Types::TracingConfiguration
|
1058
1100
|
attr_accessor publish: bool
|
1059
1101
|
attr_accessor version_description: ::String
|
1102
|
+
attr_accessor encryption_configuration: Types::EncryptionConfiguration
|
1060
1103
|
SENSITIVE: [:definition, :version_description]
|
1061
1104
|
end
|
1062
1105
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-states
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.73.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-07-
|
11
|
+
date: 2024-07-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|