aws-sdk-eventbridge 1.40.0 → 1.42.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/CHANGELOG.md +13 -1
- data/VERSION +1 -1
- data/lib/aws-sdk-eventbridge/client.rb +26 -16
- data/lib/aws-sdk-eventbridge/endpoint_parameters.rb +3 -0
- data/lib/aws-sdk-eventbridge/endpoint_provider.rb +60 -142
- data/lib/aws-sdk-eventbridge/types.rb +74 -1610
- data/lib/aws-sdk-eventbridge.rb +1 -1
- metadata +2 -2
@@ -10,13 +10,6 @@
|
|
10
10
|
module Aws::EventBridge
|
11
11
|
module Types
|
12
12
|
|
13
|
-
# @note When making an API call, you may pass ActivateEventSourceRequest
|
14
|
-
# data as a hash:
|
15
|
-
#
|
16
|
-
# {
|
17
|
-
# name: "EventSourceName", # required
|
18
|
-
# }
|
19
|
-
#
|
20
13
|
# @!attribute [rw] name
|
21
14
|
# The name of the partner event source to activate.
|
22
15
|
# @return [String]
|
@@ -141,15 +134,6 @@ module Aws::EventBridge
|
|
141
134
|
# task, and whether a public IP address is to be used. This structure is
|
142
135
|
# relevant only for ECS tasks that use the `awsvpc` network mode.
|
143
136
|
#
|
144
|
-
# @note When making an API call, you may pass AwsVpcConfiguration
|
145
|
-
# data as a hash:
|
146
|
-
#
|
147
|
-
# {
|
148
|
-
# subnets: ["String"], # required
|
149
|
-
# security_groups: ["String"],
|
150
|
-
# assign_public_ip: "ENABLED", # accepts ENABLED, DISABLED
|
151
|
-
# }
|
152
|
-
#
|
153
137
|
# @!attribute [rw] subnets
|
154
138
|
# Specifies the subnets associated with the task. These subnets must
|
155
139
|
# all be in the same VPC. You can specify as many as 16 subnets.
|
@@ -183,13 +167,6 @@ module Aws::EventBridge
|
|
183
167
|
# array properties for a job, it becomes an array job. This parameter is
|
184
168
|
# used only if the target is an Batch job.
|
185
169
|
#
|
186
|
-
# @note When making an API call, you may pass BatchArrayProperties
|
187
|
-
# data as a hash:
|
188
|
-
#
|
189
|
-
# {
|
190
|
-
# size: 1,
|
191
|
-
# }
|
192
|
-
#
|
193
170
|
# @!attribute [rw] size
|
194
171
|
# The size of the array, if this is an array batch job. Valid values
|
195
172
|
# are integers between 2 and 10,000.
|
@@ -205,20 +182,6 @@ module Aws::EventBridge
|
|
205
182
|
|
206
183
|
# The custom parameters to be used when the target is an Batch job.
|
207
184
|
#
|
208
|
-
# @note When making an API call, you may pass BatchParameters
|
209
|
-
# data as a hash:
|
210
|
-
#
|
211
|
-
# {
|
212
|
-
# job_definition: "String", # required
|
213
|
-
# job_name: "String", # required
|
214
|
-
# array_properties: {
|
215
|
-
# size: 1,
|
216
|
-
# },
|
217
|
-
# retry_strategy: {
|
218
|
-
# attempts: 1,
|
219
|
-
# },
|
220
|
-
# }
|
221
|
-
#
|
222
185
|
# @!attribute [rw] job_definition
|
223
186
|
# The ARN or name of the job definition to use if the event target is
|
224
187
|
# an Batch job. This job definition must already exist.
|
@@ -259,13 +222,6 @@ module Aws::EventBridge
|
|
259
222
|
# job. If you specify a retry strategy here, it overrides the retry
|
260
223
|
# strategy defined in the job definition.
|
261
224
|
#
|
262
|
-
# @note When making an API call, you may pass BatchRetryStrategy
|
263
|
-
# data as a hash:
|
264
|
-
#
|
265
|
-
# {
|
266
|
-
# attempts: 1,
|
267
|
-
# }
|
268
|
-
#
|
269
225
|
# @!attribute [rw] attempts
|
270
226
|
# The number of times to attempt to retry, if the job fails. Valid
|
271
227
|
# values are 1–10.
|
@@ -279,13 +235,6 @@ module Aws::EventBridge
|
|
279
235
|
include Aws::Structure
|
280
236
|
end
|
281
237
|
|
282
|
-
# @note When making an API call, you may pass CancelReplayRequest
|
283
|
-
# data as a hash:
|
284
|
-
#
|
285
|
-
# {
|
286
|
-
# replay_name: "ReplayName", # required
|
287
|
-
# }
|
288
|
-
#
|
289
238
|
# @!attribute [rw] replay_name
|
290
239
|
# The name of the replay to cancel.
|
291
240
|
# @return [String]
|
@@ -327,15 +276,6 @@ module Aws::EventBridge
|
|
327
276
|
#
|
328
277
|
# [1]: https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_CapacityProviderStrategyItem.html
|
329
278
|
#
|
330
|
-
# @note When making an API call, you may pass CapacityProviderStrategyItem
|
331
|
-
# data as a hash:
|
332
|
-
#
|
333
|
-
# {
|
334
|
-
# capacity_provider: "CapacityProvider", # required
|
335
|
-
# weight: 1,
|
336
|
-
# base: 1,
|
337
|
-
# }
|
338
|
-
#
|
339
279
|
# @!attribute [rw] capacity_provider
|
340
280
|
# The short name of the capacity provider.
|
341
281
|
# @return [String]
|
@@ -381,15 +321,6 @@ module Aws::EventBridge
|
|
381
321
|
# `'\{"Type" : "StringEquals", "Key": "aws:PrincipalOrgID", "Value":
|
382
322
|
# "o-1234567890"\}'`
|
383
323
|
#
|
384
|
-
# @note When making an API call, you may pass Condition
|
385
|
-
# data as a hash:
|
386
|
-
#
|
387
|
-
# {
|
388
|
-
# type: "String", # required
|
389
|
-
# key: "String", # required
|
390
|
-
# value: "String", # required
|
391
|
-
# }
|
392
|
-
#
|
393
324
|
# @!attribute [rw] type
|
394
325
|
# Specifies the type of condition. Currently the only supported value
|
395
326
|
# is `StringEquals`.
|
@@ -435,6 +366,10 @@ module Aws::EventBridge
|
|
435
366
|
#
|
436
367
|
# @!attribute [rw] authorization_type
|
437
368
|
# The authorization type specified for the connection.
|
369
|
+
#
|
370
|
+
# <note markdown="1"> OAUTH tokens are refreshed when a 401 or 407 response is returned.
|
371
|
+
#
|
372
|
+
# </note>
|
438
373
|
# @return [String]
|
439
374
|
#
|
440
375
|
# @!attribute [rw] creation_time
|
@@ -529,15 +464,6 @@ module Aws::EventBridge
|
|
529
464
|
# additional body parameters per request. An event payload cannot exceed
|
530
465
|
# 64 KB.
|
531
466
|
#
|
532
|
-
# @note When making an API call, you may pass ConnectionBodyParameter
|
533
|
-
# data as a hash:
|
534
|
-
#
|
535
|
-
# {
|
536
|
-
# key: "String",
|
537
|
-
# value: "String",
|
538
|
-
# is_value_secret: false,
|
539
|
-
# }
|
540
|
-
#
|
541
467
|
# @!attribute [rw] key
|
542
468
|
# The key for the parameter.
|
543
469
|
# @return [String]
|
@@ -564,15 +490,6 @@ module Aws::EventBridge
|
|
564
490
|
# additional header parameters per request. An event payload cannot
|
565
491
|
# exceed 64 KB.
|
566
492
|
#
|
567
|
-
# @note When making an API call, you may pass ConnectionHeaderParameter
|
568
|
-
# data as a hash:
|
569
|
-
#
|
570
|
-
# {
|
571
|
-
# key: "HeaderKey",
|
572
|
-
# value: "HeaderValue",
|
573
|
-
# is_value_secret: false,
|
574
|
-
# }
|
575
|
-
#
|
576
493
|
# @!attribute [rw] key
|
577
494
|
# The key for the parameter.
|
578
495
|
# @return [String]
|
@@ -597,33 +514,6 @@ module Aws::EventBridge
|
|
597
514
|
|
598
515
|
# Contains additional parameters for the connection.
|
599
516
|
#
|
600
|
-
# @note When making an API call, you may pass ConnectionHttpParameters
|
601
|
-
# data as a hash:
|
602
|
-
#
|
603
|
-
# {
|
604
|
-
# header_parameters: [
|
605
|
-
# {
|
606
|
-
# key: "HeaderKey",
|
607
|
-
# value: "HeaderValue",
|
608
|
-
# is_value_secret: false,
|
609
|
-
# },
|
610
|
-
# ],
|
611
|
-
# query_string_parameters: [
|
612
|
-
# {
|
613
|
-
# key: "QueryStringKey",
|
614
|
-
# value: "QueryStringValue",
|
615
|
-
# is_value_secret: false,
|
616
|
-
# },
|
617
|
-
# ],
|
618
|
-
# body_parameters: [
|
619
|
-
# {
|
620
|
-
# key: "String",
|
621
|
-
# value: "String",
|
622
|
-
# is_value_secret: false,
|
623
|
-
# },
|
624
|
-
# ],
|
625
|
-
# }
|
626
|
-
#
|
627
517
|
# @!attribute [rw] header_parameters
|
628
518
|
# Contains additional header parameters for the connection.
|
629
519
|
# @return [Array<Types::ConnectionHeaderParameter>]
|
@@ -700,15 +590,6 @@ module Aws::EventBridge
|
|
700
590
|
# additional parameter counts towards the event payload size, which
|
701
591
|
# cannot exceed 64 KB.
|
702
592
|
#
|
703
|
-
# @note When making an API call, you may pass ConnectionQueryStringParameter
|
704
|
-
# data as a hash:
|
705
|
-
#
|
706
|
-
# {
|
707
|
-
# key: "QueryStringKey",
|
708
|
-
# value: "QueryStringValue",
|
709
|
-
# is_value_secret: false,
|
710
|
-
# }
|
711
|
-
#
|
712
593
|
# @!attribute [rw] key
|
713
594
|
# The key for a query string parameter.
|
714
595
|
# @return [String]
|
@@ -731,18 +612,6 @@ module Aws::EventBridge
|
|
731
612
|
include Aws::Structure
|
732
613
|
end
|
733
614
|
|
734
|
-
# @note When making an API call, you may pass CreateApiDestinationRequest
|
735
|
-
# data as a hash:
|
736
|
-
#
|
737
|
-
# {
|
738
|
-
# name: "ApiDestinationName", # required
|
739
|
-
# description: "ApiDestinationDescription",
|
740
|
-
# connection_arn: "ConnectionArn", # required
|
741
|
-
# invocation_endpoint: "HttpsEndpoint", # required
|
742
|
-
# http_method: "POST", # required, accepts POST, GET, HEAD, OPTIONS, PUT, PATCH, DELETE
|
743
|
-
# invocation_rate_limit_per_second: 1,
|
744
|
-
# }
|
745
|
-
#
|
746
615
|
# @!attribute [rw] name
|
747
616
|
# The name for the API destination to create.
|
748
617
|
# @return [String]
|
@@ -812,17 +681,6 @@ module Aws::EventBridge
|
|
812
681
|
include Aws::Structure
|
813
682
|
end
|
814
683
|
|
815
|
-
# @note When making an API call, you may pass CreateArchiveRequest
|
816
|
-
# data as a hash:
|
817
|
-
#
|
818
|
-
# {
|
819
|
-
# archive_name: "ArchiveName", # required
|
820
|
-
# event_source_arn: "Arn", # required
|
821
|
-
# description: "ArchiveDescription",
|
822
|
-
# event_pattern: "EventPattern",
|
823
|
-
# retention_days: 1,
|
824
|
-
# }
|
825
|
-
#
|
826
684
|
# @!attribute [rw] archive_name
|
827
685
|
# The name for the archive to create.
|
828
686
|
# @return [String]
|
@@ -885,14 +743,6 @@ module Aws::EventBridge
|
|
885
743
|
|
886
744
|
# Contains the API key authorization parameters for the connection.
|
887
745
|
#
|
888
|
-
# @note When making an API call, you may pass CreateConnectionApiKeyAuthRequestParameters
|
889
|
-
# data as a hash:
|
890
|
-
#
|
891
|
-
# {
|
892
|
-
# api_key_name: "AuthHeaderParameters", # required
|
893
|
-
# api_key_value: "AuthHeaderParameters", # required
|
894
|
-
# }
|
895
|
-
#
|
896
746
|
# @!attribute [rw] api_key_name
|
897
747
|
# The name of the API key to use for authorization.
|
898
748
|
# @return [String]
|
@@ -912,74 +762,6 @@ module Aws::EventBridge
|
|
912
762
|
|
913
763
|
# Contains the authorization parameters for the connection.
|
914
764
|
#
|
915
|
-
# @note When making an API call, you may pass CreateConnectionAuthRequestParameters
|
916
|
-
# data as a hash:
|
917
|
-
#
|
918
|
-
# {
|
919
|
-
# basic_auth_parameters: {
|
920
|
-
# username: "AuthHeaderParameters", # required
|
921
|
-
# password: "AuthHeaderParameters", # required
|
922
|
-
# },
|
923
|
-
# o_auth_parameters: {
|
924
|
-
# client_parameters: { # required
|
925
|
-
# client_id: "AuthHeaderParameters", # required
|
926
|
-
# client_secret: "AuthHeaderParameters", # required
|
927
|
-
# },
|
928
|
-
# authorization_endpoint: "HttpsEndpoint", # required
|
929
|
-
# http_method: "GET", # required, accepts GET, POST, PUT
|
930
|
-
# o_auth_http_parameters: {
|
931
|
-
# header_parameters: [
|
932
|
-
# {
|
933
|
-
# key: "HeaderKey",
|
934
|
-
# value: "HeaderValue",
|
935
|
-
# is_value_secret: false,
|
936
|
-
# },
|
937
|
-
# ],
|
938
|
-
# query_string_parameters: [
|
939
|
-
# {
|
940
|
-
# key: "QueryStringKey",
|
941
|
-
# value: "QueryStringValue",
|
942
|
-
# is_value_secret: false,
|
943
|
-
# },
|
944
|
-
# ],
|
945
|
-
# body_parameters: [
|
946
|
-
# {
|
947
|
-
# key: "String",
|
948
|
-
# value: "String",
|
949
|
-
# is_value_secret: false,
|
950
|
-
# },
|
951
|
-
# ],
|
952
|
-
# },
|
953
|
-
# },
|
954
|
-
# api_key_auth_parameters: {
|
955
|
-
# api_key_name: "AuthHeaderParameters", # required
|
956
|
-
# api_key_value: "AuthHeaderParameters", # required
|
957
|
-
# },
|
958
|
-
# invocation_http_parameters: {
|
959
|
-
# header_parameters: [
|
960
|
-
# {
|
961
|
-
# key: "HeaderKey",
|
962
|
-
# value: "HeaderValue",
|
963
|
-
# is_value_secret: false,
|
964
|
-
# },
|
965
|
-
# ],
|
966
|
-
# query_string_parameters: [
|
967
|
-
# {
|
968
|
-
# key: "QueryStringKey",
|
969
|
-
# value: "QueryStringValue",
|
970
|
-
# is_value_secret: false,
|
971
|
-
# },
|
972
|
-
# ],
|
973
|
-
# body_parameters: [
|
974
|
-
# {
|
975
|
-
# key: "String",
|
976
|
-
# value: "String",
|
977
|
-
# is_value_secret: false,
|
978
|
-
# },
|
979
|
-
# ],
|
980
|
-
# },
|
981
|
-
# }
|
982
|
-
#
|
983
765
|
# @!attribute [rw] basic_auth_parameters
|
984
766
|
# A `CreateConnectionBasicAuthRequestParameters` object that contains
|
985
767
|
# the Basic authorization parameters to use for the connection.
|
@@ -1016,14 +798,6 @@ module Aws::EventBridge
|
|
1016
798
|
|
1017
799
|
# Contains the Basic authorization parameters to use for the connection.
|
1018
800
|
#
|
1019
|
-
# @note When making an API call, you may pass CreateConnectionBasicAuthRequestParameters
|
1020
|
-
# data as a hash:
|
1021
|
-
#
|
1022
|
-
# {
|
1023
|
-
# username: "AuthHeaderParameters", # required
|
1024
|
-
# password: "AuthHeaderParameters", # required
|
1025
|
-
# }
|
1026
|
-
#
|
1027
801
|
# @!attribute [rw] username
|
1028
802
|
# The user name to use for Basic authorization.
|
1029
803
|
# @return [String]
|
@@ -1044,14 +818,6 @@ module Aws::EventBridge
|
|
1044
818
|
|
1045
819
|
# Contains the Basic authorization parameters to use for the connection.
|
1046
820
|
#
|
1047
|
-
# @note When making an API call, you may pass CreateConnectionOAuthClientRequestParameters
|
1048
|
-
# data as a hash:
|
1049
|
-
#
|
1050
|
-
# {
|
1051
|
-
# client_id: "AuthHeaderParameters", # required
|
1052
|
-
# client_secret: "AuthHeaderParameters", # required
|
1053
|
-
# }
|
1054
|
-
#
|
1055
821
|
# @!attribute [rw] client_id
|
1056
822
|
# The client ID to use for OAuth authorization for the connection.
|
1057
823
|
# @return [String]
|
@@ -1072,41 +838,6 @@ module Aws::EventBridge
|
|
1072
838
|
|
1073
839
|
# Contains the OAuth authorization parameters to use for the connection.
|
1074
840
|
#
|
1075
|
-
# @note When making an API call, you may pass CreateConnectionOAuthRequestParameters
|
1076
|
-
# data as a hash:
|
1077
|
-
#
|
1078
|
-
# {
|
1079
|
-
# client_parameters: { # required
|
1080
|
-
# client_id: "AuthHeaderParameters", # required
|
1081
|
-
# client_secret: "AuthHeaderParameters", # required
|
1082
|
-
# },
|
1083
|
-
# authorization_endpoint: "HttpsEndpoint", # required
|
1084
|
-
# http_method: "GET", # required, accepts GET, POST, PUT
|
1085
|
-
# o_auth_http_parameters: {
|
1086
|
-
# header_parameters: [
|
1087
|
-
# {
|
1088
|
-
# key: "HeaderKey",
|
1089
|
-
# value: "HeaderValue",
|
1090
|
-
# is_value_secret: false,
|
1091
|
-
# },
|
1092
|
-
# ],
|
1093
|
-
# query_string_parameters: [
|
1094
|
-
# {
|
1095
|
-
# key: "QueryStringKey",
|
1096
|
-
# value: "QueryStringValue",
|
1097
|
-
# is_value_secret: false,
|
1098
|
-
# },
|
1099
|
-
# ],
|
1100
|
-
# body_parameters: [
|
1101
|
-
# {
|
1102
|
-
# key: "String",
|
1103
|
-
# value: "String",
|
1104
|
-
# is_value_secret: false,
|
1105
|
-
# },
|
1106
|
-
# ],
|
1107
|
-
# },
|
1108
|
-
# }
|
1109
|
-
#
|
1110
841
|
# @!attribute [rw] client_parameters
|
1111
842
|
# A `CreateConnectionOAuthClientRequestParameters` object that
|
1112
843
|
# contains the client parameters for OAuth authorization.
|
@@ -1137,79 +868,6 @@ module Aws::EventBridge
|
|
1137
868
|
include Aws::Structure
|
1138
869
|
end
|
1139
870
|
|
1140
|
-
# @note When making an API call, you may pass CreateConnectionRequest
|
1141
|
-
# data as a hash:
|
1142
|
-
#
|
1143
|
-
# {
|
1144
|
-
# name: "ConnectionName", # required
|
1145
|
-
# description: "ConnectionDescription",
|
1146
|
-
# authorization_type: "BASIC", # required, accepts BASIC, OAUTH_CLIENT_CREDENTIALS, API_KEY
|
1147
|
-
# auth_parameters: { # required
|
1148
|
-
# basic_auth_parameters: {
|
1149
|
-
# username: "AuthHeaderParameters", # required
|
1150
|
-
# password: "AuthHeaderParameters", # required
|
1151
|
-
# },
|
1152
|
-
# o_auth_parameters: {
|
1153
|
-
# client_parameters: { # required
|
1154
|
-
# client_id: "AuthHeaderParameters", # required
|
1155
|
-
# client_secret: "AuthHeaderParameters", # required
|
1156
|
-
# },
|
1157
|
-
# authorization_endpoint: "HttpsEndpoint", # required
|
1158
|
-
# http_method: "GET", # required, accepts GET, POST, PUT
|
1159
|
-
# o_auth_http_parameters: {
|
1160
|
-
# header_parameters: [
|
1161
|
-
# {
|
1162
|
-
# key: "HeaderKey",
|
1163
|
-
# value: "HeaderValue",
|
1164
|
-
# is_value_secret: false,
|
1165
|
-
# },
|
1166
|
-
# ],
|
1167
|
-
# query_string_parameters: [
|
1168
|
-
# {
|
1169
|
-
# key: "QueryStringKey",
|
1170
|
-
# value: "QueryStringValue",
|
1171
|
-
# is_value_secret: false,
|
1172
|
-
# },
|
1173
|
-
# ],
|
1174
|
-
# body_parameters: [
|
1175
|
-
# {
|
1176
|
-
# key: "String",
|
1177
|
-
# value: "String",
|
1178
|
-
# is_value_secret: false,
|
1179
|
-
# },
|
1180
|
-
# ],
|
1181
|
-
# },
|
1182
|
-
# },
|
1183
|
-
# api_key_auth_parameters: {
|
1184
|
-
# api_key_name: "AuthHeaderParameters", # required
|
1185
|
-
# api_key_value: "AuthHeaderParameters", # required
|
1186
|
-
# },
|
1187
|
-
# invocation_http_parameters: {
|
1188
|
-
# header_parameters: [
|
1189
|
-
# {
|
1190
|
-
# key: "HeaderKey",
|
1191
|
-
# value: "HeaderValue",
|
1192
|
-
# is_value_secret: false,
|
1193
|
-
# },
|
1194
|
-
# ],
|
1195
|
-
# query_string_parameters: [
|
1196
|
-
# {
|
1197
|
-
# key: "QueryStringKey",
|
1198
|
-
# value: "QueryStringValue",
|
1199
|
-
# is_value_secret: false,
|
1200
|
-
# },
|
1201
|
-
# ],
|
1202
|
-
# body_parameters: [
|
1203
|
-
# {
|
1204
|
-
# key: "String",
|
1205
|
-
# value: "String",
|
1206
|
-
# is_value_secret: false,
|
1207
|
-
# },
|
1208
|
-
# ],
|
1209
|
-
# },
|
1210
|
-
# },
|
1211
|
-
# }
|
1212
|
-
#
|
1213
871
|
# @!attribute [rw] name
|
1214
872
|
# The name for the connection to create.
|
1215
873
|
# @return [String]
|
@@ -1220,6 +878,10 @@ module Aws::EventBridge
|
|
1220
878
|
#
|
1221
879
|
# @!attribute [rw] authorization_type
|
1222
880
|
# The type of authorization to use for the connection.
|
881
|
+
#
|
882
|
+
# <note markdown="1"> OAUTH tokens are refreshed when a 401 or 407 response is returned.
|
883
|
+
#
|
884
|
+
# </note>
|
1223
885
|
# @return [String]
|
1224
886
|
#
|
1225
887
|
# @!attribute [rw] auth_parameters
|
@@ -1265,33 +927,6 @@ module Aws::EventBridge
|
|
1265
927
|
include Aws::Structure
|
1266
928
|
end
|
1267
929
|
|
1268
|
-
# @note When making an API call, you may pass CreateEndpointRequest
|
1269
|
-
# data as a hash:
|
1270
|
-
#
|
1271
|
-
# {
|
1272
|
-
# name: "EndpointName", # required
|
1273
|
-
# description: "EndpointDescription",
|
1274
|
-
# routing_config: { # required
|
1275
|
-
# failover_config: { # required
|
1276
|
-
# primary: { # required
|
1277
|
-
# health_check: "HealthCheck", # required
|
1278
|
-
# },
|
1279
|
-
# secondary: { # required
|
1280
|
-
# route: "Route", # required
|
1281
|
-
# },
|
1282
|
-
# },
|
1283
|
-
# },
|
1284
|
-
# replication_config: {
|
1285
|
-
# state: "ENABLED", # accepts ENABLED, DISABLED
|
1286
|
-
# },
|
1287
|
-
# event_buses: [ # required
|
1288
|
-
# {
|
1289
|
-
# event_bus_arn: "NonPartnerEventBusArn", # required
|
1290
|
-
# },
|
1291
|
-
# ],
|
1292
|
-
# role_arn: "IamRoleArn",
|
1293
|
-
# }
|
1294
|
-
#
|
1295
930
|
# @!attribute [rw] name
|
1296
931
|
# The name of the global endpoint. For example,
|
1297
932
|
# `"Name":"us-east-2-custom_bus_A-endpoint"`.
|
@@ -1307,7 +942,10 @@ module Aws::EventBridge
|
|
1307
942
|
# @return [Types::RoutingConfig]
|
1308
943
|
#
|
1309
944
|
# @!attribute [rw] replication_config
|
1310
|
-
# Enable or disable event replication.
|
945
|
+
# Enable or disable event replication. The default state is `ENABLED`
|
946
|
+
# which means you must supply a `RoleArn`. If you don't have a
|
947
|
+
# `RoleArn` or you don't want event replication enabled, set the
|
948
|
+
# state to `DISABLED`.
|
1311
949
|
# @return [Types::ReplicationConfig]
|
1312
950
|
#
|
1313
951
|
# @!attribute [rw] event_buses
|
@@ -1375,29 +1013,16 @@ module Aws::EventBridge
|
|
1375
1013
|
include Aws::Structure
|
1376
1014
|
end
|
1377
1015
|
|
1378
|
-
# @note When making an API call, you may pass CreateEventBusRequest
|
1379
|
-
# data as a hash:
|
1380
|
-
#
|
1381
|
-
# {
|
1382
|
-
# name: "EventBusName", # required
|
1383
|
-
# event_source_name: "EventSourceName",
|
1384
|
-
# tags: [
|
1385
|
-
# {
|
1386
|
-
# key: "TagKey", # required
|
1387
|
-
# value: "TagValue", # required
|
1388
|
-
# },
|
1389
|
-
# ],
|
1390
|
-
# }
|
1391
|
-
#
|
1392
1016
|
# @!attribute [rw] name
|
1393
1017
|
# The name of the new event bus.
|
1394
1018
|
#
|
1395
|
-
#
|
1396
|
-
#
|
1397
|
-
#
|
1019
|
+
# Custom event bus names can't contain the `/` character, but you can
|
1020
|
+
# use the `/` character in partner event bus names. In addition, for
|
1021
|
+
# partner event buses, the name must exactly match the name of the
|
1022
|
+
# partner event source that this event bus is matched to.
|
1398
1023
|
#
|
1399
|
-
#
|
1400
|
-
#
|
1024
|
+
# You can't use the name `default` for a custom event bus, as this
|
1025
|
+
# name is already used for your account's default event bus.
|
1401
1026
|
# @return [String]
|
1402
1027
|
#
|
1403
1028
|
# @!attribute [rw] event_source_name
|
@@ -1431,14 +1056,6 @@ module Aws::EventBridge
|
|
1431
1056
|
include Aws::Structure
|
1432
1057
|
end
|
1433
1058
|
|
1434
|
-
# @note When making an API call, you may pass CreatePartnerEventSourceRequest
|
1435
|
-
# data as a hash:
|
1436
|
-
#
|
1437
|
-
# {
|
1438
|
-
# name: "EventSourceName", # required
|
1439
|
-
# account: "AccountId", # required
|
1440
|
-
# }
|
1441
|
-
#
|
1442
1059
|
# @!attribute [rw] name
|
1443
1060
|
# The name of the partner event source. This name must be unique and
|
1444
1061
|
# must be in the format ` partner_name/event_namespace/event_name `.
|
@@ -1473,13 +1090,6 @@ module Aws::EventBridge
|
|
1473
1090
|
include Aws::Structure
|
1474
1091
|
end
|
1475
1092
|
|
1476
|
-
# @note When making an API call, you may pass DeactivateEventSourceRequest
|
1477
|
-
# data as a hash:
|
1478
|
-
#
|
1479
|
-
# {
|
1480
|
-
# name: "EventSourceName", # required
|
1481
|
-
# }
|
1482
|
-
#
|
1483
1093
|
# @!attribute [rw] name
|
1484
1094
|
# The name of the partner event source to deactivate.
|
1485
1095
|
# @return [String]
|
@@ -1495,13 +1105,6 @@ module Aws::EventBridge
|
|
1495
1105
|
# A `DeadLetterConfig` object that contains information about a
|
1496
1106
|
# dead-letter queue configuration.
|
1497
1107
|
#
|
1498
|
-
# @note When making an API call, you may pass DeadLetterConfig
|
1499
|
-
# data as a hash:
|
1500
|
-
#
|
1501
|
-
# {
|
1502
|
-
# arn: "ResourceArn",
|
1503
|
-
# }
|
1504
|
-
#
|
1505
1108
|
# @!attribute [rw] arn
|
1506
1109
|
# The ARN of the SQS queue specified as the target for the dead-letter
|
1507
1110
|
# queue.
|
@@ -1515,13 +1118,6 @@ module Aws::EventBridge
|
|
1515
1118
|
include Aws::Structure
|
1516
1119
|
end
|
1517
1120
|
|
1518
|
-
# @note When making an API call, you may pass DeauthorizeConnectionRequest
|
1519
|
-
# data as a hash:
|
1520
|
-
#
|
1521
|
-
# {
|
1522
|
-
# name: "ConnectionName", # required
|
1523
|
-
# }
|
1524
|
-
#
|
1525
1121
|
# @!attribute [rw] name
|
1526
1122
|
# The name of the connection to remove authorization from.
|
1527
1123
|
# @return [String]
|
@@ -1566,13 +1162,6 @@ module Aws::EventBridge
|
|
1566
1162
|
include Aws::Structure
|
1567
1163
|
end
|
1568
1164
|
|
1569
|
-
# @note When making an API call, you may pass DeleteApiDestinationRequest
|
1570
|
-
# data as a hash:
|
1571
|
-
#
|
1572
|
-
# {
|
1573
|
-
# name: "ApiDestinationName", # required
|
1574
|
-
# }
|
1575
|
-
#
|
1576
1165
|
# @!attribute [rw] name
|
1577
1166
|
# The name of the destination to delete.
|
1578
1167
|
# @return [String]
|
@@ -1589,13 +1178,6 @@ module Aws::EventBridge
|
|
1589
1178
|
#
|
1590
1179
|
class DeleteApiDestinationResponse < Aws::EmptyStructure; end
|
1591
1180
|
|
1592
|
-
# @note When making an API call, you may pass DeleteArchiveRequest
|
1593
|
-
# data as a hash:
|
1594
|
-
#
|
1595
|
-
# {
|
1596
|
-
# archive_name: "ArchiveName", # required
|
1597
|
-
# }
|
1598
|
-
#
|
1599
1181
|
# @!attribute [rw] archive_name
|
1600
1182
|
# The name of the archive to delete.
|
1601
1183
|
# @return [String]
|
@@ -1612,13 +1194,6 @@ module Aws::EventBridge
|
|
1612
1194
|
#
|
1613
1195
|
class DeleteArchiveResponse < Aws::EmptyStructure; end
|
1614
1196
|
|
1615
|
-
# @note When making an API call, you may pass DeleteConnectionRequest
|
1616
|
-
# data as a hash:
|
1617
|
-
#
|
1618
|
-
# {
|
1619
|
-
# name: "ConnectionName", # required
|
1620
|
-
# }
|
1621
|
-
#
|
1622
1197
|
# @!attribute [rw] name
|
1623
1198
|
# The name of the connection to delete.
|
1624
1199
|
# @return [String]
|
@@ -1665,13 +1240,6 @@ module Aws::EventBridge
|
|
1665
1240
|
include Aws::Structure
|
1666
1241
|
end
|
1667
1242
|
|
1668
|
-
# @note When making an API call, you may pass DeleteEndpointRequest
|
1669
|
-
# data as a hash:
|
1670
|
-
#
|
1671
|
-
# {
|
1672
|
-
# name: "EndpointName", # required
|
1673
|
-
# }
|
1674
|
-
#
|
1675
1243
|
# @!attribute [rw] name
|
1676
1244
|
# The name of the endpoint you want to delete. For example,
|
1677
1245
|
# `"Name":"us-east-2-custom_bus_A-endpoint"`..
|
@@ -1689,13 +1257,6 @@ module Aws::EventBridge
|
|
1689
1257
|
#
|
1690
1258
|
class DeleteEndpointResponse < Aws::EmptyStructure; end
|
1691
1259
|
|
1692
|
-
# @note When making an API call, you may pass DeleteEventBusRequest
|
1693
|
-
# data as a hash:
|
1694
|
-
#
|
1695
|
-
# {
|
1696
|
-
# name: "EventBusName", # required
|
1697
|
-
# }
|
1698
|
-
#
|
1699
1260
|
# @!attribute [rw] name
|
1700
1261
|
# The name of the event bus to delete.
|
1701
1262
|
# @return [String]
|
@@ -1708,14 +1269,6 @@ module Aws::EventBridge
|
|
1708
1269
|
include Aws::Structure
|
1709
1270
|
end
|
1710
1271
|
|
1711
|
-
# @note When making an API call, you may pass DeletePartnerEventSourceRequest
|
1712
|
-
# data as a hash:
|
1713
|
-
#
|
1714
|
-
# {
|
1715
|
-
# name: "EventSourceName", # required
|
1716
|
-
# account: "AccountId", # required
|
1717
|
-
# }
|
1718
|
-
#
|
1719
1272
|
# @!attribute [rw] name
|
1720
1273
|
# The name of the event source to delete.
|
1721
1274
|
# @return [String]
|
@@ -1734,15 +1287,6 @@ module Aws::EventBridge
|
|
1734
1287
|
include Aws::Structure
|
1735
1288
|
end
|
1736
1289
|
|
1737
|
-
# @note When making an API call, you may pass DeleteRuleRequest
|
1738
|
-
# data as a hash:
|
1739
|
-
#
|
1740
|
-
# {
|
1741
|
-
# name: "RuleName", # required
|
1742
|
-
# event_bus_name: "EventBusNameOrArn",
|
1743
|
-
# force: false,
|
1744
|
-
# }
|
1745
|
-
#
|
1746
1290
|
# @!attribute [rw] name
|
1747
1291
|
# The name of the rule.
|
1748
1292
|
# @return [String]
|
@@ -1771,13 +1315,6 @@ module Aws::EventBridge
|
|
1771
1315
|
include Aws::Structure
|
1772
1316
|
end
|
1773
1317
|
|
1774
|
-
# @note When making an API call, you may pass DescribeApiDestinationRequest
|
1775
|
-
# data as a hash:
|
1776
|
-
#
|
1777
|
-
# {
|
1778
|
-
# name: "ApiDestinationName", # required
|
1779
|
-
# }
|
1780
|
-
#
|
1781
1318
|
# @!attribute [rw] name
|
1782
1319
|
# The name of the API destination to retrieve.
|
1783
1320
|
# @return [String]
|
@@ -1856,13 +1393,6 @@ module Aws::EventBridge
|
|
1856
1393
|
include Aws::Structure
|
1857
1394
|
end
|
1858
1395
|
|
1859
|
-
# @note When making an API call, you may pass DescribeArchiveRequest
|
1860
|
-
# data as a hash:
|
1861
|
-
#
|
1862
|
-
# {
|
1863
|
-
# archive_name: "ArchiveName", # required
|
1864
|
-
# }
|
1865
|
-
#
|
1866
1396
|
# @!attribute [rw] archive_name
|
1867
1397
|
# The name of the archive to retrieve.
|
1868
1398
|
# @return [String]
|
@@ -1937,13 +1467,6 @@ module Aws::EventBridge
|
|
1937
1467
|
include Aws::Structure
|
1938
1468
|
end
|
1939
1469
|
|
1940
|
-
# @note When making an API call, you may pass DescribeConnectionRequest
|
1941
|
-
# data as a hash:
|
1942
|
-
#
|
1943
|
-
# {
|
1944
|
-
# name: "ConnectionName", # required
|
1945
|
-
# }
|
1946
|
-
#
|
1947
1470
|
# @!attribute [rw] name
|
1948
1471
|
# The name of the connection to retrieve.
|
1949
1472
|
# @return [String]
|
@@ -2019,14 +1542,6 @@ module Aws::EventBridge
|
|
2019
1542
|
include Aws::Structure
|
2020
1543
|
end
|
2021
1544
|
|
2022
|
-
# @note When making an API call, you may pass DescribeEndpointRequest
|
2023
|
-
# data as a hash:
|
2024
|
-
#
|
2025
|
-
# {
|
2026
|
-
# name: "EndpointName", # required
|
2027
|
-
# home_region: "HomeRegion",
|
2028
|
-
# }
|
2029
|
-
#
|
2030
1545
|
# @!attribute [rw] name
|
2031
1546
|
# The name of the endpoint you want to get information about. For
|
2032
1547
|
# example, `"Name":"us-east-2-custom_bus_A-endpoint"`.
|
@@ -2124,13 +1639,6 @@ module Aws::EventBridge
|
|
2124
1639
|
include Aws::Structure
|
2125
1640
|
end
|
2126
1641
|
|
2127
|
-
# @note When making an API call, you may pass DescribeEventBusRequest
|
2128
|
-
# data as a hash:
|
2129
|
-
#
|
2130
|
-
# {
|
2131
|
-
# name: "EventBusNameOrArn",
|
2132
|
-
# }
|
2133
|
-
#
|
2134
1642
|
# @!attribute [rw] name
|
2135
1643
|
# The name or ARN of the event bus to show details for. If you omit
|
2136
1644
|
# this, the default event bus is displayed.
|
@@ -2168,13 +1676,6 @@ module Aws::EventBridge
|
|
2168
1676
|
include Aws::Structure
|
2169
1677
|
end
|
2170
1678
|
|
2171
|
-
# @note When making an API call, you may pass DescribeEventSourceRequest
|
2172
|
-
# data as a hash:
|
2173
|
-
#
|
2174
|
-
# {
|
2175
|
-
# name: "EventSourceName", # required
|
2176
|
-
# }
|
2177
|
-
#
|
2178
1679
|
# @!attribute [rw] name
|
2179
1680
|
# The name of the partner event source to display the details of.
|
2180
1681
|
# @return [String]
|
@@ -2230,13 +1731,6 @@ module Aws::EventBridge
|
|
2230
1731
|
include Aws::Structure
|
2231
1732
|
end
|
2232
1733
|
|
2233
|
-
# @note When making an API call, you may pass DescribePartnerEventSourceRequest
|
2234
|
-
# data as a hash:
|
2235
|
-
#
|
2236
|
-
# {
|
2237
|
-
# name: "EventSourceName", # required
|
2238
|
-
# }
|
2239
|
-
#
|
2240
1734
|
# @!attribute [rw] name
|
2241
1735
|
# The name of the event source to display.
|
2242
1736
|
# @return [String]
|
@@ -2266,13 +1760,6 @@ module Aws::EventBridge
|
|
2266
1760
|
include Aws::Structure
|
2267
1761
|
end
|
2268
1762
|
|
2269
|
-
# @note When making an API call, you may pass DescribeReplayRequest
|
2270
|
-
# data as a hash:
|
2271
|
-
#
|
2272
|
-
# {
|
2273
|
-
# replay_name: "ReplayName", # required
|
2274
|
-
# }
|
2275
|
-
#
|
2276
1763
|
# @!attribute [rw] replay_name
|
2277
1764
|
# The name of the replay to retrieve.
|
2278
1765
|
# @return [String]
|
@@ -2354,14 +1841,6 @@ module Aws::EventBridge
|
|
2354
1841
|
include Aws::Structure
|
2355
1842
|
end
|
2356
1843
|
|
2357
|
-
# @note When making an API call, you may pass DescribeRuleRequest
|
2358
|
-
# data as a hash:
|
2359
|
-
#
|
2360
|
-
# {
|
2361
|
-
# name: "RuleName", # required
|
2362
|
-
# event_bus_name: "EventBusNameOrArn",
|
2363
|
-
# }
|
2364
|
-
#
|
2365
1844
|
# @!attribute [rw] name
|
2366
1845
|
# The name of the rule.
|
2367
1846
|
# @return [String]
|
@@ -2451,14 +1930,6 @@ module Aws::EventBridge
|
|
2451
1930
|
include Aws::Structure
|
2452
1931
|
end
|
2453
1932
|
|
2454
|
-
# @note When making an API call, you may pass DisableRuleRequest
|
2455
|
-
# data as a hash:
|
2456
|
-
#
|
2457
|
-
# {
|
2458
|
-
# name: "RuleName", # required
|
2459
|
-
# event_bus_name: "EventBusNameOrArn",
|
2460
|
-
# }
|
2461
|
-
#
|
2462
1933
|
# @!attribute [rw] name
|
2463
1934
|
# The name of the rule.
|
2464
1935
|
# @return [String]
|
@@ -2480,53 +1951,6 @@ module Aws::EventBridge
|
|
2480
1951
|
# The custom parameters to be used when the target is an Amazon ECS
|
2481
1952
|
# task.
|
2482
1953
|
#
|
2483
|
-
# @note When making an API call, you may pass EcsParameters
|
2484
|
-
# data as a hash:
|
2485
|
-
#
|
2486
|
-
# {
|
2487
|
-
# task_definition_arn: "Arn", # required
|
2488
|
-
# task_count: 1,
|
2489
|
-
# launch_type: "EC2", # accepts EC2, FARGATE, EXTERNAL
|
2490
|
-
# network_configuration: {
|
2491
|
-
# awsvpc_configuration: {
|
2492
|
-
# subnets: ["String"], # required
|
2493
|
-
# security_groups: ["String"],
|
2494
|
-
# assign_public_ip: "ENABLED", # accepts ENABLED, DISABLED
|
2495
|
-
# },
|
2496
|
-
# },
|
2497
|
-
# platform_version: "String",
|
2498
|
-
# group: "String",
|
2499
|
-
# capacity_provider_strategy: [
|
2500
|
-
# {
|
2501
|
-
# capacity_provider: "CapacityProvider", # required
|
2502
|
-
# weight: 1,
|
2503
|
-
# base: 1,
|
2504
|
-
# },
|
2505
|
-
# ],
|
2506
|
-
# enable_ecs_managed_tags: false,
|
2507
|
-
# enable_execute_command: false,
|
2508
|
-
# placement_constraints: [
|
2509
|
-
# {
|
2510
|
-
# type: "distinctInstance", # accepts distinctInstance, memberOf
|
2511
|
-
# expression: "PlacementConstraintExpression",
|
2512
|
-
# },
|
2513
|
-
# ],
|
2514
|
-
# placement_strategy: [
|
2515
|
-
# {
|
2516
|
-
# type: "random", # accepts random, spread, binpack
|
2517
|
-
# field: "PlacementStrategyField",
|
2518
|
-
# },
|
2519
|
-
# ],
|
2520
|
-
# propagate_tags: "TASK_DEFINITION", # accepts TASK_DEFINITION
|
2521
|
-
# reference_id: "ReferenceId",
|
2522
|
-
# tags: [
|
2523
|
-
# {
|
2524
|
-
# key: "TagKey", # required
|
2525
|
-
# value: "TagValue", # required
|
2526
|
-
# },
|
2527
|
-
# ],
|
2528
|
-
# }
|
2529
|
-
#
|
2530
1954
|
# @!attribute [rw] task_definition_arn
|
2531
1955
|
# The ARN of the task definition to use if the event target is an
|
2532
1956
|
# Amazon ECS task.
|
@@ -2659,14 +2083,6 @@ module Aws::EventBridge
|
|
2659
2083
|
include Aws::Structure
|
2660
2084
|
end
|
2661
2085
|
|
2662
|
-
# @note When making an API call, you may pass EnableRuleRequest
|
2663
|
-
# data as a hash:
|
2664
|
-
#
|
2665
|
-
# {
|
2666
|
-
# name: "RuleName", # required
|
2667
|
-
# event_bus_name: "EventBusNameOrArn",
|
2668
|
-
# }
|
2669
|
-
#
|
2670
2086
|
# @!attribute [rw] name
|
2671
2087
|
# The name of the rule.
|
2672
2088
|
# @return [String]
|
@@ -2685,11 +2101,11 @@ module Aws::EventBridge
|
|
2685
2101
|
include Aws::Structure
|
2686
2102
|
end
|
2687
2103
|
|
2688
|
-
#
|
2104
|
+
# A global endpoint used to improve your application's availability by
|
2689
2105
|
# making it regional-fault tolerant. For more information about global
|
2690
2106
|
# endpoints, see [Making applications Regional-fault tolerant with
|
2691
2107
|
# global endpoints and event replication][1] in the Amazon EventBridge
|
2692
|
-
# User Guide
|
2108
|
+
# User Guide.
|
2693
2109
|
#
|
2694
2110
|
#
|
2695
2111
|
#
|
@@ -2713,6 +2129,9 @@ module Aws::EventBridge
|
|
2713
2129
|
#
|
2714
2130
|
# @!attribute [rw] replication_config
|
2715
2131
|
# Whether event replication was enabled or disabled for this endpoint.
|
2132
|
+
# The default state is `ENABLED` which means you must supply a
|
2133
|
+
# `RoleArn`. If you don't have a `RoleArn` or you don't want event
|
2134
|
+
# replication enabled, set the state to `DISABLED`.
|
2716
2135
|
# @return [Types::ReplicationConfig]
|
2717
2136
|
#
|
2718
2137
|
# @!attribute [rw] event_buses
|
@@ -2725,8 +2144,8 @@ module Aws::EventBridge
|
|
2725
2144
|
#
|
2726
2145
|
# @!attribute [rw] endpoint_id
|
2727
2146
|
# The URL subdomain of the endpoint. For example, if the URL for
|
2728
|
-
# Endpoint is abcde.veo.endpoints.event.amazonaws.com, then
|
2729
|
-
# EndpointId is `abcde.veo`.
|
2147
|
+
# Endpoint is https://abcde.veo.endpoints.event.amazonaws.com, then
|
2148
|
+
# the EndpointId is `abcde.veo`.
|
2730
2149
|
# @return [String]
|
2731
2150
|
#
|
2732
2151
|
# @!attribute [rw] endpoint_url
|
@@ -2771,13 +2190,6 @@ module Aws::EventBridge
|
|
2771
2190
|
|
2772
2191
|
# The event buses the endpoint is associated with.
|
2773
2192
|
#
|
2774
|
-
# @note When making an API call, you may pass EndpointEventBus
|
2775
|
-
# data as a hash:
|
2776
|
-
#
|
2777
|
-
# {
|
2778
|
-
# event_bus_arn: "NonPartnerEventBusArn", # required
|
2779
|
-
# }
|
2780
|
-
#
|
2781
2193
|
# @!attribute [rw] event_bus_arn
|
2782
2194
|
# The ARN of the event bus the endpoint is associated with.
|
2783
2195
|
# @return [String]
|
@@ -2790,13 +2202,13 @@ module Aws::EventBridge
|
|
2790
2202
|
include Aws::Structure
|
2791
2203
|
end
|
2792
2204
|
|
2793
|
-
# An event bus receives events from a source
|
2794
|
-
#
|
2795
|
-
#
|
2796
|
-
#
|
2797
|
-
#
|
2798
|
-
#
|
2799
|
-
# applications.
|
2205
|
+
# An event bus receives events from a source, uses rules to evaluate
|
2206
|
+
# them, applies any configured input transformation, and routes them to
|
2207
|
+
# the appropriate target(s). Your account's default event bus receives
|
2208
|
+
# events from Amazon Web Services services. A custom event bus can
|
2209
|
+
# receive events from your custom applications and services. A partner
|
2210
|
+
# event bus receives events from an event source created by an SaaS
|
2211
|
+
# partner. These events come from the partners services or applications.
|
2800
2212
|
#
|
2801
2213
|
# @!attribute [rw] name
|
2802
2214
|
# The name of the event bus.
|
@@ -2872,18 +2284,6 @@ module Aws::EventBridge
|
|
2872
2284
|
# The failover configuration for an endpoint. This includes what
|
2873
2285
|
# triggers failover and what happens when it's triggered.
|
2874
2286
|
#
|
2875
|
-
# @note When making an API call, you may pass FailoverConfig
|
2876
|
-
# data as a hash:
|
2877
|
-
#
|
2878
|
-
# {
|
2879
|
-
# primary: { # required
|
2880
|
-
# health_check: "HealthCheck", # required
|
2881
|
-
# },
|
2882
|
-
# secondary: { # required
|
2883
|
-
# route: "Route", # required
|
2884
|
-
# },
|
2885
|
-
# }
|
2886
|
-
#
|
2887
2287
|
# @!attribute [rw] primary
|
2888
2288
|
# The main Region of the endpoint.
|
2889
2289
|
# @return [Types::Primary]
|
@@ -2903,36 +2303,23 @@ module Aws::EventBridge
|
|
2903
2303
|
end
|
2904
2304
|
|
2905
2305
|
# These are custom parameter to be used when the target is an API
|
2906
|
-
# Gateway
|
2907
|
-
#
|
2908
|
-
#
|
2909
|
-
#
|
2910
|
-
# @note When making an API call, you may pass HttpParameters
|
2911
|
-
# data as a hash:
|
2912
|
-
#
|
2913
|
-
# {
|
2914
|
-
# path_parameter_values: ["PathParameter"],
|
2915
|
-
# header_parameters: {
|
2916
|
-
# "HeaderKey" => "HeaderValue",
|
2917
|
-
# },
|
2918
|
-
# query_string_parameters: {
|
2919
|
-
# "QueryStringKey" => "QueryStringValue",
|
2920
|
-
# },
|
2921
|
-
# }
|
2306
|
+
# Gateway APIs or EventBridge ApiDestinations. In the latter case, these
|
2307
|
+
# are merged with any InvocationParameters specified on the Connection,
|
2308
|
+
# with any values from the Connection taking precedence.
|
2922
2309
|
#
|
2923
2310
|
# @!attribute [rw] path_parameter_values
|
2924
|
-
# The path parameter values to be used to populate API Gateway
|
2925
|
-
#
|
2311
|
+
# The path parameter values to be used to populate API Gateway API or
|
2312
|
+
# EventBridge ApiDestination path wildcards ("*").
|
2926
2313
|
# @return [Array<String>]
|
2927
2314
|
#
|
2928
2315
|
# @!attribute [rw] header_parameters
|
2929
2316
|
# The headers that need to be sent as part of request invoking the API
|
2930
|
-
# Gateway
|
2317
|
+
# Gateway API or EventBridge ApiDestination.
|
2931
2318
|
# @return [Hash<String,String>]
|
2932
2319
|
#
|
2933
2320
|
# @!attribute [rw] query_string_parameters
|
2934
2321
|
# The query string keys/values that need to be sent as part of request
|
2935
|
-
# invoking the API Gateway
|
2322
|
+
# invoking the API Gateway API or EventBridge ApiDestination.
|
2936
2323
|
# @return [Hash<String,String>]
|
2937
2324
|
#
|
2938
2325
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eventbridge-2015-10-07/HttpParameters AWS API Documentation
|
@@ -2955,16 +2342,6 @@ module Aws::EventBridge
|
|
2955
2342
|
# Contains the parameters needed for you to provide custom input to a
|
2956
2343
|
# target based on one or more pieces of data extracted from the event.
|
2957
2344
|
#
|
2958
|
-
# @note When making an API call, you may pass InputTransformer
|
2959
|
-
# data as a hash:
|
2960
|
-
#
|
2961
|
-
# {
|
2962
|
-
# input_paths_map: {
|
2963
|
-
# "InputTransformerPathKey" => "TargetInputPath",
|
2964
|
-
# },
|
2965
|
-
# input_template: "TransformerInput", # required
|
2966
|
-
# }
|
2967
|
-
#
|
2968
2345
|
# @!attribute [rw] input_paths_map
|
2969
2346
|
# Map of JSON paths to be extracted from the event. You can then
|
2970
2347
|
# insert these in the template in `InputTemplate` to produce the
|
@@ -2981,7 +2358,7 @@ module Aws::EventBridge
|
|
2981
2358
|
# Input template where you specify placeholders that will be filled
|
2982
2359
|
# with the values of the keys from `InputPathsMap` to customize the
|
2983
2360
|
# data sent to the target. Enclose each `InputPathsMaps` value in
|
2984
|
-
# brackets: <*value*>
|
2361
|
+
# brackets: <*value*>
|
2985
2362
|
#
|
2986
2363
|
# If `InputTemplate` is a JSON object (surrounded by curly braces),
|
2987
2364
|
# the following restrictions apply:
|
@@ -3068,13 +2445,6 @@ module Aws::EventBridge
|
|
3068
2445
|
# not include this parameter, the default is to use the `eventId` as the
|
3069
2446
|
# partition key.
|
3070
2447
|
#
|
3071
|
-
# @note When making an API call, you may pass KinesisParameters
|
3072
|
-
# data as a hash:
|
3073
|
-
#
|
3074
|
-
# {
|
3075
|
-
# partition_key_path: "TargetPartitionKeyPath", # required
|
3076
|
-
# }
|
3077
|
-
#
|
3078
2448
|
# @!attribute [rw] partition_key_path
|
3079
2449
|
# The JSON path to be extracted from the event and used as the
|
3080
2450
|
# partition key. For more information, see [Amazon Kinesis Streams Key
|
@@ -3100,16 +2470,6 @@ module Aws::EventBridge
|
|
3100
2470
|
#
|
3101
2471
|
class LimitExceededException < Aws::EmptyStructure; end
|
3102
2472
|
|
3103
|
-
# @note When making an API call, you may pass ListApiDestinationsRequest
|
3104
|
-
# data as a hash:
|
3105
|
-
#
|
3106
|
-
# {
|
3107
|
-
# name_prefix: "ApiDestinationName",
|
3108
|
-
# connection_arn: "ConnectionArn",
|
3109
|
-
# next_token: "NextToken",
|
3110
|
-
# limit: 1,
|
3111
|
-
# }
|
3112
|
-
#
|
3113
2473
|
# @!attribute [rw] name_prefix
|
3114
2474
|
# A name prefix to filter results returned. Only API destinations with
|
3115
2475
|
# a name that starts with the prefix are returned.
|
@@ -3158,17 +2518,6 @@ module Aws::EventBridge
|
|
3158
2518
|
include Aws::Structure
|
3159
2519
|
end
|
3160
2520
|
|
3161
|
-
# @note When making an API call, you may pass ListArchivesRequest
|
3162
|
-
# data as a hash:
|
3163
|
-
#
|
3164
|
-
# {
|
3165
|
-
# name_prefix: "ArchiveName",
|
3166
|
-
# event_source_arn: "Arn",
|
3167
|
-
# state: "ENABLED", # accepts ENABLED, DISABLED, CREATING, UPDATING, CREATE_FAILED, UPDATE_FAILED
|
3168
|
-
# next_token: "NextToken",
|
3169
|
-
# limit: 1,
|
3170
|
-
# }
|
3171
|
-
#
|
3172
2521
|
# @!attribute [rw] name_prefix
|
3173
2522
|
# A name prefix to filter the archives returned. Only archives with
|
3174
2523
|
# name that match the prefix are returned.
|
@@ -3221,16 +2570,6 @@ module Aws::EventBridge
|
|
3221
2570
|
include Aws::Structure
|
3222
2571
|
end
|
3223
2572
|
|
3224
|
-
# @note When making an API call, you may pass ListConnectionsRequest
|
3225
|
-
# data as a hash:
|
3226
|
-
#
|
3227
|
-
# {
|
3228
|
-
# name_prefix: "ConnectionName",
|
3229
|
-
# connection_state: "CREATING", # accepts CREATING, UPDATING, DELETING, AUTHORIZED, DEAUTHORIZED, AUTHORIZING, DEAUTHORIZING
|
3230
|
-
# next_token: "NextToken",
|
3231
|
-
# limit: 1,
|
3232
|
-
# }
|
3233
|
-
#
|
3234
2573
|
# @!attribute [rw] name_prefix
|
3235
2574
|
# A name prefix to filter results returned. Only connections with a
|
3236
2575
|
# name that starts with the prefix are returned.
|
@@ -3279,16 +2618,6 @@ module Aws::EventBridge
|
|
3279
2618
|
include Aws::Structure
|
3280
2619
|
end
|
3281
2620
|
|
3282
|
-
# @note When making an API call, you may pass ListEndpointsRequest
|
3283
|
-
# data as a hash:
|
3284
|
-
#
|
3285
|
-
# {
|
3286
|
-
# name_prefix: "EndpointName",
|
3287
|
-
# home_region: "HomeRegion",
|
3288
|
-
# next_token: "NextToken",
|
3289
|
-
# max_results: 1,
|
3290
|
-
# }
|
3291
|
-
#
|
3292
2621
|
# @!attribute [rw] name_prefix
|
3293
2622
|
# A value that will return a subset of the endpoints associated with
|
3294
2623
|
# this account. For example, `"NamePrefix": "ABC"` will return all
|
@@ -3302,11 +2631,11 @@ module Aws::EventBridge
|
|
3302
2631
|
#
|
3303
2632
|
# @!attribute [rw] next_token
|
3304
2633
|
# If `nextToken` is returned, there are more results available. The
|
3305
|
-
# value of nextToken is a unique pagination token for each page.
|
3306
|
-
# the call again using the returned token to retrieve the next
|
3307
|
-
# Keep all other arguments unchanged. Each pagination token
|
3308
|
-
# after 24 hours. Using an expired pagination token will
|
3309
|
-
# HTTP 400 InvalidToken error.
|
2634
|
+
# value of `nextToken` is a unique pagination token for each page.
|
2635
|
+
# Make the call again using the returned token to retrieve the next
|
2636
|
+
# page. Keep all other arguments unchanged. Each pagination token
|
2637
|
+
# expires after 24 hours. Using an expired pagination token will
|
2638
|
+
# return an HTTP 400 InvalidToken error.
|
3310
2639
|
# @return [String]
|
3311
2640
|
#
|
3312
2641
|
# @!attribute [rw] max_results
|
@@ -3330,11 +2659,11 @@ module Aws::EventBridge
|
|
3330
2659
|
#
|
3331
2660
|
# @!attribute [rw] next_token
|
3332
2661
|
# If `nextToken` is returned, there are more results available. The
|
3333
|
-
# value of nextToken is a unique pagination token for each page.
|
3334
|
-
# the call again using the returned token to retrieve the next
|
3335
|
-
# Keep all other arguments unchanged. Each pagination token
|
3336
|
-
# after 24 hours. Using an expired pagination token will
|
3337
|
-
# HTTP 400 InvalidToken error.
|
2662
|
+
# value of `nextToken` is a unique pagination token for each page.
|
2663
|
+
# Make the call again using the returned token to retrieve the next
|
2664
|
+
# page. Keep all other arguments unchanged. Each pagination token
|
2665
|
+
# expires after 24 hours. Using an expired pagination token will
|
2666
|
+
# return an HTTP 400 InvalidToken error.
|
3338
2667
|
# @return [String]
|
3339
2668
|
#
|
3340
2669
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eventbridge-2015-10-07/ListEndpointsResponse AWS API Documentation
|
@@ -3346,15 +2675,6 @@ module Aws::EventBridge
|
|
3346
2675
|
include Aws::Structure
|
3347
2676
|
end
|
3348
2677
|
|
3349
|
-
# @note When making an API call, you may pass ListEventBusesRequest
|
3350
|
-
# data as a hash:
|
3351
|
-
#
|
3352
|
-
# {
|
3353
|
-
# name_prefix: "EventBusName",
|
3354
|
-
# next_token: "NextToken",
|
3355
|
-
# limit: 1,
|
3356
|
-
# }
|
3357
|
-
#
|
3358
2678
|
# @!attribute [rw] name_prefix
|
3359
2679
|
# Specifying this limits the results to only those event buses with
|
3360
2680
|
# names that start with the specified prefix.
|
@@ -3399,15 +2719,6 @@ module Aws::EventBridge
|
|
3399
2719
|
include Aws::Structure
|
3400
2720
|
end
|
3401
2721
|
|
3402
|
-
# @note When making an API call, you may pass ListEventSourcesRequest
|
3403
|
-
# data as a hash:
|
3404
|
-
#
|
3405
|
-
# {
|
3406
|
-
# name_prefix: "EventSourceNamePrefix",
|
3407
|
-
# next_token: "NextToken",
|
3408
|
-
# limit: 1,
|
3409
|
-
# }
|
3410
|
-
#
|
3411
2722
|
# @!attribute [rw] name_prefix
|
3412
2723
|
# Specifying this limits the results to only those partner event
|
3413
2724
|
# sources with names that start with the specified prefix.
|
@@ -3452,15 +2763,6 @@ module Aws::EventBridge
|
|
3452
2763
|
include Aws::Structure
|
3453
2764
|
end
|
3454
2765
|
|
3455
|
-
# @note When making an API call, you may pass ListPartnerEventSourceAccountsRequest
|
3456
|
-
# data as a hash:
|
3457
|
-
#
|
3458
|
-
# {
|
3459
|
-
# event_source_name: "EventSourceName", # required
|
3460
|
-
# next_token: "NextToken",
|
3461
|
-
# limit: 1,
|
3462
|
-
# }
|
3463
|
-
#
|
3464
2766
|
# @!attribute [rw] event_source_name
|
3465
2767
|
# The name of the partner event source to display account information
|
3466
2768
|
# about.
|
@@ -3505,15 +2807,6 @@ module Aws::EventBridge
|
|
3505
2807
|
include Aws::Structure
|
3506
2808
|
end
|
3507
2809
|
|
3508
|
-
# @note When making an API call, you may pass ListPartnerEventSourcesRequest
|
3509
|
-
# data as a hash:
|
3510
|
-
#
|
3511
|
-
# {
|
3512
|
-
# name_prefix: "PartnerEventSourceNamePrefix", # required
|
3513
|
-
# next_token: "NextToken",
|
3514
|
-
# limit: 1,
|
3515
|
-
# }
|
3516
|
-
#
|
3517
2810
|
# @!attribute [rw] name_prefix
|
3518
2811
|
# If you specify this, the results are limited to only those partner
|
3519
2812
|
# event sources that start with the string you specify.
|
@@ -3558,17 +2851,6 @@ module Aws::EventBridge
|
|
3558
2851
|
include Aws::Structure
|
3559
2852
|
end
|
3560
2853
|
|
3561
|
-
# @note When making an API call, you may pass ListReplaysRequest
|
3562
|
-
# data as a hash:
|
3563
|
-
#
|
3564
|
-
# {
|
3565
|
-
# name_prefix: "ReplayName",
|
3566
|
-
# state: "STARTING", # accepts STARTING, RUNNING, CANCELLING, COMPLETED, CANCELLED, FAILED
|
3567
|
-
# event_source_arn: "Arn",
|
3568
|
-
# next_token: "NextToken",
|
3569
|
-
# limit: 1,
|
3570
|
-
# }
|
3571
|
-
#
|
3572
2854
|
# @!attribute [rw] name_prefix
|
3573
2855
|
# A name prefix to filter the replays returned. Only replays with name
|
3574
2856
|
# that match the prefix are returned.
|
@@ -3622,16 +2904,6 @@ module Aws::EventBridge
|
|
3622
2904
|
include Aws::Structure
|
3623
2905
|
end
|
3624
2906
|
|
3625
|
-
# @note When making an API call, you may pass ListRuleNamesByTargetRequest
|
3626
|
-
# data as a hash:
|
3627
|
-
#
|
3628
|
-
# {
|
3629
|
-
# target_arn: "TargetArn", # required
|
3630
|
-
# event_bus_name: "EventBusNameOrArn",
|
3631
|
-
# next_token: "NextToken",
|
3632
|
-
# limit: 1,
|
3633
|
-
# }
|
3634
|
-
#
|
3635
2907
|
# @!attribute [rw] target_arn
|
3636
2908
|
# The Amazon Resource Name (ARN) of the target resource.
|
3637
2909
|
# @return [String]
|
@@ -3679,16 +2951,6 @@ module Aws::EventBridge
|
|
3679
2951
|
include Aws::Structure
|
3680
2952
|
end
|
3681
2953
|
|
3682
|
-
# @note When making an API call, you may pass ListRulesRequest
|
3683
|
-
# data as a hash:
|
3684
|
-
#
|
3685
|
-
# {
|
3686
|
-
# name_prefix: "RuleName",
|
3687
|
-
# event_bus_name: "EventBusNameOrArn",
|
3688
|
-
# next_token: "NextToken",
|
3689
|
-
# limit: 1,
|
3690
|
-
# }
|
3691
|
-
#
|
3692
2954
|
# @!attribute [rw] name_prefix
|
3693
2955
|
# The prefix matching the rule name.
|
3694
2956
|
# @return [String]
|
@@ -3736,13 +2998,6 @@ module Aws::EventBridge
|
|
3736
2998
|
include Aws::Structure
|
3737
2999
|
end
|
3738
3000
|
|
3739
|
-
# @note When making an API call, you may pass ListTagsForResourceRequest
|
3740
|
-
# data as a hash:
|
3741
|
-
#
|
3742
|
-
# {
|
3743
|
-
# resource_arn: "Arn", # required
|
3744
|
-
# }
|
3745
|
-
#
|
3746
3001
|
# @!attribute [rw] resource_arn
|
3747
3002
|
# The ARN of the EventBridge resource for which you want to view tags.
|
3748
3003
|
# @return [String]
|
@@ -3768,16 +3023,6 @@ module Aws::EventBridge
|
|
3768
3023
|
include Aws::Structure
|
3769
3024
|
end
|
3770
3025
|
|
3771
|
-
# @note When making an API call, you may pass ListTargetsByRuleRequest
|
3772
|
-
# data as a hash:
|
3773
|
-
#
|
3774
|
-
# {
|
3775
|
-
# rule: "RuleName", # required
|
3776
|
-
# event_bus_name: "EventBusNameOrArn",
|
3777
|
-
# next_token: "NextToken",
|
3778
|
-
# limit: 1,
|
3779
|
-
# }
|
3780
|
-
#
|
3781
3026
|
# @!attribute [rw] rule
|
3782
3027
|
# The name of the rule.
|
3783
3028
|
# @return [String]
|
@@ -3839,17 +3084,6 @@ module Aws::EventBridge
|
|
3839
3084
|
|
3840
3085
|
# This structure specifies the network configuration for an ECS task.
|
3841
3086
|
#
|
3842
|
-
# @note When making an API call, you may pass NetworkConfiguration
|
3843
|
-
# data as a hash:
|
3844
|
-
#
|
3845
|
-
# {
|
3846
|
-
# awsvpc_configuration: {
|
3847
|
-
# subnets: ["String"], # required
|
3848
|
-
# security_groups: ["String"],
|
3849
|
-
# assign_public_ip: "ENABLED", # accepts ENABLED, DISABLED
|
3850
|
-
# },
|
3851
|
-
# }
|
3852
|
-
#
|
3853
3087
|
# @!attribute [rw] awsvpc_configuration
|
3854
3088
|
# Use this structure to specify the VPC subnets and security groups
|
3855
3089
|
# for the task, and whether a public IP address is to be used. This
|
@@ -3938,14 +3172,6 @@ module Aws::EventBridge
|
|
3938
3172
|
#
|
3939
3173
|
# [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task-placement-constraints.html
|
3940
3174
|
#
|
3941
|
-
# @note When making an API call, you may pass PlacementConstraint
|
3942
|
-
# data as a hash:
|
3943
|
-
#
|
3944
|
-
# {
|
3945
|
-
# type: "distinctInstance", # accepts distinctInstance, memberOf
|
3946
|
-
# expression: "PlacementConstraintExpression",
|
3947
|
-
# }
|
3948
|
-
#
|
3949
3175
|
# @!attribute [rw] type
|
3950
3176
|
# The type of constraint. Use distinctInstance to ensure that each
|
3951
3177
|
# task in a particular group is running on a different container
|
@@ -3981,14 +3207,6 @@ module Aws::EventBridge
|
|
3981
3207
|
#
|
3982
3208
|
# [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task-placement-strategies.html
|
3983
3209
|
#
|
3984
|
-
# @note When making an API call, you may pass PlacementStrategy
|
3985
|
-
# data as a hash:
|
3986
|
-
#
|
3987
|
-
# {
|
3988
|
-
# type: "random", # accepts random, spread, binpack
|
3989
|
-
# field: "PlacementStrategyField",
|
3990
|
-
# }
|
3991
|
-
#
|
3992
3210
|
# @!attribute [rw] type
|
3993
3211
|
# The type of placement strategy. The random placement strategy
|
3994
3212
|
# randomly places tasks on available candidates. The spread placement
|
@@ -4028,13 +3246,6 @@ module Aws::EventBridge
|
|
4028
3246
|
|
4029
3247
|
# The primary Region of the endpoint.
|
4030
3248
|
#
|
4031
|
-
# @note When making an API call, you may pass Primary
|
4032
|
-
# data as a hash:
|
4033
|
-
#
|
4034
|
-
# {
|
4035
|
-
# health_check: "HealthCheck", # required
|
4036
|
-
# }
|
4037
|
-
#
|
4038
3249
|
# @!attribute [rw] health_check
|
4039
3250
|
# The ARN of the health check used by the endpoint to determine
|
4040
3251
|
# whether failover is triggered.
|
@@ -4048,24 +3259,6 @@ module Aws::EventBridge
|
|
4048
3259
|
include Aws::Structure
|
4049
3260
|
end
|
4050
3261
|
|
4051
|
-
# @note When making an API call, you may pass PutEventsRequest
|
4052
|
-
# data as a hash:
|
4053
|
-
#
|
4054
|
-
# {
|
4055
|
-
# entries: [ # required
|
4056
|
-
# {
|
4057
|
-
# time: Time.now,
|
4058
|
-
# source: "String",
|
4059
|
-
# resources: ["EventResource"],
|
4060
|
-
# detail_type: "String",
|
4061
|
-
# detail: "String",
|
4062
|
-
# event_bus_name: "NonPartnerEventBusNameOrArn",
|
4063
|
-
# trace_header: "TraceHeader",
|
4064
|
-
# },
|
4065
|
-
# ],
|
4066
|
-
# endpoint_id: "EndpointId",
|
4067
|
-
# }
|
4068
|
-
#
|
4069
3262
|
# @!attribute [rw] entries
|
4070
3263
|
# The entry that defines an event in your system. You can specify
|
4071
3264
|
# several parameters for the entry such as the source and type of the
|
@@ -4074,8 +3267,8 @@ module Aws::EventBridge
|
|
4074
3267
|
#
|
4075
3268
|
# @!attribute [rw] endpoint_id
|
4076
3269
|
# The URL subdomain of the endpoint. For example, if the URL for
|
4077
|
-
# Endpoint is abcde.veo.endpoints.event.amazonaws.com, then
|
4078
|
-
# EndpointId is `abcde.veo`.
|
3270
|
+
# Endpoint is https://abcde.veo.endpoints.event.amazonaws.com, then
|
3271
|
+
# the EndpointId is `abcde.veo`.
|
4079
3272
|
#
|
4080
3273
|
# When using Java, you must include `auth-crt` on the class path.
|
4081
3274
|
# @return [String]
|
@@ -4091,19 +3284,6 @@ module Aws::EventBridge
|
|
4091
3284
|
|
4092
3285
|
# Represents an event to be submitted.
|
4093
3286
|
#
|
4094
|
-
# @note When making an API call, you may pass PutEventsRequestEntry
|
4095
|
-
# data as a hash:
|
4096
|
-
#
|
4097
|
-
# {
|
4098
|
-
# time: Time.now,
|
4099
|
-
# source: "String",
|
4100
|
-
# resources: ["EventResource"],
|
4101
|
-
# detail_type: "String",
|
4102
|
-
# detail: "String",
|
4103
|
-
# event_bus_name: "NonPartnerEventBusNameOrArn",
|
4104
|
-
# trace_header: "TraceHeader",
|
4105
|
-
# }
|
4106
|
-
#
|
4107
3287
|
# @!attribute [rw] time
|
4108
3288
|
# The time stamp of the event, per [RFC3339][1]. If no time stamp is
|
4109
3289
|
# provided, the time stamp of the [PutEvents][2] call is used.
|
@@ -4125,8 +3305,8 @@ module Aws::EventBridge
|
|
4125
3305
|
# @return [Array<String>]
|
4126
3306
|
#
|
4127
3307
|
# @!attribute [rw] detail_type
|
4128
|
-
# Free-form string
|
4129
|
-
# detail.
|
3308
|
+
# Free-form string, with a maximum of 128 characters, used to decide
|
3309
|
+
# what fields to expect in the event detail.
|
4130
3310
|
# @return [String]
|
4131
3311
|
#
|
4132
3312
|
# @!attribute [rw] detail
|
@@ -4183,6 +3363,9 @@ module Aws::EventBridge
|
|
4183
3363
|
# ingestion was successful, the entry has the event ID in it.
|
4184
3364
|
# Otherwise, you can use the error code and error message to identify
|
4185
3365
|
# the problem with the entry.
|
3366
|
+
#
|
3367
|
+
# For each record, the index of the response element is the same as
|
3368
|
+
# the index in the request array.
|
4186
3369
|
# @return [Array<Types::PutEventsResultEntry>]
|
4187
3370
|
#
|
4188
3371
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eventbridge-2015-10-07/PutEventsResponse AWS API Documentation
|
@@ -4223,21 +3406,6 @@ module Aws::EventBridge
|
|
4223
3406
|
include Aws::Structure
|
4224
3407
|
end
|
4225
3408
|
|
4226
|
-
# @note When making an API call, you may pass PutPartnerEventsRequest
|
4227
|
-
# data as a hash:
|
4228
|
-
#
|
4229
|
-
# {
|
4230
|
-
# entries: [ # required
|
4231
|
-
# {
|
4232
|
-
# time: Time.now,
|
4233
|
-
# source: "EventSourceName",
|
4234
|
-
# resources: ["EventResource"],
|
4235
|
-
# detail_type: "String",
|
4236
|
-
# detail: "String",
|
4237
|
-
# },
|
4238
|
-
# ],
|
4239
|
-
# }
|
4240
|
-
#
|
4241
3409
|
# @!attribute [rw] entries
|
4242
3410
|
# The list of events to write to the event bus.
|
4243
3411
|
# @return [Array<Types::PutPartnerEventsRequestEntry>]
|
@@ -4252,17 +3420,6 @@ module Aws::EventBridge
|
|
4252
3420
|
|
4253
3421
|
# The details about an event generated by an SaaS partner.
|
4254
3422
|
#
|
4255
|
-
# @note When making an API call, you may pass PutPartnerEventsRequestEntry
|
4256
|
-
# data as a hash:
|
4257
|
-
#
|
4258
|
-
# {
|
4259
|
-
# time: Time.now,
|
4260
|
-
# source: "EventSourceName",
|
4261
|
-
# resources: ["EventResource"],
|
4262
|
-
# detail_type: "String",
|
4263
|
-
# detail: "String",
|
4264
|
-
# }
|
4265
|
-
#
|
4266
3423
|
# @!attribute [rw] time
|
4267
3424
|
# The date and time of the event.
|
4268
3425
|
# @return [Time]
|
@@ -4278,8 +3435,8 @@ module Aws::EventBridge
|
|
4278
3435
|
# @return [Array<String>]
|
4279
3436
|
#
|
4280
3437
|
# @!attribute [rw] detail_type
|
4281
|
-
# A free-form string
|
4282
|
-
# detail.
|
3438
|
+
# A free-form string, with a maximum of 128 characters, used to decide
|
3439
|
+
# what fields to expect in the event detail.
|
4283
3440
|
# @return [String]
|
4284
3441
|
#
|
4285
3442
|
# @!attribute [rw] detail
|
@@ -4342,22 +3499,6 @@ module Aws::EventBridge
|
|
4342
3499
|
include Aws::Structure
|
4343
3500
|
end
|
4344
3501
|
|
4345
|
-
# @note When making an API call, you may pass PutPermissionRequest
|
4346
|
-
# data as a hash:
|
4347
|
-
#
|
4348
|
-
# {
|
4349
|
-
# event_bus_name: "NonPartnerEventBusName",
|
4350
|
-
# action: "Action",
|
4351
|
-
# principal: "Principal",
|
4352
|
-
# statement_id: "StatementId",
|
4353
|
-
# condition: {
|
4354
|
-
# type: "String", # required
|
4355
|
-
# key: "String", # required
|
4356
|
-
# value: "String", # required
|
4357
|
-
# },
|
4358
|
-
# policy: "String",
|
4359
|
-
# }
|
4360
|
-
#
|
4361
3502
|
# @!attribute [rw] event_bus_name
|
4362
3503
|
# The name of the event bus associated with the rule. If you omit
|
4363
3504
|
# this, the default event bus is used.
|
@@ -4434,25 +3575,6 @@ module Aws::EventBridge
|
|
4434
3575
|
include Aws::Structure
|
4435
3576
|
end
|
4436
3577
|
|
4437
|
-
# @note When making an API call, you may pass PutRuleRequest
|
4438
|
-
# data as a hash:
|
4439
|
-
#
|
4440
|
-
# {
|
4441
|
-
# name: "RuleName", # required
|
4442
|
-
# schedule_expression: "ScheduleExpression",
|
4443
|
-
# event_pattern: "EventPattern",
|
4444
|
-
# state: "ENABLED", # accepts ENABLED, DISABLED
|
4445
|
-
# description: "RuleDescription",
|
4446
|
-
# role_arn: "RoleArn",
|
4447
|
-
# tags: [
|
4448
|
-
# {
|
4449
|
-
# key: "TagKey", # required
|
4450
|
-
# value: "TagValue", # required
|
4451
|
-
# },
|
4452
|
-
# ],
|
4453
|
-
# event_bus_name: "EventBusNameOrArn",
|
4454
|
-
# }
|
4455
|
-
#
|
4456
3578
|
# @!attribute [rw] name
|
4457
3579
|
# The name of the rule that you are creating or updating.
|
4458
3580
|
# @return [String]
|
@@ -4463,12 +3585,12 @@ module Aws::EventBridge
|
|
4463
3585
|
# @return [String]
|
4464
3586
|
#
|
4465
3587
|
# @!attribute [rw] event_pattern
|
4466
|
-
# The event pattern. For more information, see [EventBridge
|
4467
|
-
# patterns][1] in the *Amazon EventBridge User Guide*.
|
3588
|
+
# The event pattern. For more information, see [Amazon EventBridge
|
3589
|
+
# event patterns][1] in the *Amazon EventBridge User Guide*.
|
4468
3590
|
#
|
4469
3591
|
#
|
4470
3592
|
#
|
4471
|
-
# [1]: https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-patterns.html
|
3593
|
+
# [1]: https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-patterns.html
|
4472
3594
|
# @return [String]
|
4473
3595
|
#
|
4474
3596
|
# @!attribute [rw] state
|
@@ -4526,128 +3648,6 @@ module Aws::EventBridge
|
|
4526
3648
|
include Aws::Structure
|
4527
3649
|
end
|
4528
3650
|
|
4529
|
-
# @note When making an API call, you may pass PutTargetsRequest
|
4530
|
-
# data as a hash:
|
4531
|
-
#
|
4532
|
-
# {
|
4533
|
-
# rule: "RuleName", # required
|
4534
|
-
# event_bus_name: "EventBusNameOrArn",
|
4535
|
-
# targets: [ # required
|
4536
|
-
# {
|
4537
|
-
# id: "TargetId", # required
|
4538
|
-
# arn: "TargetArn", # required
|
4539
|
-
# role_arn: "RoleArn",
|
4540
|
-
# input: "TargetInput",
|
4541
|
-
# input_path: "TargetInputPath",
|
4542
|
-
# input_transformer: {
|
4543
|
-
# input_paths_map: {
|
4544
|
-
# "InputTransformerPathKey" => "TargetInputPath",
|
4545
|
-
# },
|
4546
|
-
# input_template: "TransformerInput", # required
|
4547
|
-
# },
|
4548
|
-
# kinesis_parameters: {
|
4549
|
-
# partition_key_path: "TargetPartitionKeyPath", # required
|
4550
|
-
# },
|
4551
|
-
# run_command_parameters: {
|
4552
|
-
# run_command_targets: [ # required
|
4553
|
-
# {
|
4554
|
-
# key: "RunCommandTargetKey", # required
|
4555
|
-
# values: ["RunCommandTargetValue"], # required
|
4556
|
-
# },
|
4557
|
-
# ],
|
4558
|
-
# },
|
4559
|
-
# ecs_parameters: {
|
4560
|
-
# task_definition_arn: "Arn", # required
|
4561
|
-
# task_count: 1,
|
4562
|
-
# launch_type: "EC2", # accepts EC2, FARGATE, EXTERNAL
|
4563
|
-
# network_configuration: {
|
4564
|
-
# awsvpc_configuration: {
|
4565
|
-
# subnets: ["String"], # required
|
4566
|
-
# security_groups: ["String"],
|
4567
|
-
# assign_public_ip: "ENABLED", # accepts ENABLED, DISABLED
|
4568
|
-
# },
|
4569
|
-
# },
|
4570
|
-
# platform_version: "String",
|
4571
|
-
# group: "String",
|
4572
|
-
# capacity_provider_strategy: [
|
4573
|
-
# {
|
4574
|
-
# capacity_provider: "CapacityProvider", # required
|
4575
|
-
# weight: 1,
|
4576
|
-
# base: 1,
|
4577
|
-
# },
|
4578
|
-
# ],
|
4579
|
-
# enable_ecs_managed_tags: false,
|
4580
|
-
# enable_execute_command: false,
|
4581
|
-
# placement_constraints: [
|
4582
|
-
# {
|
4583
|
-
# type: "distinctInstance", # accepts distinctInstance, memberOf
|
4584
|
-
# expression: "PlacementConstraintExpression",
|
4585
|
-
# },
|
4586
|
-
# ],
|
4587
|
-
# placement_strategy: [
|
4588
|
-
# {
|
4589
|
-
# type: "random", # accepts random, spread, binpack
|
4590
|
-
# field: "PlacementStrategyField",
|
4591
|
-
# },
|
4592
|
-
# ],
|
4593
|
-
# propagate_tags: "TASK_DEFINITION", # accepts TASK_DEFINITION
|
4594
|
-
# reference_id: "ReferenceId",
|
4595
|
-
# tags: [
|
4596
|
-
# {
|
4597
|
-
# key: "TagKey", # required
|
4598
|
-
# value: "TagValue", # required
|
4599
|
-
# },
|
4600
|
-
# ],
|
4601
|
-
# },
|
4602
|
-
# batch_parameters: {
|
4603
|
-
# job_definition: "String", # required
|
4604
|
-
# job_name: "String", # required
|
4605
|
-
# array_properties: {
|
4606
|
-
# size: 1,
|
4607
|
-
# },
|
4608
|
-
# retry_strategy: {
|
4609
|
-
# attempts: 1,
|
4610
|
-
# },
|
4611
|
-
# },
|
4612
|
-
# sqs_parameters: {
|
4613
|
-
# message_group_id: "MessageGroupId",
|
4614
|
-
# },
|
4615
|
-
# http_parameters: {
|
4616
|
-
# path_parameter_values: ["PathParameter"],
|
4617
|
-
# header_parameters: {
|
4618
|
-
# "HeaderKey" => "HeaderValue",
|
4619
|
-
# },
|
4620
|
-
# query_string_parameters: {
|
4621
|
-
# "QueryStringKey" => "QueryStringValue",
|
4622
|
-
# },
|
4623
|
-
# },
|
4624
|
-
# redshift_data_parameters: {
|
4625
|
-
# secret_manager_arn: "RedshiftSecretManagerArn",
|
4626
|
-
# database: "Database", # required
|
4627
|
-
# db_user: "DbUser",
|
4628
|
-
# sql: "Sql", # required
|
4629
|
-
# statement_name: "StatementName",
|
4630
|
-
# with_event: false,
|
4631
|
-
# },
|
4632
|
-
# sage_maker_pipeline_parameters: {
|
4633
|
-
# pipeline_parameter_list: [
|
4634
|
-
# {
|
4635
|
-
# name: "SageMakerPipelineParameterName", # required
|
4636
|
-
# value: "SageMakerPipelineParameterValue", # required
|
4637
|
-
# },
|
4638
|
-
# ],
|
4639
|
-
# },
|
4640
|
-
# dead_letter_config: {
|
4641
|
-
# arn: "ResourceArn",
|
4642
|
-
# },
|
4643
|
-
# retry_policy: {
|
4644
|
-
# maximum_retry_attempts: 1,
|
4645
|
-
# maximum_event_age_in_seconds: 1,
|
4646
|
-
# },
|
4647
|
-
# },
|
4648
|
-
# ],
|
4649
|
-
# }
|
4650
|
-
#
|
4651
3651
|
# @!attribute [rw] rule
|
4652
3652
|
# The name of the rule.
|
4653
3653
|
# @return [String]
|
@@ -4715,20 +3715,8 @@ module Aws::EventBridge
|
|
4715
3715
|
end
|
4716
3716
|
|
4717
3717
|
# These are custom parameters to be used when the target is a Amazon
|
4718
|
-
# Redshift cluster to invoke the Amazon
|
4719
|
-
# ExecuteStatement based on EventBridge events.
|
4720
|
-
#
|
4721
|
-
# @note When making an API call, you may pass RedshiftDataParameters
|
4722
|
-
# data as a hash:
|
4723
|
-
#
|
4724
|
-
# {
|
4725
|
-
# secret_manager_arn: "RedshiftSecretManagerArn",
|
4726
|
-
# database: "Database", # required
|
4727
|
-
# db_user: "DbUser",
|
4728
|
-
# sql: "Sql", # required
|
4729
|
-
# statement_name: "StatementName",
|
4730
|
-
# with_event: false,
|
4731
|
-
# }
|
3718
|
+
# Redshift cluster or Redshift Serverless workgroup to invoke the Amazon
|
3719
|
+
# Redshift Data API ExecuteStatement based on EventBridge events.
|
4732
3720
|
#
|
4733
3721
|
# @!attribute [rw] secret_manager_arn
|
4734
3722
|
# The name or ARN of the secret that enables access to the database.
|
@@ -4744,6 +3732,9 @@ module Aws::EventBridge
|
|
4744
3732
|
# @!attribute [rw] db_user
|
4745
3733
|
# The database user name. Required when authenticating using temporary
|
4746
3734
|
# credentials.
|
3735
|
+
#
|
3736
|
+
# Do not provide this parameter when connecting to a Redshift
|
3737
|
+
# Serverless workgroup.
|
4747
3738
|
# @return [String]
|
4748
3739
|
#
|
4749
3740
|
# @!attribute [rw] sql
|
@@ -4773,15 +3764,6 @@ module Aws::EventBridge
|
|
4773
3764
|
include Aws::Structure
|
4774
3765
|
end
|
4775
3766
|
|
4776
|
-
# @note When making an API call, you may pass RemovePermissionRequest
|
4777
|
-
# data as a hash:
|
4778
|
-
#
|
4779
|
-
# {
|
4780
|
-
# statement_id: "StatementId",
|
4781
|
-
# remove_all_permissions: false,
|
4782
|
-
# event_bus_name: "NonPartnerEventBusName",
|
4783
|
-
# }
|
4784
|
-
#
|
4785
3767
|
# @!attribute [rw] statement_id
|
4786
3768
|
# The statement ID corresponding to the account that is no longer
|
4787
3769
|
# allowed to put events to the default event bus.
|
@@ -4806,16 +3788,6 @@ module Aws::EventBridge
|
|
4806
3788
|
include Aws::Structure
|
4807
3789
|
end
|
4808
3790
|
|
4809
|
-
# @note When making an API call, you may pass RemoveTargetsRequest
|
4810
|
-
# data as a hash:
|
4811
|
-
#
|
4812
|
-
# {
|
4813
|
-
# rule: "RuleName", # required
|
4814
|
-
# event_bus_name: "EventBusNameOrArn",
|
4815
|
-
# ids: ["TargetId"], # required
|
4816
|
-
# force: false,
|
4817
|
-
# }
|
4818
|
-
#
|
4819
3791
|
# @!attribute [rw] rule
|
4820
3792
|
# The name of the rule.
|
4821
3793
|
# @return [String]
|
@@ -4954,14 +3926,6 @@ module Aws::EventBridge
|
|
4954
3926
|
|
4955
3927
|
# A `ReplayDestination` object that contains details about a replay.
|
4956
3928
|
#
|
4957
|
-
# @note When making an API call, you may pass ReplayDestination
|
4958
|
-
# data as a hash:
|
4959
|
-
#
|
4960
|
-
# {
|
4961
|
-
# arn: "Arn", # required
|
4962
|
-
# filter_arns: ["Arn"],
|
4963
|
-
# }
|
4964
|
-
#
|
4965
3929
|
# @!attribute [rw] arn
|
4966
3930
|
# The ARN of the event bus to replay event to. You can replay events
|
4967
3931
|
# only to the event bus specified to create the archive.
|
@@ -4982,13 +3946,6 @@ module Aws::EventBridge
|
|
4982
3946
|
|
4983
3947
|
# Endpoints can replicate all events to the secondary Region.
|
4984
3948
|
#
|
4985
|
-
# @note When making an API call, you may pass ReplicationConfig
|
4986
|
-
# data as a hash:
|
4987
|
-
#
|
4988
|
-
# {
|
4989
|
-
# state: "ENABLED", # accepts ENABLED, DISABLED
|
4990
|
-
# }
|
4991
|
-
#
|
4992
3949
|
# @!attribute [rw] state
|
4993
3950
|
# The state of event replication.
|
4994
3951
|
# @return [String]
|
@@ -5016,14 +3973,6 @@ module Aws::EventBridge
|
|
5016
3973
|
# A `RetryPolicy` object that includes information about the retry
|
5017
3974
|
# policy settings.
|
5018
3975
|
#
|
5019
|
-
# @note When making an API call, you may pass RetryPolicy
|
5020
|
-
# data as a hash:
|
5021
|
-
#
|
5022
|
-
# {
|
5023
|
-
# maximum_retry_attempts: 1,
|
5024
|
-
# maximum_event_age_in_seconds: 1,
|
5025
|
-
# }
|
5026
|
-
#
|
5027
3976
|
# @!attribute [rw] maximum_retry_attempts
|
5028
3977
|
# The maximum number of retry attempts to make before the request
|
5029
3978
|
# fails. Retry attempts continue until either the maximum number of
|
@@ -5047,20 +3996,6 @@ module Aws::EventBridge
|
|
5047
3996
|
|
5048
3997
|
# The routing configuration of the endpoint.
|
5049
3998
|
#
|
5050
|
-
# @note When making an API call, you may pass RoutingConfig
|
5051
|
-
# data as a hash:
|
5052
|
-
#
|
5053
|
-
# {
|
5054
|
-
# failover_config: { # required
|
5055
|
-
# primary: { # required
|
5056
|
-
# health_check: "HealthCheck", # required
|
5057
|
-
# },
|
5058
|
-
# secondary: { # required
|
5059
|
-
# route: "Route", # required
|
5060
|
-
# },
|
5061
|
-
# },
|
5062
|
-
# }
|
5063
|
-
#
|
5064
3999
|
# @!attribute [rw] failover_config
|
5065
4000
|
# The failover configuration for an endpoint. This includes what
|
5066
4001
|
# triggers failover and what happens when it's triggered.
|
@@ -5152,18 +4087,6 @@ module Aws::EventBridge
|
|
5152
4087
|
# This parameter contains the criteria (either InstanceIds or a tag)
|
5153
4088
|
# used to specify which EC2 instances are to be sent the command.
|
5154
4089
|
#
|
5155
|
-
# @note When making an API call, you may pass RunCommandParameters
|
5156
|
-
# data as a hash:
|
5157
|
-
#
|
5158
|
-
# {
|
5159
|
-
# run_command_targets: [ # required
|
5160
|
-
# {
|
5161
|
-
# key: "RunCommandTargetKey", # required
|
5162
|
-
# values: ["RunCommandTargetValue"], # required
|
5163
|
-
# },
|
5164
|
-
# ],
|
5165
|
-
# }
|
5166
|
-
#
|
5167
4090
|
# @!attribute [rw] run_command_targets
|
5168
4091
|
# Currently, we support including only one RunCommandTarget block,
|
5169
4092
|
# which specifies either an array of InstanceIds or a tag.
|
@@ -5181,14 +4104,6 @@ module Aws::EventBridge
|
|
5181
4104
|
# specified as key-value pairs. Each `RunCommandTarget` block can
|
5182
4105
|
# include only one key, but this key may specify multiple values.
|
5183
4106
|
#
|
5184
|
-
# @note When making an API call, you may pass RunCommandTarget
|
5185
|
-
# data as a hash:
|
5186
|
-
#
|
5187
|
-
# {
|
5188
|
-
# key: "RunCommandTargetKey", # required
|
5189
|
-
# values: ["RunCommandTargetValue"], # required
|
5190
|
-
# }
|
5191
|
-
#
|
5192
4107
|
# @!attribute [rw] key
|
5193
4108
|
# Can be either `tag:` *tag-key* or `InstanceIds`.
|
5194
4109
|
# @return [String]
|
@@ -5211,14 +4126,6 @@ module Aws::EventBridge
|
|
5211
4126
|
# Name/Value pair of a parameter to start execution of a SageMaker Model
|
5212
4127
|
# Building Pipeline.
|
5213
4128
|
#
|
5214
|
-
# @note When making an API call, you may pass SageMakerPipelineParameter
|
5215
|
-
# data as a hash:
|
5216
|
-
#
|
5217
|
-
# {
|
5218
|
-
# name: "SageMakerPipelineParameterName", # required
|
5219
|
-
# value: "SageMakerPipelineParameterValue", # required
|
5220
|
-
# }
|
5221
|
-
#
|
5222
4129
|
# @!attribute [rw] name
|
5223
4130
|
# Name of parameter to start execution of a SageMaker Model Building
|
5224
4131
|
# Pipeline.
|
@@ -5241,18 +4148,6 @@ module Aws::EventBridge
|
|
5241
4148
|
# These are custom parameters to use when the target is a SageMaker
|
5242
4149
|
# Model Building Pipeline that starts based on EventBridge events.
|
5243
4150
|
#
|
5244
|
-
# @note When making an API call, you may pass SageMakerPipelineParameters
|
5245
|
-
# data as a hash:
|
5246
|
-
#
|
5247
|
-
# {
|
5248
|
-
# pipeline_parameter_list: [
|
5249
|
-
# {
|
5250
|
-
# name: "SageMakerPipelineParameterName", # required
|
5251
|
-
# value: "SageMakerPipelineParameterValue", # required
|
5252
|
-
# },
|
5253
|
-
# ],
|
5254
|
-
# }
|
5255
|
-
#
|
5256
4151
|
# @!attribute [rw] pipeline_parameter_list
|
5257
4152
|
# List of Parameter names and values for SageMaker Model Building
|
5258
4153
|
# Pipeline execution.
|
@@ -5269,13 +4164,6 @@ module Aws::EventBridge
|
|
5269
4164
|
# The secondary Region that processes events when failover is triggered
|
5270
4165
|
# or replication is enabled.
|
5271
4166
|
#
|
5272
|
-
# @note When making an API call, you may pass Secondary
|
5273
|
-
# data as a hash:
|
5274
|
-
#
|
5275
|
-
# {
|
5276
|
-
# route: "Route", # required
|
5277
|
-
# }
|
5278
|
-
#
|
5279
4167
|
# @!attribute [rw] route
|
5280
4168
|
# Defines the secondary Region.
|
5281
4169
|
# @return [String]
|
@@ -5291,13 +4179,6 @@ module Aws::EventBridge
|
|
5291
4179
|
# This structure includes the custom parameter to be used when the
|
5292
4180
|
# target is an SQS FIFO queue.
|
5293
4181
|
#
|
5294
|
-
# @note When making an API call, you may pass SqsParameters
|
5295
|
-
# data as a hash:
|
5296
|
-
#
|
5297
|
-
# {
|
5298
|
-
# message_group_id: "MessageGroupId",
|
5299
|
-
# }
|
5300
|
-
#
|
5301
4182
|
# @!attribute [rw] message_group_id
|
5302
4183
|
# The FIFO message group ID to use as the target.
|
5303
4184
|
# @return [String]
|
@@ -5310,21 +4191,6 @@ module Aws::EventBridge
|
|
5310
4191
|
include Aws::Structure
|
5311
4192
|
end
|
5312
4193
|
|
5313
|
-
# @note When making an API call, you may pass StartReplayRequest
|
5314
|
-
# data as a hash:
|
5315
|
-
#
|
5316
|
-
# {
|
5317
|
-
# replay_name: "ReplayName", # required
|
5318
|
-
# description: "ReplayDescription",
|
5319
|
-
# event_source_arn: "Arn", # required
|
5320
|
-
# event_start_time: Time.now, # required
|
5321
|
-
# event_end_time: Time.now, # required
|
5322
|
-
# destination: { # required
|
5323
|
-
# arn: "Arn", # required
|
5324
|
-
# filter_arns: ["Arn"],
|
5325
|
-
# },
|
5326
|
-
# }
|
5327
|
-
#
|
5328
4194
|
# @!attribute [rw] replay_name
|
5329
4195
|
# The name of the replay to start.
|
5330
4196
|
# @return [String]
|
@@ -5397,14 +4263,6 @@ module Aws::EventBridge
|
|
5397
4263
|
# A key-value pair associated with an Amazon Web Services resource. In
|
5398
4264
|
# EventBridge, rules and event buses support tagging.
|
5399
4265
|
#
|
5400
|
-
# @note When making an API call, you may pass Tag
|
5401
|
-
# data as a hash:
|
5402
|
-
#
|
5403
|
-
# {
|
5404
|
-
# key: "TagKey", # required
|
5405
|
-
# value: "TagValue", # required
|
5406
|
-
# }
|
5407
|
-
#
|
5408
4266
|
# @!attribute [rw] key
|
5409
4267
|
# A string you can use to assign a value. The combination of tag keys
|
5410
4268
|
# and values can help you organize and categorize your resources.
|
@@ -5423,19 +4281,6 @@ module Aws::EventBridge
|
|
5423
4281
|
include Aws::Structure
|
5424
4282
|
end
|
5425
4283
|
|
5426
|
-
# @note When making an API call, you may pass TagResourceRequest
|
5427
|
-
# data as a hash:
|
5428
|
-
#
|
5429
|
-
# {
|
5430
|
-
# resource_arn: "Arn", # required
|
5431
|
-
# tags: [ # required
|
5432
|
-
# {
|
5433
|
-
# key: "TagKey", # required
|
5434
|
-
# value: "TagValue", # required
|
5435
|
-
# },
|
5436
|
-
# ],
|
5437
|
-
# }
|
5438
|
-
#
|
5439
4284
|
# @!attribute [rw] resource_arn
|
5440
4285
|
# The ARN of the EventBridge resource that you're adding tags to.
|
5441
4286
|
# @return [String]
|
@@ -5473,122 +4318,6 @@ module Aws::EventBridge
|
|
5473
4318
|
# [1]: https://docs.aws.amazon.com/eventbridge/latest/APIReference/API_PutTargets.html
|
5474
4319
|
# [2]: https://docs.aws.amazon.com/eventbridge/latest/userguide/eventbridge-cross-account-event-delivery.html
|
5475
4320
|
#
|
5476
|
-
# @note When making an API call, you may pass Target
|
5477
|
-
# data as a hash:
|
5478
|
-
#
|
5479
|
-
# {
|
5480
|
-
# id: "TargetId", # required
|
5481
|
-
# arn: "TargetArn", # required
|
5482
|
-
# role_arn: "RoleArn",
|
5483
|
-
# input: "TargetInput",
|
5484
|
-
# input_path: "TargetInputPath",
|
5485
|
-
# input_transformer: {
|
5486
|
-
# input_paths_map: {
|
5487
|
-
# "InputTransformerPathKey" => "TargetInputPath",
|
5488
|
-
# },
|
5489
|
-
# input_template: "TransformerInput", # required
|
5490
|
-
# },
|
5491
|
-
# kinesis_parameters: {
|
5492
|
-
# partition_key_path: "TargetPartitionKeyPath", # required
|
5493
|
-
# },
|
5494
|
-
# run_command_parameters: {
|
5495
|
-
# run_command_targets: [ # required
|
5496
|
-
# {
|
5497
|
-
# key: "RunCommandTargetKey", # required
|
5498
|
-
# values: ["RunCommandTargetValue"], # required
|
5499
|
-
# },
|
5500
|
-
# ],
|
5501
|
-
# },
|
5502
|
-
# ecs_parameters: {
|
5503
|
-
# task_definition_arn: "Arn", # required
|
5504
|
-
# task_count: 1,
|
5505
|
-
# launch_type: "EC2", # accepts EC2, FARGATE, EXTERNAL
|
5506
|
-
# network_configuration: {
|
5507
|
-
# awsvpc_configuration: {
|
5508
|
-
# subnets: ["String"], # required
|
5509
|
-
# security_groups: ["String"],
|
5510
|
-
# assign_public_ip: "ENABLED", # accepts ENABLED, DISABLED
|
5511
|
-
# },
|
5512
|
-
# },
|
5513
|
-
# platform_version: "String",
|
5514
|
-
# group: "String",
|
5515
|
-
# capacity_provider_strategy: [
|
5516
|
-
# {
|
5517
|
-
# capacity_provider: "CapacityProvider", # required
|
5518
|
-
# weight: 1,
|
5519
|
-
# base: 1,
|
5520
|
-
# },
|
5521
|
-
# ],
|
5522
|
-
# enable_ecs_managed_tags: false,
|
5523
|
-
# enable_execute_command: false,
|
5524
|
-
# placement_constraints: [
|
5525
|
-
# {
|
5526
|
-
# type: "distinctInstance", # accepts distinctInstance, memberOf
|
5527
|
-
# expression: "PlacementConstraintExpression",
|
5528
|
-
# },
|
5529
|
-
# ],
|
5530
|
-
# placement_strategy: [
|
5531
|
-
# {
|
5532
|
-
# type: "random", # accepts random, spread, binpack
|
5533
|
-
# field: "PlacementStrategyField",
|
5534
|
-
# },
|
5535
|
-
# ],
|
5536
|
-
# propagate_tags: "TASK_DEFINITION", # accepts TASK_DEFINITION
|
5537
|
-
# reference_id: "ReferenceId",
|
5538
|
-
# tags: [
|
5539
|
-
# {
|
5540
|
-
# key: "TagKey", # required
|
5541
|
-
# value: "TagValue", # required
|
5542
|
-
# },
|
5543
|
-
# ],
|
5544
|
-
# },
|
5545
|
-
# batch_parameters: {
|
5546
|
-
# job_definition: "String", # required
|
5547
|
-
# job_name: "String", # required
|
5548
|
-
# array_properties: {
|
5549
|
-
# size: 1,
|
5550
|
-
# },
|
5551
|
-
# retry_strategy: {
|
5552
|
-
# attempts: 1,
|
5553
|
-
# },
|
5554
|
-
# },
|
5555
|
-
# sqs_parameters: {
|
5556
|
-
# message_group_id: "MessageGroupId",
|
5557
|
-
# },
|
5558
|
-
# http_parameters: {
|
5559
|
-
# path_parameter_values: ["PathParameter"],
|
5560
|
-
# header_parameters: {
|
5561
|
-
# "HeaderKey" => "HeaderValue",
|
5562
|
-
# },
|
5563
|
-
# query_string_parameters: {
|
5564
|
-
# "QueryStringKey" => "QueryStringValue",
|
5565
|
-
# },
|
5566
|
-
# },
|
5567
|
-
# redshift_data_parameters: {
|
5568
|
-
# secret_manager_arn: "RedshiftSecretManagerArn",
|
5569
|
-
# database: "Database", # required
|
5570
|
-
# db_user: "DbUser",
|
5571
|
-
# sql: "Sql", # required
|
5572
|
-
# statement_name: "StatementName",
|
5573
|
-
# with_event: false,
|
5574
|
-
# },
|
5575
|
-
# sage_maker_pipeline_parameters: {
|
5576
|
-
# pipeline_parameter_list: [
|
5577
|
-
# {
|
5578
|
-
# name: "SageMakerPipelineParameterName", # required
|
5579
|
-
# value: "SageMakerPipelineParameterValue", # required
|
5580
|
-
# },
|
5581
|
-
# ],
|
5582
|
-
# },
|
5583
|
-
# dead_letter_config: {
|
5584
|
-
# arn: "ResourceArn",
|
5585
|
-
# },
|
5586
|
-
# retry_policy: {
|
5587
|
-
# maximum_retry_attempts: 1,
|
5588
|
-
# maximum_event_age_in_seconds: 1,
|
5589
|
-
# },
|
5590
|
-
# }
|
5591
|
-
#
|
5592
4321
|
# @!attribute [rw] id
|
5593
4322
|
# The ID of the target within the specified rule. Use this ID to
|
5594
4323
|
# reference the target when updating the rule. We recommend using a
|
@@ -5617,9 +4346,9 @@ module Aws::EventBridge
|
|
5617
4346
|
#
|
5618
4347
|
# @!attribute [rw] input_path
|
5619
4348
|
# The value of the JSONPath that is used for extracting part of the
|
5620
|
-
# matched event when passing it to the target. You
|
5621
|
-
# notation
|
5622
|
-
#
|
4349
|
+
# matched event when passing it to the target. You may use JSON dot
|
4350
|
+
# notation or bracket notation. For more information about JSON paths,
|
4351
|
+
# see [JSONPath][1].
|
5623
4352
|
#
|
5624
4353
|
#
|
5625
4354
|
#
|
@@ -5675,10 +4404,10 @@ module Aws::EventBridge
|
|
5675
4404
|
#
|
5676
4405
|
# @!attribute [rw] http_parameters
|
5677
4406
|
# Contains the HTTP parameters to use when the target is a API Gateway
|
5678
|
-
#
|
4407
|
+
# endpoint or EventBridge ApiDestination.
|
5679
4408
|
#
|
5680
|
-
# If you specify an API Gateway
|
5681
|
-
#
|
4409
|
+
# If you specify an API Gateway API or EventBridge ApiDestination as a
|
4410
|
+
# target, you can use this parameter to specify headers, path
|
5682
4411
|
# parameters, and query string keys/values as part of your target
|
5683
4412
|
# invoking request. If you're using ApiDestinations, the
|
5684
4413
|
# corresponding Connection can also have these values configured. In
|
@@ -5737,14 +4466,6 @@ module Aws::EventBridge
|
|
5737
4466
|
include Aws::Structure
|
5738
4467
|
end
|
5739
4468
|
|
5740
|
-
# @note When making an API call, you may pass TestEventPatternRequest
|
5741
|
-
# data as a hash:
|
5742
|
-
#
|
5743
|
-
# {
|
5744
|
-
# event_pattern: "EventPattern", # required
|
5745
|
-
# event: "String", # required
|
5746
|
-
# }
|
5747
|
-
#
|
5748
4469
|
# @!attribute [rw] event_pattern
|
5749
4470
|
# The event pattern. For more information, see [Events and Event
|
5750
4471
|
# Patterns][1] in the *Amazon EventBridge User Guide*.
|
@@ -5799,14 +4520,6 @@ module Aws::EventBridge
|
|
5799
4520
|
include Aws::Structure
|
5800
4521
|
end
|
5801
4522
|
|
5802
|
-
# @note When making an API call, you may pass UntagResourceRequest
|
5803
|
-
# data as a hash:
|
5804
|
-
#
|
5805
|
-
# {
|
5806
|
-
# resource_arn: "Arn", # required
|
5807
|
-
# tag_keys: ["TagKey"], # required
|
5808
|
-
# }
|
5809
|
-
#
|
5810
4523
|
# @!attribute [rw] resource_arn
|
5811
4524
|
# The ARN of the EventBridge resource from which you are removing
|
5812
4525
|
# tags.
|
@@ -5829,18 +4542,6 @@ module Aws::EventBridge
|
|
5829
4542
|
#
|
5830
4543
|
class UntagResourceResponse < Aws::EmptyStructure; end
|
5831
4544
|
|
5832
|
-
# @note When making an API call, you may pass UpdateApiDestinationRequest
|
5833
|
-
# data as a hash:
|
5834
|
-
#
|
5835
|
-
# {
|
5836
|
-
# name: "ApiDestinationName", # required
|
5837
|
-
# description: "ApiDestinationDescription",
|
5838
|
-
# connection_arn: "ConnectionArn",
|
5839
|
-
# invocation_endpoint: "HttpsEndpoint",
|
5840
|
-
# http_method: "POST", # accepts POST, GET, HEAD, OPTIONS, PUT, PATCH, DELETE
|
5841
|
-
# invocation_rate_limit_per_second: 1,
|
5842
|
-
# }
|
5843
|
-
#
|
5844
4545
|
# @!attribute [rw] name
|
5845
4546
|
# The name of the API destination to update.
|
5846
4547
|
# @return [String]
|
@@ -5907,16 +4608,6 @@ module Aws::EventBridge
|
|
5907
4608
|
include Aws::Structure
|
5908
4609
|
end
|
5909
4610
|
|
5910
|
-
# @note When making an API call, you may pass UpdateArchiveRequest
|
5911
|
-
# data as a hash:
|
5912
|
-
#
|
5913
|
-
# {
|
5914
|
-
# archive_name: "ArchiveName", # required
|
5915
|
-
# description: "ArchiveDescription",
|
5916
|
-
# event_pattern: "EventPattern",
|
5917
|
-
# retention_days: 1,
|
5918
|
-
# }
|
5919
|
-
#
|
5920
4611
|
# @!attribute [rw] archive_name
|
5921
4612
|
# The name of the archive to update.
|
5922
4613
|
# @return [String]
|
@@ -5974,14 +4665,6 @@ module Aws::EventBridge
|
|
5974
4665
|
# Contains the API key authorization parameters to use to update the
|
5975
4666
|
# connection.
|
5976
4667
|
#
|
5977
|
-
# @note When making an API call, you may pass UpdateConnectionApiKeyAuthRequestParameters
|
5978
|
-
# data as a hash:
|
5979
|
-
#
|
5980
|
-
# {
|
5981
|
-
# api_key_name: "AuthHeaderParameters",
|
5982
|
-
# api_key_value: "AuthHeaderParameters",
|
5983
|
-
# }
|
5984
|
-
#
|
5985
4668
|
# @!attribute [rw] api_key_name
|
5986
4669
|
# The name of the API key to use for authorization.
|
5987
4670
|
# @return [String]
|
@@ -6001,74 +4684,6 @@ module Aws::EventBridge
|
|
6001
4684
|
|
6002
4685
|
# Contains the additional parameters to use for the connection.
|
6003
4686
|
#
|
6004
|
-
# @note When making an API call, you may pass UpdateConnectionAuthRequestParameters
|
6005
|
-
# data as a hash:
|
6006
|
-
#
|
6007
|
-
# {
|
6008
|
-
# basic_auth_parameters: {
|
6009
|
-
# username: "AuthHeaderParameters",
|
6010
|
-
# password: "AuthHeaderParameters",
|
6011
|
-
# },
|
6012
|
-
# o_auth_parameters: {
|
6013
|
-
# client_parameters: {
|
6014
|
-
# client_id: "AuthHeaderParameters",
|
6015
|
-
# client_secret: "AuthHeaderParameters",
|
6016
|
-
# },
|
6017
|
-
# authorization_endpoint: "HttpsEndpoint",
|
6018
|
-
# http_method: "GET", # accepts GET, POST, PUT
|
6019
|
-
# o_auth_http_parameters: {
|
6020
|
-
# header_parameters: [
|
6021
|
-
# {
|
6022
|
-
# key: "HeaderKey",
|
6023
|
-
# value: "HeaderValue",
|
6024
|
-
# is_value_secret: false,
|
6025
|
-
# },
|
6026
|
-
# ],
|
6027
|
-
# query_string_parameters: [
|
6028
|
-
# {
|
6029
|
-
# key: "QueryStringKey",
|
6030
|
-
# value: "QueryStringValue",
|
6031
|
-
# is_value_secret: false,
|
6032
|
-
# },
|
6033
|
-
# ],
|
6034
|
-
# body_parameters: [
|
6035
|
-
# {
|
6036
|
-
# key: "String",
|
6037
|
-
# value: "String",
|
6038
|
-
# is_value_secret: false,
|
6039
|
-
# },
|
6040
|
-
# ],
|
6041
|
-
# },
|
6042
|
-
# },
|
6043
|
-
# api_key_auth_parameters: {
|
6044
|
-
# api_key_name: "AuthHeaderParameters",
|
6045
|
-
# api_key_value: "AuthHeaderParameters",
|
6046
|
-
# },
|
6047
|
-
# invocation_http_parameters: {
|
6048
|
-
# header_parameters: [
|
6049
|
-
# {
|
6050
|
-
# key: "HeaderKey",
|
6051
|
-
# value: "HeaderValue",
|
6052
|
-
# is_value_secret: false,
|
6053
|
-
# },
|
6054
|
-
# ],
|
6055
|
-
# query_string_parameters: [
|
6056
|
-
# {
|
6057
|
-
# key: "QueryStringKey",
|
6058
|
-
# value: "QueryStringValue",
|
6059
|
-
# is_value_secret: false,
|
6060
|
-
# },
|
6061
|
-
# ],
|
6062
|
-
# body_parameters: [
|
6063
|
-
# {
|
6064
|
-
# key: "String",
|
6065
|
-
# value: "String",
|
6066
|
-
# is_value_secret: false,
|
6067
|
-
# },
|
6068
|
-
# ],
|
6069
|
-
# },
|
6070
|
-
# }
|
6071
|
-
#
|
6072
4687
|
# @!attribute [rw] basic_auth_parameters
|
6073
4688
|
# A `UpdateConnectionBasicAuthRequestParameters` object that contains
|
6074
4689
|
# the authorization parameters for Basic authorization.
|
@@ -6102,14 +4717,6 @@ module Aws::EventBridge
|
|
6102
4717
|
|
6103
4718
|
# Contains the Basic authorization parameters for the connection.
|
6104
4719
|
#
|
6105
|
-
# @note When making an API call, you may pass UpdateConnectionBasicAuthRequestParameters
|
6106
|
-
# data as a hash:
|
6107
|
-
#
|
6108
|
-
# {
|
6109
|
-
# username: "AuthHeaderParameters",
|
6110
|
-
# password: "AuthHeaderParameters",
|
6111
|
-
# }
|
6112
|
-
#
|
6113
4720
|
# @!attribute [rw] username
|
6114
4721
|
# The user name to use for Basic authorization.
|
6115
4722
|
# @return [String]
|
@@ -6130,14 +4737,6 @@ module Aws::EventBridge
|
|
6130
4737
|
|
6131
4738
|
# Contains the OAuth authorization parameters to use for the connection.
|
6132
4739
|
#
|
6133
|
-
# @note When making an API call, you may pass UpdateConnectionOAuthClientRequestParameters
|
6134
|
-
# data as a hash:
|
6135
|
-
#
|
6136
|
-
# {
|
6137
|
-
# client_id: "AuthHeaderParameters",
|
6138
|
-
# client_secret: "AuthHeaderParameters",
|
6139
|
-
# }
|
6140
|
-
#
|
6141
4740
|
# @!attribute [rw] client_id
|
6142
4741
|
# The client ID to use for OAuth authorization.
|
6143
4742
|
# @return [String]
|
@@ -6158,41 +4757,6 @@ module Aws::EventBridge
|
|
6158
4757
|
|
6159
4758
|
# Contains the OAuth request parameters to use for the connection.
|
6160
4759
|
#
|
6161
|
-
# @note When making an API call, you may pass UpdateConnectionOAuthRequestParameters
|
6162
|
-
# data as a hash:
|
6163
|
-
#
|
6164
|
-
# {
|
6165
|
-
# client_parameters: {
|
6166
|
-
# client_id: "AuthHeaderParameters",
|
6167
|
-
# client_secret: "AuthHeaderParameters",
|
6168
|
-
# },
|
6169
|
-
# authorization_endpoint: "HttpsEndpoint",
|
6170
|
-
# http_method: "GET", # accepts GET, POST, PUT
|
6171
|
-
# o_auth_http_parameters: {
|
6172
|
-
# header_parameters: [
|
6173
|
-
# {
|
6174
|
-
# key: "HeaderKey",
|
6175
|
-
# value: "HeaderValue",
|
6176
|
-
# is_value_secret: false,
|
6177
|
-
# },
|
6178
|
-
# ],
|
6179
|
-
# query_string_parameters: [
|
6180
|
-
# {
|
6181
|
-
# key: "QueryStringKey",
|
6182
|
-
# value: "QueryStringValue",
|
6183
|
-
# is_value_secret: false,
|
6184
|
-
# },
|
6185
|
-
# ],
|
6186
|
-
# body_parameters: [
|
6187
|
-
# {
|
6188
|
-
# key: "String",
|
6189
|
-
# value: "String",
|
6190
|
-
# is_value_secret: false,
|
6191
|
-
# },
|
6192
|
-
# ],
|
6193
|
-
# },
|
6194
|
-
# }
|
6195
|
-
#
|
6196
4760
|
# @!attribute [rw] client_parameters
|
6197
4761
|
# A `UpdateConnectionOAuthClientRequestParameters` object that
|
6198
4762
|
# contains the client parameters to use for the connection when OAuth
|
@@ -6224,79 +4788,6 @@ module Aws::EventBridge
|
|
6224
4788
|
include Aws::Structure
|
6225
4789
|
end
|
6226
4790
|
|
6227
|
-
# @note When making an API call, you may pass UpdateConnectionRequest
|
6228
|
-
# data as a hash:
|
6229
|
-
#
|
6230
|
-
# {
|
6231
|
-
# name: "ConnectionName", # required
|
6232
|
-
# description: "ConnectionDescription",
|
6233
|
-
# authorization_type: "BASIC", # accepts BASIC, OAUTH_CLIENT_CREDENTIALS, API_KEY
|
6234
|
-
# auth_parameters: {
|
6235
|
-
# basic_auth_parameters: {
|
6236
|
-
# username: "AuthHeaderParameters",
|
6237
|
-
# password: "AuthHeaderParameters",
|
6238
|
-
# },
|
6239
|
-
# o_auth_parameters: {
|
6240
|
-
# client_parameters: {
|
6241
|
-
# client_id: "AuthHeaderParameters",
|
6242
|
-
# client_secret: "AuthHeaderParameters",
|
6243
|
-
# },
|
6244
|
-
# authorization_endpoint: "HttpsEndpoint",
|
6245
|
-
# http_method: "GET", # accepts GET, POST, PUT
|
6246
|
-
# o_auth_http_parameters: {
|
6247
|
-
# header_parameters: [
|
6248
|
-
# {
|
6249
|
-
# key: "HeaderKey",
|
6250
|
-
# value: "HeaderValue",
|
6251
|
-
# is_value_secret: false,
|
6252
|
-
# },
|
6253
|
-
# ],
|
6254
|
-
# query_string_parameters: [
|
6255
|
-
# {
|
6256
|
-
# key: "QueryStringKey",
|
6257
|
-
# value: "QueryStringValue",
|
6258
|
-
# is_value_secret: false,
|
6259
|
-
# },
|
6260
|
-
# ],
|
6261
|
-
# body_parameters: [
|
6262
|
-
# {
|
6263
|
-
# key: "String",
|
6264
|
-
# value: "String",
|
6265
|
-
# is_value_secret: false,
|
6266
|
-
# },
|
6267
|
-
# ],
|
6268
|
-
# },
|
6269
|
-
# },
|
6270
|
-
# api_key_auth_parameters: {
|
6271
|
-
# api_key_name: "AuthHeaderParameters",
|
6272
|
-
# api_key_value: "AuthHeaderParameters",
|
6273
|
-
# },
|
6274
|
-
# invocation_http_parameters: {
|
6275
|
-
# header_parameters: [
|
6276
|
-
# {
|
6277
|
-
# key: "HeaderKey",
|
6278
|
-
# value: "HeaderValue",
|
6279
|
-
# is_value_secret: false,
|
6280
|
-
# },
|
6281
|
-
# ],
|
6282
|
-
# query_string_parameters: [
|
6283
|
-
# {
|
6284
|
-
# key: "QueryStringKey",
|
6285
|
-
# value: "QueryStringValue",
|
6286
|
-
# is_value_secret: false,
|
6287
|
-
# },
|
6288
|
-
# ],
|
6289
|
-
# body_parameters: [
|
6290
|
-
# {
|
6291
|
-
# key: "String",
|
6292
|
-
# value: "String",
|
6293
|
-
# is_value_secret: false,
|
6294
|
-
# },
|
6295
|
-
# ],
|
6296
|
-
# },
|
6297
|
-
# },
|
6298
|
-
# }
|
6299
|
-
#
|
6300
4791
|
# @!attribute [rw] name
|
6301
4792
|
# The name of the connection to update.
|
6302
4793
|
# @return [String]
|
@@ -6356,33 +4847,6 @@ module Aws::EventBridge
|
|
6356
4847
|
include Aws::Structure
|
6357
4848
|
end
|
6358
4849
|
|
6359
|
-
# @note When making an API call, you may pass UpdateEndpointRequest
|
6360
|
-
# data as a hash:
|
6361
|
-
#
|
6362
|
-
# {
|
6363
|
-
# name: "EndpointName", # required
|
6364
|
-
# description: "EndpointDescription",
|
6365
|
-
# routing_config: {
|
6366
|
-
# failover_config: { # required
|
6367
|
-
# primary: { # required
|
6368
|
-
# health_check: "HealthCheck", # required
|
6369
|
-
# },
|
6370
|
-
# secondary: { # required
|
6371
|
-
# route: "Route", # required
|
6372
|
-
# },
|
6373
|
-
# },
|
6374
|
-
# },
|
6375
|
-
# replication_config: {
|
6376
|
-
# state: "ENABLED", # accepts ENABLED, DISABLED
|
6377
|
-
# },
|
6378
|
-
# event_buses: [
|
6379
|
-
# {
|
6380
|
-
# event_bus_arn: "NonPartnerEventBusArn", # required
|
6381
|
-
# },
|
6382
|
-
# ],
|
6383
|
-
# role_arn: "IamRoleArn",
|
6384
|
-
# }
|
6385
|
-
#
|
6386
4850
|
# @!attribute [rw] name
|
6387
4851
|
# The name of the endpoint you want to update.
|
6388
4852
|
# @return [String]
|
@@ -6393,7 +4857,7 @@ module Aws::EventBridge
|
|
6393
4857
|
#
|
6394
4858
|
# @!attribute [rw] routing_config
|
6395
4859
|
# Configure the routing policy, including the health check and
|
6396
|
-
# secondary Region
|
4860
|
+
# secondary Region.
|
6397
4861
|
# @return [Types::RoutingConfig]
|
6398
4862
|
#
|
6399
4863
|
# @!attribute [rw] replication_config
|