aws-sdk-eventbridge 1.4.0 → 1.5.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 +4 -4
- data/lib/aws-sdk-eventbridge.rb +7 -4
- data/lib/aws-sdk-eventbridge/client.rb +61 -10
- data/lib/aws-sdk-eventbridge/client_api.rb +18 -0
- data/lib/aws-sdk-eventbridge/errors.rb +121 -0
- data/lib/aws-sdk-eventbridge/resource.rb +7 -0
- data/lib/aws-sdk-eventbridge/types.rb +62 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 876dd4587db02bc7880348778988defc98c8358e
|
4
|
+
data.tar.gz: 1d24e5f169264381b84f39a1763bb83af7585f74
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1a343623e3bd05d5c6e0861e68ae53549ebe8cd2b68662e7abd9327dbeba7c8ded62d39c1ce46bc0d842f9813fec859b3165239460ad3fe2581026bfdfc5b6d2
|
7
|
+
data.tar.gz: 8a9908ea8e3080fd59ab7bf71c1472ede0f5217d92fd77547fff908e305d53de3edf2619b81c9d906a56a7c13a0c50fa8184b34bdd5c9040879ba8e5c8793a3b
|
data/lib/aws-sdk-eventbridge.rb
CHANGED
@@ -24,17 +24,20 @@ require_relative 'aws-sdk-eventbridge/customizations'
|
|
24
24
|
# methods each accept a hash of request parameters and return a response
|
25
25
|
# structure.
|
26
26
|
#
|
27
|
+
# event_bridge = Aws::EventBridge::Client.new
|
28
|
+
# resp = event_bridge.activate_event_source(params)
|
29
|
+
#
|
27
30
|
# See {Client} for more information.
|
28
31
|
#
|
29
32
|
# # Errors
|
30
33
|
#
|
31
|
-
# Errors returned from Amazon EventBridge
|
32
|
-
# extend {Errors::ServiceError}.
|
34
|
+
# Errors returned from Amazon EventBridge are defined in the
|
35
|
+
# {Errors} module and all extend {Errors::ServiceError}.
|
33
36
|
#
|
34
37
|
# begin
|
35
38
|
# # do stuff
|
36
39
|
# rescue Aws::EventBridge::Errors::ServiceError
|
37
|
-
# # rescues all
|
40
|
+
# # rescues all Amazon EventBridge API errors
|
38
41
|
# end
|
39
42
|
#
|
40
43
|
# See {Errors} for more information.
|
@@ -42,6 +45,6 @@ require_relative 'aws-sdk-eventbridge/customizations'
|
|
42
45
|
# @service
|
43
46
|
module Aws::EventBridge
|
44
47
|
|
45
|
-
GEM_VERSION = '1.
|
48
|
+
GEM_VERSION = '1.5.0'
|
46
49
|
|
47
50
|
end
|
@@ -30,6 +30,18 @@ require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
|
|
30
30
|
Aws::Plugins::GlobalConfiguration.add_identifier(:eventbridge)
|
31
31
|
|
32
32
|
module Aws::EventBridge
|
33
|
+
# An API client for EventBridge. To construct a client, you need to configure a `:region` and `:credentials`.
|
34
|
+
#
|
35
|
+
# client = Aws::EventBridge::Client.new(
|
36
|
+
# region: region_name,
|
37
|
+
# credentials: credentials,
|
38
|
+
# # ...
|
39
|
+
# )
|
40
|
+
#
|
41
|
+
# For details on configuring region and credentials see
|
42
|
+
# the [developer guide](/sdk-for-ruby/v3/developer-guide/setup-config.html).
|
43
|
+
#
|
44
|
+
# See {#initialize} for a full list of supported configuration options.
|
33
45
|
class Client < Seahorse::Client::Base
|
34
46
|
|
35
47
|
include Aws::ClientStubs
|
@@ -108,6 +120,12 @@ module Aws::EventBridge
|
|
108
120
|
# When set to `true`, a thread polling for endpoints will be running in
|
109
121
|
# the background every 60 secs (default). Defaults to `false`.
|
110
122
|
#
|
123
|
+
# @option options [Boolean] :adaptive_retry_wait_to_fill (true)
|
124
|
+
# Used only in `adaptive` retry mode. When true, the request will sleep
|
125
|
+
# until there is sufficent client side capacity to retry the request.
|
126
|
+
# When false, the request will raise a `RetryCapacityNotAvailableError` and will
|
127
|
+
# not retry instead of sleeping.
|
128
|
+
#
|
111
129
|
# @option options [Boolean] :client_side_monitoring (false)
|
112
130
|
# When `true`, client-side metrics will be collected for all API requests from
|
113
131
|
# this client.
|
@@ -132,6 +150,10 @@ module Aws::EventBridge
|
|
132
150
|
# When `true`, an attempt is made to coerce request parameters into
|
133
151
|
# the required types.
|
134
152
|
#
|
153
|
+
# @option options [Boolean] :correct_clock_skew (true)
|
154
|
+
# Used only in `standard` and adaptive retry modes. Specifies whether to apply
|
155
|
+
# a clock skew correction and retry requests with skewed client clocks.
|
156
|
+
#
|
135
157
|
# @option options [Boolean] :disable_host_prefix_injection (false)
|
136
158
|
# Set to true to disable SDK automatically adding host prefix
|
137
159
|
# to default service endpoint when available.
|
@@ -166,15 +188,29 @@ module Aws::EventBridge
|
|
166
188
|
# The Logger instance to send log messages to. If this option
|
167
189
|
# is not set, logging will be disabled.
|
168
190
|
#
|
191
|
+
# @option options [Integer] :max_attempts (3)
|
192
|
+
# An integer representing the maximum number attempts that will be made for
|
193
|
+
# a single request, including the initial attempt. For example,
|
194
|
+
# setting this value to 5 will result in a request being retried up to
|
195
|
+
# 4 times. Used in `standard` and `adaptive` retry modes.
|
196
|
+
#
|
169
197
|
# @option options [String] :profile ("default")
|
170
198
|
# Used when loading credentials from the shared credentials file
|
171
199
|
# at HOME/.aws/credentials. When not specified, 'default' is used.
|
172
200
|
#
|
201
|
+
# @option options [Proc] :retry_backoff
|
202
|
+
# A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
|
203
|
+
# This option is only used in the `legacy` retry mode.
|
204
|
+
#
|
173
205
|
# @option options [Float] :retry_base_delay (0.3)
|
174
|
-
# The base delay in seconds used by the default backoff function.
|
206
|
+
# The base delay in seconds used by the default backoff function. This option
|
207
|
+
# is only used in the `legacy` retry mode.
|
175
208
|
#
|
176
209
|
# @option options [Symbol] :retry_jitter (:none)
|
177
|
-
# A delay randomiser function used by the default backoff function.
|
210
|
+
# A delay randomiser function used by the default backoff function.
|
211
|
+
# Some predefined functions can be referenced by name - :none, :equal, :full,
|
212
|
+
# otherwise a Proc that takes and returns a number. This option is only used
|
213
|
+
# in the `legacy` retry mode.
|
178
214
|
#
|
179
215
|
# @see https://www.awsarchitectureblog.com/2015/03/backoff.html
|
180
216
|
#
|
@@ -182,11 +218,26 @@ module Aws::EventBridge
|
|
182
218
|
# The maximum number of times to retry failed requests. Only
|
183
219
|
# ~ 500 level server errors and certain ~ 400 level client errors
|
184
220
|
# are retried. Generally, these are throttling errors, data
|
185
|
-
# checksum errors, networking errors, timeout errors
|
186
|
-
# errors from expired credentials.
|
221
|
+
# checksum errors, networking errors, timeout errors, auth errors,
|
222
|
+
# endpoint discovery, and errors from expired credentials.
|
223
|
+
# This option is only used in the `legacy` retry mode.
|
187
224
|
#
|
188
225
|
# @option options [Integer] :retry_max_delay (0)
|
189
|
-
# The maximum number of seconds to delay between retries (0 for no limit)
|
226
|
+
# The maximum number of seconds to delay between retries (0 for no limit)
|
227
|
+
# used by the default backoff function. This option is only used in the
|
228
|
+
# `legacy` retry mode.
|
229
|
+
#
|
230
|
+
# @option options [String] :retry_mode ("legacy")
|
231
|
+
# Specifies which retry algorithm to use. Values are:
|
232
|
+
# * `legacy` - The pre-existing retry behavior. This is default value if
|
233
|
+
# no retry mode is provided.
|
234
|
+
# * `standard` - A standardized set of retry rules across the AWS SDKs.
|
235
|
+
# This includes support for retry quotas, which limit the number of
|
236
|
+
# unsuccessful retries a client can make.
|
237
|
+
# * `adaptive` - An experimental retry mode that includes all the
|
238
|
+
# functionality of `standard` mode along with automatic client side
|
239
|
+
# throttling. This is a provisional mode that may change behavior
|
240
|
+
# in the future.
|
190
241
|
#
|
191
242
|
# @option options [String] :secret_access_key
|
192
243
|
#
|
@@ -219,16 +270,16 @@ module Aws::EventBridge
|
|
219
270
|
# requests through. Formatted like 'http://proxy.com:123'.
|
220
271
|
#
|
221
272
|
# @option options [Float] :http_open_timeout (15) The number of
|
222
|
-
# seconds to wait when opening a HTTP session before
|
273
|
+
# seconds to wait when opening a HTTP session before raising a
|
223
274
|
# `Timeout::Error`.
|
224
275
|
#
|
225
276
|
# @option options [Integer] :http_read_timeout (60) The default
|
226
277
|
# number of seconds to wait for response data. This value can
|
227
278
|
# safely be set
|
228
|
-
# per-request on the session
|
279
|
+
# per-request on the session yielded by {#session_for}.
|
229
280
|
#
|
230
281
|
# @option options [Float] :http_idle_timeout (5) The number of
|
231
|
-
# seconds a connection is allowed to sit
|
282
|
+
# seconds a connection is allowed to sit idle before it is
|
232
283
|
# considered stale. Stale connections are closed and removed
|
233
284
|
# from the pool before making a request.
|
234
285
|
#
|
@@ -237,7 +288,7 @@ module Aws::EventBridge
|
|
237
288
|
# request body. This option has no effect unless the request has
|
238
289
|
# "Expect" header set to "100-continue". Defaults to `nil` which
|
239
290
|
# disables this behaviour. This value can safely be set per
|
240
|
-
# request on the session
|
291
|
+
# request on the session yielded by {#session_for}.
|
241
292
|
#
|
242
293
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
243
294
|
# HTTP debug output will be sent to the `:logger`.
|
@@ -1913,7 +1964,7 @@ module Aws::EventBridge
|
|
1913
1964
|
params: params,
|
1914
1965
|
config: config)
|
1915
1966
|
context[:gem_name] = 'aws-sdk-eventbridge'
|
1916
|
-
context[:gem_version] = '1.
|
1967
|
+
context[:gem_version] = '1.5.0'
|
1917
1968
|
Seahorse::Client::Request.new(handlers, context)
|
1918
1969
|
end
|
1919
1970
|
|
@@ -185,6 +185,8 @@ module Aws::EventBridge
|
|
185
185
|
BatchRetryStrategy.add_member(:attempts, Shapes::ShapeRef.new(shape: Integer, location_name: "Attempts"))
|
186
186
|
BatchRetryStrategy.struct_class = Types::BatchRetryStrategy
|
187
187
|
|
188
|
+
ConcurrentModificationException.struct_class = Types::ConcurrentModificationException
|
189
|
+
|
188
190
|
Condition.add_member(:type, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Type"))
|
189
191
|
Condition.add_member(:key, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Key"))
|
190
192
|
Condition.add_member(:value, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Value"))
|
@@ -300,9 +302,17 @@ module Aws::EventBridge
|
|
300
302
|
InputTransformer.add_member(:input_template, Shapes::ShapeRef.new(shape: TransformerInput, required: true, location_name: "InputTemplate"))
|
301
303
|
InputTransformer.struct_class = Types::InputTransformer
|
302
304
|
|
305
|
+
InternalException.struct_class = Types::InternalException
|
306
|
+
|
307
|
+
InvalidEventPatternException.struct_class = Types::InvalidEventPatternException
|
308
|
+
|
309
|
+
InvalidStateException.struct_class = Types::InvalidStateException
|
310
|
+
|
303
311
|
KinesisParameters.add_member(:partition_key_path, Shapes::ShapeRef.new(shape: TargetPartitionKeyPath, required: true, location_name: "PartitionKeyPath"))
|
304
312
|
KinesisParameters.struct_class = Types::KinesisParameters
|
305
313
|
|
314
|
+
LimitExceededException.struct_class = Types::LimitExceededException
|
315
|
+
|
306
316
|
ListEventBusesRequest.add_member(:name_prefix, Shapes::ShapeRef.new(shape: EventBusName, location_name: "NamePrefix"))
|
307
317
|
ListEventBusesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
308
318
|
ListEventBusesRequest.add_member(:limit, Shapes::ShapeRef.new(shape: LimitMax100, location_name: "Limit"))
|
@@ -375,6 +385,8 @@ module Aws::EventBridge
|
|
375
385
|
ListTargetsByRuleResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
376
386
|
ListTargetsByRuleResponse.struct_class = Types::ListTargetsByRuleResponse
|
377
387
|
|
388
|
+
ManagedRuleException.struct_class = Types::ManagedRuleException
|
389
|
+
|
378
390
|
NetworkConfiguration.add_member(:awsvpc_configuration, Shapes::ShapeRef.new(shape: AwsVpcConfiguration, location_name: "awsvpcConfiguration"))
|
379
391
|
NetworkConfiguration.struct_class = Types::NetworkConfiguration
|
380
392
|
|
@@ -392,6 +404,8 @@ module Aws::EventBridge
|
|
392
404
|
|
393
405
|
PartnerEventSourceList.member = Shapes::ShapeRef.new(shape: PartnerEventSource)
|
394
406
|
|
407
|
+
PolicyLengthExceededException.struct_class = Types::PolicyLengthExceededException
|
408
|
+
|
395
409
|
PutEventsRequest.add_member(:entries, Shapes::ShapeRef.new(shape: PutEventsRequestEntryList, required: true, location_name: "Entries"))
|
396
410
|
PutEventsRequest.struct_class = Types::PutEventsRequest
|
397
411
|
|
@@ -496,6 +510,10 @@ module Aws::EventBridge
|
|
496
510
|
|
497
511
|
RemoveTargetsResultEntryList.member = Shapes::ShapeRef.new(shape: RemoveTargetsResultEntry)
|
498
512
|
|
513
|
+
ResourceAlreadyExistsException.struct_class = Types::ResourceAlreadyExistsException
|
514
|
+
|
515
|
+
ResourceNotFoundException.struct_class = Types::ResourceNotFoundException
|
516
|
+
|
499
517
|
Rule.add_member(:name, Shapes::ShapeRef.new(shape: RuleName, location_name: "Name"))
|
500
518
|
Rule.add_member(:arn, Shapes::ShapeRef.new(shape: RuleArn, location_name: "Arn"))
|
501
519
|
Rule.add_member(:event_pattern, Shapes::ShapeRef.new(shape: EventPattern, location_name: "EventPattern"))
|
@@ -6,9 +6,130 @@
|
|
6
6
|
# WARNING ABOUT GENERATED CODE
|
7
7
|
|
8
8
|
module Aws::EventBridge
|
9
|
+
|
10
|
+
# When EventBridge returns an error response, the Ruby SDK constructs and raises an error.
|
11
|
+
# These errors all extend Aws::EventBridge::Errors::ServiceError < {Aws::Errors::ServiceError}
|
12
|
+
#
|
13
|
+
# You can rescue all EventBridge errors using ServiceError:
|
14
|
+
#
|
15
|
+
# begin
|
16
|
+
# # do stuff
|
17
|
+
# rescue Aws::EventBridge::Errors::ServiceError
|
18
|
+
# # rescues all EventBridge API errors
|
19
|
+
# end
|
20
|
+
#
|
21
|
+
#
|
22
|
+
# ## Request Context
|
23
|
+
# ServiceError objects have a {Aws::Errors::ServiceError#context #context} method that returns
|
24
|
+
# information about the request that generated the error.
|
25
|
+
# See {Seahorse::Client::RequestContext} for more information.
|
26
|
+
#
|
27
|
+
# ## Error Classes
|
28
|
+
# * {ConcurrentModificationException}
|
29
|
+
# * {InternalException}
|
30
|
+
# * {InvalidEventPatternException}
|
31
|
+
# * {InvalidStateException}
|
32
|
+
# * {LimitExceededException}
|
33
|
+
# * {ManagedRuleException}
|
34
|
+
# * {PolicyLengthExceededException}
|
35
|
+
# * {ResourceAlreadyExistsException}
|
36
|
+
# * {ResourceNotFoundException}
|
37
|
+
#
|
38
|
+
# Additionally, error classes are dynamically generated for service errors based on the error code
|
39
|
+
# if they are not defined above.
|
9
40
|
module Errors
|
10
41
|
|
11
42
|
extend Aws::Errors::DynamicErrors
|
12
43
|
|
44
|
+
class ConcurrentModificationException < ServiceError
|
45
|
+
|
46
|
+
# @param [Seahorse::Client::RequestContext] context
|
47
|
+
# @param [String] message
|
48
|
+
# @param [Aws::EventBridge::Types::ConcurrentModificationException] data
|
49
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
50
|
+
super(context, message, data)
|
51
|
+
end
|
52
|
+
end
|
53
|
+
|
54
|
+
class InternalException < ServiceError
|
55
|
+
|
56
|
+
# @param [Seahorse::Client::RequestContext] context
|
57
|
+
# @param [String] message
|
58
|
+
# @param [Aws::EventBridge::Types::InternalException] data
|
59
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
60
|
+
super(context, message, data)
|
61
|
+
end
|
62
|
+
end
|
63
|
+
|
64
|
+
class InvalidEventPatternException < ServiceError
|
65
|
+
|
66
|
+
# @param [Seahorse::Client::RequestContext] context
|
67
|
+
# @param [String] message
|
68
|
+
# @param [Aws::EventBridge::Types::InvalidEventPatternException] data
|
69
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
70
|
+
super(context, message, data)
|
71
|
+
end
|
72
|
+
end
|
73
|
+
|
74
|
+
class InvalidStateException < ServiceError
|
75
|
+
|
76
|
+
# @param [Seahorse::Client::RequestContext] context
|
77
|
+
# @param [String] message
|
78
|
+
# @param [Aws::EventBridge::Types::InvalidStateException] data
|
79
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
80
|
+
super(context, message, data)
|
81
|
+
end
|
82
|
+
end
|
83
|
+
|
84
|
+
class LimitExceededException < ServiceError
|
85
|
+
|
86
|
+
# @param [Seahorse::Client::RequestContext] context
|
87
|
+
# @param [String] message
|
88
|
+
# @param [Aws::EventBridge::Types::LimitExceededException] data
|
89
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
90
|
+
super(context, message, data)
|
91
|
+
end
|
92
|
+
end
|
93
|
+
|
94
|
+
class ManagedRuleException < ServiceError
|
95
|
+
|
96
|
+
# @param [Seahorse::Client::RequestContext] context
|
97
|
+
# @param [String] message
|
98
|
+
# @param [Aws::EventBridge::Types::ManagedRuleException] data
|
99
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
100
|
+
super(context, message, data)
|
101
|
+
end
|
102
|
+
end
|
103
|
+
|
104
|
+
class PolicyLengthExceededException < ServiceError
|
105
|
+
|
106
|
+
# @param [Seahorse::Client::RequestContext] context
|
107
|
+
# @param [String] message
|
108
|
+
# @param [Aws::EventBridge::Types::PolicyLengthExceededException] data
|
109
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
110
|
+
super(context, message, data)
|
111
|
+
end
|
112
|
+
end
|
113
|
+
|
114
|
+
class ResourceAlreadyExistsException < ServiceError
|
115
|
+
|
116
|
+
# @param [Seahorse::Client::RequestContext] context
|
117
|
+
# @param [String] message
|
118
|
+
# @param [Aws::EventBridge::Types::ResourceAlreadyExistsException] data
|
119
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
120
|
+
super(context, message, data)
|
121
|
+
end
|
122
|
+
end
|
123
|
+
|
124
|
+
class ResourceNotFoundException < ServiceError
|
125
|
+
|
126
|
+
# @param [Seahorse::Client::RequestContext] context
|
127
|
+
# @param [String] message
|
128
|
+
# @param [Aws::EventBridge::Types::ResourceNotFoundException] data
|
129
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
130
|
+
super(context, message, data)
|
131
|
+
end
|
132
|
+
end
|
133
|
+
|
13
134
|
end
|
14
135
|
end
|
@@ -6,6 +6,13 @@
|
|
6
6
|
# WARNING ABOUT GENERATED CODE
|
7
7
|
|
8
8
|
module Aws::EventBridge
|
9
|
+
# This class provides a resource oriented interface for EventBridge.
|
10
|
+
# To create a resource object:
|
11
|
+
# resource = Aws::EventBridge::Resource.new(region: 'us-west-2')
|
12
|
+
# You can supply a client object with custom configuration that will be used for all resource operations.
|
13
|
+
# If you do not pass +:client+, a default client will be constructed.
|
14
|
+
# client = Aws::EventBridge::Client.new(region: 'us-west-2')
|
15
|
+
# resource = Aws::EventBridge::Resource.new(client: client)
|
9
16
|
class Resource
|
10
17
|
|
11
18
|
# @param options ({})
|
@@ -164,6 +164,12 @@ module Aws::EventBridge
|
|
164
164
|
include Aws::Structure
|
165
165
|
end
|
166
166
|
|
167
|
+
# There is concurrent modification on a rule or target.
|
168
|
+
#
|
169
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/eventbridge-2015-10-07/ConcurrentModificationException AWS API Documentation
|
170
|
+
#
|
171
|
+
class ConcurrentModificationException < Aws::EmptyStructure; end
|
172
|
+
|
167
173
|
# A JSON string which you can use to limit the event bus permissions you
|
168
174
|
# are granting to only accounts that fulfill the condition. Currently,
|
169
175
|
# the only supported condition is membership in a certain AWS
|
@@ -907,6 +913,24 @@ module Aws::EventBridge
|
|
907
913
|
include Aws::Structure
|
908
914
|
end
|
909
915
|
|
916
|
+
# This exception occurs due to unexpected causes.
|
917
|
+
#
|
918
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/eventbridge-2015-10-07/InternalException AWS API Documentation
|
919
|
+
#
|
920
|
+
class InternalException < Aws::EmptyStructure; end
|
921
|
+
|
922
|
+
# The event pattern is not valid.
|
923
|
+
#
|
924
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/eventbridge-2015-10-07/InvalidEventPatternException AWS API Documentation
|
925
|
+
#
|
926
|
+
class InvalidEventPatternException < Aws::EmptyStructure; end
|
927
|
+
|
928
|
+
# The specified state is not a valid state for an event source.
|
929
|
+
#
|
930
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/eventbridge-2015-10-07/InvalidStateException AWS API Documentation
|
931
|
+
#
|
932
|
+
class InvalidStateException < Aws::EmptyStructure; end
|
933
|
+
|
910
934
|
# This object enables you to specify a JSON path to extract from the
|
911
935
|
# event and use as the partition key for the Amazon Kinesis data stream,
|
912
936
|
# so that you can control the shard to which the event goes. If you do
|
@@ -937,6 +961,13 @@ module Aws::EventBridge
|
|
937
961
|
include Aws::Structure
|
938
962
|
end
|
939
963
|
|
964
|
+
# You tried to create more rules or add more targets to a rule than is
|
965
|
+
# allowed.
|
966
|
+
#
|
967
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/eventbridge-2015-10-07/LimitExceededException AWS API Documentation
|
968
|
+
#
|
969
|
+
class LimitExceededException < Aws::EmptyStructure; end
|
970
|
+
|
940
971
|
# @note When making an API call, you may pass ListEventBusesRequest
|
941
972
|
# data as a hash:
|
942
973
|
#
|
@@ -1336,6 +1367,18 @@ module Aws::EventBridge
|
|
1336
1367
|
include Aws::Structure
|
1337
1368
|
end
|
1338
1369
|
|
1370
|
+
# This rule was created by an AWS service on behalf of your account. It
|
1371
|
+
# is managed by that service. If you see this error in response to
|
1372
|
+
# `DeleteRule` or `RemoveTargets`, you can use the `Force` parameter in
|
1373
|
+
# those calls to delete the rule or remove targets from the rule. You
|
1374
|
+
# cannot modify these managed rules by using `DisableRule`,
|
1375
|
+
# `EnableRule`, `PutTargets`, `PutRule`, `TagResource`, or
|
1376
|
+
# `UntagResource`.
|
1377
|
+
#
|
1378
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/eventbridge-2015-10-07/ManagedRuleException AWS API Documentation
|
1379
|
+
#
|
1380
|
+
class ManagedRuleException < Aws::EmptyStructure; end
|
1381
|
+
|
1339
1382
|
# This structure specifies the network configuration for an ECS task.
|
1340
1383
|
#
|
1341
1384
|
# @note When making an API call, you may pass NetworkConfiguration
|
@@ -1418,6 +1461,13 @@ module Aws::EventBridge
|
|
1418
1461
|
include Aws::Structure
|
1419
1462
|
end
|
1420
1463
|
|
1464
|
+
# The event bus policy is too long. For more information, see the
|
1465
|
+
# limits.
|
1466
|
+
#
|
1467
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/eventbridge-2015-10-07/PolicyLengthExceededException AWS API Documentation
|
1468
|
+
#
|
1469
|
+
class PolicyLengthExceededException < Aws::EmptyStructure; end
|
1470
|
+
|
1421
1471
|
# @note When making an API call, you may pass PutEventsRequest
|
1422
1472
|
# data as a hash:
|
1423
1473
|
#
|
@@ -2054,6 +2104,18 @@ module Aws::EventBridge
|
|
2054
2104
|
include Aws::Structure
|
2055
2105
|
end
|
2056
2106
|
|
2107
|
+
# The resource you are trying to create already exists.
|
2108
|
+
#
|
2109
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/eventbridge-2015-10-07/ResourceAlreadyExistsException AWS API Documentation
|
2110
|
+
#
|
2111
|
+
class ResourceAlreadyExistsException < Aws::EmptyStructure; end
|
2112
|
+
|
2113
|
+
# An entity that you specified does not exist.
|
2114
|
+
#
|
2115
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/eventbridge-2015-10-07/ResourceNotFoundException AWS API Documentation
|
2116
|
+
#
|
2117
|
+
class ResourceNotFoundException < Aws::EmptyStructure; end
|
2118
|
+
|
2057
2119
|
# Contains information about a rule in Amazon EventBridge.
|
2058
2120
|
#
|
2059
2121
|
# @!attribute [rw] name
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-eventbridge
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.5.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: 2020-
|
11
|
+
date: 2020-03-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|