aws-sdk-cloudwatchevents 1.57.0 → 1.59.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +13 -1
- data/VERSION +1 -1
- data/lib/aws-sdk-cloudwatchevents/client.rb +20 -3
- data/lib/aws-sdk-cloudwatchevents/endpoint_parameters.rb +66 -0
- data/lib/aws-sdk-cloudwatchevents/endpoint_provider.rb +57 -0
- data/lib/aws-sdk-cloudwatchevents/endpoints.rb +729 -0
- data/lib/aws-sdk-cloudwatchevents/plugins/endpoints.rb +170 -0
- data/lib/aws-sdk-cloudwatchevents/types.rb +0 -1423
- data/lib/aws-sdk-cloudwatchevents.rb +5 -1
- metadata +8 -4
@@ -10,13 +10,6 @@
|
|
10
10
|
module Aws::CloudWatchEvents
|
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::CloudWatchEvents
|
|
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::CloudWatchEvents
|
|
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::CloudWatchEvents
|
|
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::CloudWatchEvents
|
|
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::CloudWatchEvents
|
|
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::CloudWatchEvents
|
|
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::CloudWatchEvents
|
|
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`.
|
@@ -529,15 +460,6 @@ module Aws::CloudWatchEvents
|
|
529
460
|
# additional body parameters per request. An event payload cannot exceed
|
530
461
|
# 64 KB.
|
531
462
|
#
|
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
463
|
# @!attribute [rw] key
|
542
464
|
# The key for the parameter.
|
543
465
|
# @return [String]
|
@@ -564,15 +486,6 @@ module Aws::CloudWatchEvents
|
|
564
486
|
# additional header parameters per request. An event payload cannot
|
565
487
|
# exceed 64 KB.
|
566
488
|
#
|
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
489
|
# @!attribute [rw] key
|
577
490
|
# The key for the parameter.
|
578
491
|
# @return [String]
|
@@ -597,33 +510,6 @@ module Aws::CloudWatchEvents
|
|
597
510
|
|
598
511
|
# Contains additional parameters for the connection.
|
599
512
|
#
|
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
513
|
# @!attribute [rw] header_parameters
|
628
514
|
# Contains additional header parameters for the connection.
|
629
515
|
# @return [Array<Types::ConnectionHeaderParameter>]
|
@@ -700,15 +586,6 @@ module Aws::CloudWatchEvents
|
|
700
586
|
# additional parameter counts towards the event payload size, which
|
701
587
|
# cannot exceed 64 KB.
|
702
588
|
#
|
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
589
|
# @!attribute [rw] key
|
713
590
|
# The key for a query string parameter.
|
714
591
|
# @return [String]
|
@@ -731,18 +608,6 @@ module Aws::CloudWatchEvents
|
|
731
608
|
include Aws::Structure
|
732
609
|
end
|
733
610
|
|
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
611
|
# @!attribute [rw] name
|
747
612
|
# The name for the API destination to create.
|
748
613
|
# @return [String]
|
@@ -812,17 +677,6 @@ module Aws::CloudWatchEvents
|
|
812
677
|
include Aws::Structure
|
813
678
|
end
|
814
679
|
|
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
680
|
# @!attribute [rw] archive_name
|
827
681
|
# The name for the archive to create.
|
828
682
|
# @return [String]
|
@@ -885,14 +739,6 @@ module Aws::CloudWatchEvents
|
|
885
739
|
|
886
740
|
# Contains the API key authorization parameters for the connection.
|
887
741
|
#
|
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
742
|
# @!attribute [rw] api_key_name
|
897
743
|
# The name of the API key to use for authorization.
|
898
744
|
# @return [String]
|
@@ -912,74 +758,6 @@ module Aws::CloudWatchEvents
|
|
912
758
|
|
913
759
|
# Contains the authorization parameters for the connection.
|
914
760
|
#
|
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
761
|
# @!attribute [rw] basic_auth_parameters
|
984
762
|
# A `CreateConnectionBasicAuthRequestParameters` object that contains
|
985
763
|
# the Basic authorization parameters to use for the connection.
|
@@ -1016,14 +794,6 @@ module Aws::CloudWatchEvents
|
|
1016
794
|
|
1017
795
|
# Contains the Basic authorization parameters to use for the connection.
|
1018
796
|
#
|
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
797
|
# @!attribute [rw] username
|
1028
798
|
# The user name to use for Basic authorization.
|
1029
799
|
# @return [String]
|
@@ -1044,14 +814,6 @@ module Aws::CloudWatchEvents
|
|
1044
814
|
|
1045
815
|
# Contains the Basic authorization parameters to use for the connection.
|
1046
816
|
#
|
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
817
|
# @!attribute [rw] client_id
|
1056
818
|
# The client ID to use for OAuth authorization for the connection.
|
1057
819
|
# @return [String]
|
@@ -1072,41 +834,6 @@ module Aws::CloudWatchEvents
|
|
1072
834
|
|
1073
835
|
# Contains the OAuth authorization parameters to use for the connection.
|
1074
836
|
#
|
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
837
|
# @!attribute [rw] client_parameters
|
1111
838
|
# A `CreateConnectionOAuthClientRequestParameters` object that
|
1112
839
|
# contains the client parameters for OAuth authorization.
|
@@ -1137,79 +864,6 @@ module Aws::CloudWatchEvents
|
|
1137
864
|
include Aws::Structure
|
1138
865
|
end
|
1139
866
|
|
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
867
|
# @!attribute [rw] name
|
1214
868
|
# The name for the connection to create.
|
1215
869
|
# @return [String]
|
@@ -1265,20 +919,6 @@ module Aws::CloudWatchEvents
|
|
1265
919
|
include Aws::Structure
|
1266
920
|
end
|
1267
921
|
|
1268
|
-
# @note When making an API call, you may pass CreateEventBusRequest
|
1269
|
-
# data as a hash:
|
1270
|
-
#
|
1271
|
-
# {
|
1272
|
-
# name: "EventBusName", # required
|
1273
|
-
# event_source_name: "EventSourceName",
|
1274
|
-
# tags: [
|
1275
|
-
# {
|
1276
|
-
# key: "TagKey", # required
|
1277
|
-
# value: "TagValue", # required
|
1278
|
-
# },
|
1279
|
-
# ],
|
1280
|
-
# }
|
1281
|
-
#
|
1282
922
|
# @!attribute [rw] name
|
1283
923
|
# The name of the new event bus.
|
1284
924
|
#
|
@@ -1321,14 +961,6 @@ module Aws::CloudWatchEvents
|
|
1321
961
|
include Aws::Structure
|
1322
962
|
end
|
1323
963
|
|
1324
|
-
# @note When making an API call, you may pass CreatePartnerEventSourceRequest
|
1325
|
-
# data as a hash:
|
1326
|
-
#
|
1327
|
-
# {
|
1328
|
-
# name: "EventSourceName", # required
|
1329
|
-
# account: "AccountId", # required
|
1330
|
-
# }
|
1331
|
-
#
|
1332
964
|
# @!attribute [rw] name
|
1333
965
|
# The name of the partner event source. This name must be unique and
|
1334
966
|
# must be in the format ` partner_name/event_namespace/event_name `.
|
@@ -1363,13 +995,6 @@ module Aws::CloudWatchEvents
|
|
1363
995
|
include Aws::Structure
|
1364
996
|
end
|
1365
997
|
|
1366
|
-
# @note When making an API call, you may pass DeactivateEventSourceRequest
|
1367
|
-
# data as a hash:
|
1368
|
-
#
|
1369
|
-
# {
|
1370
|
-
# name: "EventSourceName", # required
|
1371
|
-
# }
|
1372
|
-
#
|
1373
998
|
# @!attribute [rw] name
|
1374
999
|
# The name of the partner event source to deactivate.
|
1375
1000
|
# @return [String]
|
@@ -1385,13 +1010,6 @@ module Aws::CloudWatchEvents
|
|
1385
1010
|
# A `DeadLetterConfig` object that contains information about a
|
1386
1011
|
# dead-letter queue configuration.
|
1387
1012
|
#
|
1388
|
-
# @note When making an API call, you may pass DeadLetterConfig
|
1389
|
-
# data as a hash:
|
1390
|
-
#
|
1391
|
-
# {
|
1392
|
-
# arn: "ResourceArn",
|
1393
|
-
# }
|
1394
|
-
#
|
1395
1013
|
# @!attribute [rw] arn
|
1396
1014
|
# The ARN of the SQS queue specified as the target for the dead-letter
|
1397
1015
|
# queue.
|
@@ -1405,13 +1023,6 @@ module Aws::CloudWatchEvents
|
|
1405
1023
|
include Aws::Structure
|
1406
1024
|
end
|
1407
1025
|
|
1408
|
-
# @note When making an API call, you may pass DeauthorizeConnectionRequest
|
1409
|
-
# data as a hash:
|
1410
|
-
#
|
1411
|
-
# {
|
1412
|
-
# name: "ConnectionName", # required
|
1413
|
-
# }
|
1414
|
-
#
|
1415
1026
|
# @!attribute [rw] name
|
1416
1027
|
# The name of the connection to remove authorization from.
|
1417
1028
|
# @return [String]
|
@@ -1456,13 +1067,6 @@ module Aws::CloudWatchEvents
|
|
1456
1067
|
include Aws::Structure
|
1457
1068
|
end
|
1458
1069
|
|
1459
|
-
# @note When making an API call, you may pass DeleteApiDestinationRequest
|
1460
|
-
# data as a hash:
|
1461
|
-
#
|
1462
|
-
# {
|
1463
|
-
# name: "ApiDestinationName", # required
|
1464
|
-
# }
|
1465
|
-
#
|
1466
1070
|
# @!attribute [rw] name
|
1467
1071
|
# The name of the destination to delete.
|
1468
1072
|
# @return [String]
|
@@ -1479,13 +1083,6 @@ module Aws::CloudWatchEvents
|
|
1479
1083
|
#
|
1480
1084
|
class DeleteApiDestinationResponse < Aws::EmptyStructure; end
|
1481
1085
|
|
1482
|
-
# @note When making an API call, you may pass DeleteArchiveRequest
|
1483
|
-
# data as a hash:
|
1484
|
-
#
|
1485
|
-
# {
|
1486
|
-
# archive_name: "ArchiveName", # required
|
1487
|
-
# }
|
1488
|
-
#
|
1489
1086
|
# @!attribute [rw] archive_name
|
1490
1087
|
# The name of the archive to delete.
|
1491
1088
|
# @return [String]
|
@@ -1502,13 +1099,6 @@ module Aws::CloudWatchEvents
|
|
1502
1099
|
#
|
1503
1100
|
class DeleteArchiveResponse < Aws::EmptyStructure; end
|
1504
1101
|
|
1505
|
-
# @note When making an API call, you may pass DeleteConnectionRequest
|
1506
|
-
# data as a hash:
|
1507
|
-
#
|
1508
|
-
# {
|
1509
|
-
# name: "ConnectionName", # required
|
1510
|
-
# }
|
1511
|
-
#
|
1512
1102
|
# @!attribute [rw] name
|
1513
1103
|
# The name of the connection to delete.
|
1514
1104
|
# @return [String]
|
@@ -1555,13 +1145,6 @@ module Aws::CloudWatchEvents
|
|
1555
1145
|
include Aws::Structure
|
1556
1146
|
end
|
1557
1147
|
|
1558
|
-
# @note When making an API call, you may pass DeleteEventBusRequest
|
1559
|
-
# data as a hash:
|
1560
|
-
#
|
1561
|
-
# {
|
1562
|
-
# name: "EventBusName", # required
|
1563
|
-
# }
|
1564
|
-
#
|
1565
1148
|
# @!attribute [rw] name
|
1566
1149
|
# The name of the event bus to delete.
|
1567
1150
|
# @return [String]
|
@@ -1574,14 +1157,6 @@ module Aws::CloudWatchEvents
|
|
1574
1157
|
include Aws::Structure
|
1575
1158
|
end
|
1576
1159
|
|
1577
|
-
# @note When making an API call, you may pass DeletePartnerEventSourceRequest
|
1578
|
-
# data as a hash:
|
1579
|
-
#
|
1580
|
-
# {
|
1581
|
-
# name: "EventSourceName", # required
|
1582
|
-
# account: "AccountId", # required
|
1583
|
-
# }
|
1584
|
-
#
|
1585
1160
|
# @!attribute [rw] name
|
1586
1161
|
# The name of the event source to delete.
|
1587
1162
|
# @return [String]
|
@@ -1600,15 +1175,6 @@ module Aws::CloudWatchEvents
|
|
1600
1175
|
include Aws::Structure
|
1601
1176
|
end
|
1602
1177
|
|
1603
|
-
# @note When making an API call, you may pass DeleteRuleRequest
|
1604
|
-
# data as a hash:
|
1605
|
-
#
|
1606
|
-
# {
|
1607
|
-
# name: "RuleName", # required
|
1608
|
-
# event_bus_name: "EventBusNameOrArn",
|
1609
|
-
# force: false,
|
1610
|
-
# }
|
1611
|
-
#
|
1612
1178
|
# @!attribute [rw] name
|
1613
1179
|
# The name of the rule.
|
1614
1180
|
# @return [String]
|
@@ -1637,13 +1203,6 @@ module Aws::CloudWatchEvents
|
|
1637
1203
|
include Aws::Structure
|
1638
1204
|
end
|
1639
1205
|
|
1640
|
-
# @note When making an API call, you may pass DescribeApiDestinationRequest
|
1641
|
-
# data as a hash:
|
1642
|
-
#
|
1643
|
-
# {
|
1644
|
-
# name: "ApiDestinationName", # required
|
1645
|
-
# }
|
1646
|
-
#
|
1647
1206
|
# @!attribute [rw] name
|
1648
1207
|
# The name of the API destination to retrieve.
|
1649
1208
|
# @return [String]
|
@@ -1722,13 +1281,6 @@ module Aws::CloudWatchEvents
|
|
1722
1281
|
include Aws::Structure
|
1723
1282
|
end
|
1724
1283
|
|
1725
|
-
# @note When making an API call, you may pass DescribeArchiveRequest
|
1726
|
-
# data as a hash:
|
1727
|
-
#
|
1728
|
-
# {
|
1729
|
-
# archive_name: "ArchiveName", # required
|
1730
|
-
# }
|
1731
|
-
#
|
1732
1284
|
# @!attribute [rw] archive_name
|
1733
1285
|
# The name of the archive to retrieve.
|
1734
1286
|
# @return [String]
|
@@ -1803,13 +1355,6 @@ module Aws::CloudWatchEvents
|
|
1803
1355
|
include Aws::Structure
|
1804
1356
|
end
|
1805
1357
|
|
1806
|
-
# @note When making an API call, you may pass DescribeConnectionRequest
|
1807
|
-
# data as a hash:
|
1808
|
-
#
|
1809
|
-
# {
|
1810
|
-
# name: "ConnectionName", # required
|
1811
|
-
# }
|
1812
|
-
#
|
1813
1358
|
# @!attribute [rw] name
|
1814
1359
|
# The name of the connection to retrieve.
|
1815
1360
|
# @return [String]
|
@@ -1885,13 +1430,6 @@ module Aws::CloudWatchEvents
|
|
1885
1430
|
include Aws::Structure
|
1886
1431
|
end
|
1887
1432
|
|
1888
|
-
# @note When making an API call, you may pass DescribeEventBusRequest
|
1889
|
-
# data as a hash:
|
1890
|
-
#
|
1891
|
-
# {
|
1892
|
-
# name: "EventBusNameOrArn",
|
1893
|
-
# }
|
1894
|
-
#
|
1895
1433
|
# @!attribute [rw] name
|
1896
1434
|
# The name or ARN of the event bus to show details for. If you omit
|
1897
1435
|
# this, the default event bus is displayed.
|
@@ -1929,13 +1467,6 @@ module Aws::CloudWatchEvents
|
|
1929
1467
|
include Aws::Structure
|
1930
1468
|
end
|
1931
1469
|
|
1932
|
-
# @note When making an API call, you may pass DescribeEventSourceRequest
|
1933
|
-
# data as a hash:
|
1934
|
-
#
|
1935
|
-
# {
|
1936
|
-
# name: "EventSourceName", # required
|
1937
|
-
# }
|
1938
|
-
#
|
1939
1470
|
# @!attribute [rw] name
|
1940
1471
|
# The name of the partner event source to display the details of.
|
1941
1472
|
# @return [String]
|
@@ -1991,13 +1522,6 @@ module Aws::CloudWatchEvents
|
|
1991
1522
|
include Aws::Structure
|
1992
1523
|
end
|
1993
1524
|
|
1994
|
-
# @note When making an API call, you may pass DescribePartnerEventSourceRequest
|
1995
|
-
# data as a hash:
|
1996
|
-
#
|
1997
|
-
# {
|
1998
|
-
# name: "EventSourceName", # required
|
1999
|
-
# }
|
2000
|
-
#
|
2001
1525
|
# @!attribute [rw] name
|
2002
1526
|
# The name of the event source to display.
|
2003
1527
|
# @return [String]
|
@@ -2027,13 +1551,6 @@ module Aws::CloudWatchEvents
|
|
2027
1551
|
include Aws::Structure
|
2028
1552
|
end
|
2029
1553
|
|
2030
|
-
# @note When making an API call, you may pass DescribeReplayRequest
|
2031
|
-
# data as a hash:
|
2032
|
-
#
|
2033
|
-
# {
|
2034
|
-
# replay_name: "ReplayName", # required
|
2035
|
-
# }
|
2036
|
-
#
|
2037
1554
|
# @!attribute [rw] replay_name
|
2038
1555
|
# The name of the replay to retrieve.
|
2039
1556
|
# @return [String]
|
@@ -2115,14 +1632,6 @@ module Aws::CloudWatchEvents
|
|
2115
1632
|
include Aws::Structure
|
2116
1633
|
end
|
2117
1634
|
|
2118
|
-
# @note When making an API call, you may pass DescribeRuleRequest
|
2119
|
-
# data as a hash:
|
2120
|
-
#
|
2121
|
-
# {
|
2122
|
-
# name: "RuleName", # required
|
2123
|
-
# event_bus_name: "EventBusNameOrArn",
|
2124
|
-
# }
|
2125
|
-
#
|
2126
1635
|
# @!attribute [rw] name
|
2127
1636
|
# The name of the rule.
|
2128
1637
|
# @return [String]
|
@@ -2212,14 +1721,6 @@ module Aws::CloudWatchEvents
|
|
2212
1721
|
include Aws::Structure
|
2213
1722
|
end
|
2214
1723
|
|
2215
|
-
# @note When making an API call, you may pass DisableRuleRequest
|
2216
|
-
# data as a hash:
|
2217
|
-
#
|
2218
|
-
# {
|
2219
|
-
# name: "RuleName", # required
|
2220
|
-
# event_bus_name: "EventBusNameOrArn",
|
2221
|
-
# }
|
2222
|
-
#
|
2223
1724
|
# @!attribute [rw] name
|
2224
1725
|
# The name of the rule.
|
2225
1726
|
# @return [String]
|
@@ -2241,53 +1742,6 @@ module Aws::CloudWatchEvents
|
|
2241
1742
|
# The custom parameters to be used when the target is an Amazon ECS
|
2242
1743
|
# task.
|
2243
1744
|
#
|
2244
|
-
# @note When making an API call, you may pass EcsParameters
|
2245
|
-
# data as a hash:
|
2246
|
-
#
|
2247
|
-
# {
|
2248
|
-
# task_definition_arn: "Arn", # required
|
2249
|
-
# task_count: 1,
|
2250
|
-
# launch_type: "EC2", # accepts EC2, FARGATE, EXTERNAL
|
2251
|
-
# network_configuration: {
|
2252
|
-
# awsvpc_configuration: {
|
2253
|
-
# subnets: ["String"], # required
|
2254
|
-
# security_groups: ["String"],
|
2255
|
-
# assign_public_ip: "ENABLED", # accepts ENABLED, DISABLED
|
2256
|
-
# },
|
2257
|
-
# },
|
2258
|
-
# platform_version: "String",
|
2259
|
-
# group: "String",
|
2260
|
-
# capacity_provider_strategy: [
|
2261
|
-
# {
|
2262
|
-
# capacity_provider: "CapacityProvider", # required
|
2263
|
-
# weight: 1,
|
2264
|
-
# base: 1,
|
2265
|
-
# },
|
2266
|
-
# ],
|
2267
|
-
# enable_ecs_managed_tags: false,
|
2268
|
-
# enable_execute_command: false,
|
2269
|
-
# placement_constraints: [
|
2270
|
-
# {
|
2271
|
-
# type: "distinctInstance", # accepts distinctInstance, memberOf
|
2272
|
-
# expression: "PlacementConstraintExpression",
|
2273
|
-
# },
|
2274
|
-
# ],
|
2275
|
-
# placement_strategy: [
|
2276
|
-
# {
|
2277
|
-
# type: "random", # accepts random, spread, binpack
|
2278
|
-
# field: "PlacementStrategyField",
|
2279
|
-
# },
|
2280
|
-
# ],
|
2281
|
-
# propagate_tags: "TASK_DEFINITION", # accepts TASK_DEFINITION
|
2282
|
-
# reference_id: "ReferenceId",
|
2283
|
-
# tags: [
|
2284
|
-
# {
|
2285
|
-
# key: "TagKey", # required
|
2286
|
-
# value: "TagValue", # required
|
2287
|
-
# },
|
2288
|
-
# ],
|
2289
|
-
# }
|
2290
|
-
#
|
2291
1745
|
# @!attribute [rw] task_definition_arn
|
2292
1746
|
# The ARN of the task definition to use if the event target is an
|
2293
1747
|
# Amazon ECS task.
|
@@ -2420,14 +1874,6 @@ module Aws::CloudWatchEvents
|
|
2420
1874
|
include Aws::Structure
|
2421
1875
|
end
|
2422
1876
|
|
2423
|
-
# @note When making an API call, you may pass EnableRuleRequest
|
2424
|
-
# data as a hash:
|
2425
|
-
#
|
2426
|
-
# {
|
2427
|
-
# name: "RuleName", # required
|
2428
|
-
# event_bus_name: "EventBusNameOrArn",
|
2429
|
-
# }
|
2430
|
-
#
|
2431
1877
|
# @!attribute [rw] name
|
2432
1878
|
# The name of the rule.
|
2433
1879
|
# @return [String]
|
@@ -2530,19 +1976,6 @@ module Aws::CloudWatchEvents
|
|
2530
1976
|
# these are merged with any InvocationParameters specified on the
|
2531
1977
|
# Connection, with any values from the Connection taking precedence.
|
2532
1978
|
#
|
2533
|
-
# @note When making an API call, you may pass HttpParameters
|
2534
|
-
# data as a hash:
|
2535
|
-
#
|
2536
|
-
# {
|
2537
|
-
# path_parameter_values: ["PathParameter"],
|
2538
|
-
# header_parameters: {
|
2539
|
-
# "HeaderKey" => "HeaderValue",
|
2540
|
-
# },
|
2541
|
-
# query_string_parameters: {
|
2542
|
-
# "QueryStringKey" => "QueryStringValue",
|
2543
|
-
# },
|
2544
|
-
# }
|
2545
|
-
#
|
2546
1979
|
# @!attribute [rw] path_parameter_values
|
2547
1980
|
# The path parameter values to be used to populate API Gateway REST
|
2548
1981
|
# API or EventBridge ApiDestination path wildcards ("*").
|
@@ -2578,16 +2011,6 @@ module Aws::CloudWatchEvents
|
|
2578
2011
|
# Contains the parameters needed for you to provide custom input to a
|
2579
2012
|
# target based on one or more pieces of data extracted from the event.
|
2580
2013
|
#
|
2581
|
-
# @note When making an API call, you may pass InputTransformer
|
2582
|
-
# data as a hash:
|
2583
|
-
#
|
2584
|
-
# {
|
2585
|
-
# input_paths_map: {
|
2586
|
-
# "InputTransformerPathKey" => "TargetInputPath",
|
2587
|
-
# },
|
2588
|
-
# input_template: "TransformerInput", # required
|
2589
|
-
# }
|
2590
|
-
#
|
2591
2014
|
# @!attribute [rw] input_paths_map
|
2592
2015
|
# Map of JSON paths to be extracted from the event. You can then
|
2593
2016
|
# insert these in the template in `InputTemplate` to produce the
|
@@ -2691,13 +2114,6 @@ module Aws::CloudWatchEvents
|
|
2691
2114
|
# not include this parameter, the default is to use the `eventId` as the
|
2692
2115
|
# partition key.
|
2693
2116
|
#
|
2694
|
-
# @note When making an API call, you may pass KinesisParameters
|
2695
|
-
# data as a hash:
|
2696
|
-
#
|
2697
|
-
# {
|
2698
|
-
# partition_key_path: "TargetPartitionKeyPath", # required
|
2699
|
-
# }
|
2700
|
-
#
|
2701
2117
|
# @!attribute [rw] partition_key_path
|
2702
2118
|
# The JSON path to be extracted from the event and used as the
|
2703
2119
|
# partition key. For more information, see [Amazon Kinesis Streams Key
|
@@ -2723,16 +2139,6 @@ module Aws::CloudWatchEvents
|
|
2723
2139
|
#
|
2724
2140
|
class LimitExceededException < Aws::EmptyStructure; end
|
2725
2141
|
|
2726
|
-
# @note When making an API call, you may pass ListApiDestinationsRequest
|
2727
|
-
# data as a hash:
|
2728
|
-
#
|
2729
|
-
# {
|
2730
|
-
# name_prefix: "ApiDestinationName",
|
2731
|
-
# connection_arn: "ConnectionArn",
|
2732
|
-
# next_token: "NextToken",
|
2733
|
-
# limit: 1,
|
2734
|
-
# }
|
2735
|
-
#
|
2736
2142
|
# @!attribute [rw] name_prefix
|
2737
2143
|
# A name prefix to filter results returned. Only API destinations with
|
2738
2144
|
# a name that starts with the prefix are returned.
|
@@ -2781,17 +2187,6 @@ module Aws::CloudWatchEvents
|
|
2781
2187
|
include Aws::Structure
|
2782
2188
|
end
|
2783
2189
|
|
2784
|
-
# @note When making an API call, you may pass ListArchivesRequest
|
2785
|
-
# data as a hash:
|
2786
|
-
#
|
2787
|
-
# {
|
2788
|
-
# name_prefix: "ArchiveName",
|
2789
|
-
# event_source_arn: "Arn",
|
2790
|
-
# state: "ENABLED", # accepts ENABLED, DISABLED, CREATING, UPDATING, CREATE_FAILED, UPDATE_FAILED
|
2791
|
-
# next_token: "NextToken",
|
2792
|
-
# limit: 1,
|
2793
|
-
# }
|
2794
|
-
#
|
2795
2190
|
# @!attribute [rw] name_prefix
|
2796
2191
|
# A name prefix to filter the archives returned. Only archives with
|
2797
2192
|
# name that match the prefix are returned.
|
@@ -2844,16 +2239,6 @@ module Aws::CloudWatchEvents
|
|
2844
2239
|
include Aws::Structure
|
2845
2240
|
end
|
2846
2241
|
|
2847
|
-
# @note When making an API call, you may pass ListConnectionsRequest
|
2848
|
-
# data as a hash:
|
2849
|
-
#
|
2850
|
-
# {
|
2851
|
-
# name_prefix: "ConnectionName",
|
2852
|
-
# connection_state: "CREATING", # accepts CREATING, UPDATING, DELETING, AUTHORIZED, DEAUTHORIZED, AUTHORIZING, DEAUTHORIZING
|
2853
|
-
# next_token: "NextToken",
|
2854
|
-
# limit: 1,
|
2855
|
-
# }
|
2856
|
-
#
|
2857
2242
|
# @!attribute [rw] name_prefix
|
2858
2243
|
# A name prefix to filter results returned. Only connections with a
|
2859
2244
|
# name that starts with the prefix are returned.
|
@@ -2902,15 +2287,6 @@ module Aws::CloudWatchEvents
|
|
2902
2287
|
include Aws::Structure
|
2903
2288
|
end
|
2904
2289
|
|
2905
|
-
# @note When making an API call, you may pass ListEventBusesRequest
|
2906
|
-
# data as a hash:
|
2907
|
-
#
|
2908
|
-
# {
|
2909
|
-
# name_prefix: "EventBusName",
|
2910
|
-
# next_token: "NextToken",
|
2911
|
-
# limit: 1,
|
2912
|
-
# }
|
2913
|
-
#
|
2914
2290
|
# @!attribute [rw] name_prefix
|
2915
2291
|
# Specifying this limits the results to only those event buses with
|
2916
2292
|
# names that start with the specified prefix.
|
@@ -2955,15 +2331,6 @@ module Aws::CloudWatchEvents
|
|
2955
2331
|
include Aws::Structure
|
2956
2332
|
end
|
2957
2333
|
|
2958
|
-
# @note When making an API call, you may pass ListEventSourcesRequest
|
2959
|
-
# data as a hash:
|
2960
|
-
#
|
2961
|
-
# {
|
2962
|
-
# name_prefix: "EventSourceNamePrefix",
|
2963
|
-
# next_token: "NextToken",
|
2964
|
-
# limit: 1,
|
2965
|
-
# }
|
2966
|
-
#
|
2967
2334
|
# @!attribute [rw] name_prefix
|
2968
2335
|
# Specifying this limits the results to only those partner event
|
2969
2336
|
# sources with names that start with the specified prefix.
|
@@ -3008,15 +2375,6 @@ module Aws::CloudWatchEvents
|
|
3008
2375
|
include Aws::Structure
|
3009
2376
|
end
|
3010
2377
|
|
3011
|
-
# @note When making an API call, you may pass ListPartnerEventSourceAccountsRequest
|
3012
|
-
# data as a hash:
|
3013
|
-
#
|
3014
|
-
# {
|
3015
|
-
# event_source_name: "EventSourceName", # required
|
3016
|
-
# next_token: "NextToken",
|
3017
|
-
# limit: 1,
|
3018
|
-
# }
|
3019
|
-
#
|
3020
2378
|
# @!attribute [rw] event_source_name
|
3021
2379
|
# The name of the partner event source to display account information
|
3022
2380
|
# about.
|
@@ -3061,15 +2419,6 @@ module Aws::CloudWatchEvents
|
|
3061
2419
|
include Aws::Structure
|
3062
2420
|
end
|
3063
2421
|
|
3064
|
-
# @note When making an API call, you may pass ListPartnerEventSourcesRequest
|
3065
|
-
# data as a hash:
|
3066
|
-
#
|
3067
|
-
# {
|
3068
|
-
# name_prefix: "PartnerEventSourceNamePrefix", # required
|
3069
|
-
# next_token: "NextToken",
|
3070
|
-
# limit: 1,
|
3071
|
-
# }
|
3072
|
-
#
|
3073
2422
|
# @!attribute [rw] name_prefix
|
3074
2423
|
# If you specify this, the results are limited to only those partner
|
3075
2424
|
# event sources that start with the string you specify.
|
@@ -3114,17 +2463,6 @@ module Aws::CloudWatchEvents
|
|
3114
2463
|
include Aws::Structure
|
3115
2464
|
end
|
3116
2465
|
|
3117
|
-
# @note When making an API call, you may pass ListReplaysRequest
|
3118
|
-
# data as a hash:
|
3119
|
-
#
|
3120
|
-
# {
|
3121
|
-
# name_prefix: "ReplayName",
|
3122
|
-
# state: "STARTING", # accepts STARTING, RUNNING, CANCELLING, COMPLETED, CANCELLED, FAILED
|
3123
|
-
# event_source_arn: "Arn",
|
3124
|
-
# next_token: "NextToken",
|
3125
|
-
# limit: 1,
|
3126
|
-
# }
|
3127
|
-
#
|
3128
2466
|
# @!attribute [rw] name_prefix
|
3129
2467
|
# A name prefix to filter the replays returned. Only replays with name
|
3130
2468
|
# that match the prefix are returned.
|
@@ -3178,16 +2516,6 @@ module Aws::CloudWatchEvents
|
|
3178
2516
|
include Aws::Structure
|
3179
2517
|
end
|
3180
2518
|
|
3181
|
-
# @note When making an API call, you may pass ListRuleNamesByTargetRequest
|
3182
|
-
# data as a hash:
|
3183
|
-
#
|
3184
|
-
# {
|
3185
|
-
# target_arn: "TargetArn", # required
|
3186
|
-
# event_bus_name: "EventBusNameOrArn",
|
3187
|
-
# next_token: "NextToken",
|
3188
|
-
# limit: 1,
|
3189
|
-
# }
|
3190
|
-
#
|
3191
2519
|
# @!attribute [rw] target_arn
|
3192
2520
|
# The Amazon Resource Name (ARN) of the target resource.
|
3193
2521
|
# @return [String]
|
@@ -3235,16 +2563,6 @@ module Aws::CloudWatchEvents
|
|
3235
2563
|
include Aws::Structure
|
3236
2564
|
end
|
3237
2565
|
|
3238
|
-
# @note When making an API call, you may pass ListRulesRequest
|
3239
|
-
# data as a hash:
|
3240
|
-
#
|
3241
|
-
# {
|
3242
|
-
# name_prefix: "RuleName",
|
3243
|
-
# event_bus_name: "EventBusNameOrArn",
|
3244
|
-
# next_token: "NextToken",
|
3245
|
-
# limit: 1,
|
3246
|
-
# }
|
3247
|
-
#
|
3248
2566
|
# @!attribute [rw] name_prefix
|
3249
2567
|
# The prefix matching the rule name.
|
3250
2568
|
# @return [String]
|
@@ -3292,13 +2610,6 @@ module Aws::CloudWatchEvents
|
|
3292
2610
|
include Aws::Structure
|
3293
2611
|
end
|
3294
2612
|
|
3295
|
-
# @note When making an API call, you may pass ListTagsForResourceRequest
|
3296
|
-
# data as a hash:
|
3297
|
-
#
|
3298
|
-
# {
|
3299
|
-
# resource_arn: "Arn", # required
|
3300
|
-
# }
|
3301
|
-
#
|
3302
2613
|
# @!attribute [rw] resource_arn
|
3303
2614
|
# The ARN of the EventBridge resource for which you want to view tags.
|
3304
2615
|
# @return [String]
|
@@ -3324,16 +2635,6 @@ module Aws::CloudWatchEvents
|
|
3324
2635
|
include Aws::Structure
|
3325
2636
|
end
|
3326
2637
|
|
3327
|
-
# @note When making an API call, you may pass ListTargetsByRuleRequest
|
3328
|
-
# data as a hash:
|
3329
|
-
#
|
3330
|
-
# {
|
3331
|
-
# rule: "RuleName", # required
|
3332
|
-
# event_bus_name: "EventBusNameOrArn",
|
3333
|
-
# next_token: "NextToken",
|
3334
|
-
# limit: 1,
|
3335
|
-
# }
|
3336
|
-
#
|
3337
2638
|
# @!attribute [rw] rule
|
3338
2639
|
# The name of the rule.
|
3339
2640
|
# @return [String]
|
@@ -3395,17 +2696,6 @@ module Aws::CloudWatchEvents
|
|
3395
2696
|
|
3396
2697
|
# This structure specifies the network configuration for an ECS task.
|
3397
2698
|
#
|
3398
|
-
# @note When making an API call, you may pass NetworkConfiguration
|
3399
|
-
# data as a hash:
|
3400
|
-
#
|
3401
|
-
# {
|
3402
|
-
# awsvpc_configuration: {
|
3403
|
-
# subnets: ["String"], # required
|
3404
|
-
# security_groups: ["String"],
|
3405
|
-
# assign_public_ip: "ENABLED", # accepts ENABLED, DISABLED
|
3406
|
-
# },
|
3407
|
-
# }
|
3408
|
-
#
|
3409
2699
|
# @!attribute [rw] awsvpc_configuration
|
3410
2700
|
# Use this structure to specify the VPC subnets and security groups
|
3411
2701
|
# for the task, and whether a public IP address is to be used. This
|
@@ -3494,14 +2784,6 @@ module Aws::CloudWatchEvents
|
|
3494
2784
|
#
|
3495
2785
|
# [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task-placement-constraints.html
|
3496
2786
|
#
|
3497
|
-
# @note When making an API call, you may pass PlacementConstraint
|
3498
|
-
# data as a hash:
|
3499
|
-
#
|
3500
|
-
# {
|
3501
|
-
# type: "distinctInstance", # accepts distinctInstance, memberOf
|
3502
|
-
# expression: "PlacementConstraintExpression",
|
3503
|
-
# }
|
3504
|
-
#
|
3505
2787
|
# @!attribute [rw] type
|
3506
2788
|
# The type of constraint. Use distinctInstance to ensure that each
|
3507
2789
|
# task in a particular group is running on a different container
|
@@ -3537,14 +2819,6 @@ module Aws::CloudWatchEvents
|
|
3537
2819
|
#
|
3538
2820
|
# [1]: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task-placement-strategies.html
|
3539
2821
|
#
|
3540
|
-
# @note When making an API call, you may pass PlacementStrategy
|
3541
|
-
# data as a hash:
|
3542
|
-
#
|
3543
|
-
# {
|
3544
|
-
# type: "random", # accepts random, spread, binpack
|
3545
|
-
# field: "PlacementStrategyField",
|
3546
|
-
# }
|
3547
|
-
#
|
3548
2822
|
# @!attribute [rw] type
|
3549
2823
|
# The type of placement strategy. The random placement strategy
|
3550
2824
|
# randomly places tasks on available candidates. The spread placement
|
@@ -3582,23 +2856,6 @@ module Aws::CloudWatchEvents
|
|
3582
2856
|
#
|
3583
2857
|
class PolicyLengthExceededException < Aws::EmptyStructure; end
|
3584
2858
|
|
3585
|
-
# @note When making an API call, you may pass PutEventsRequest
|
3586
|
-
# data as a hash:
|
3587
|
-
#
|
3588
|
-
# {
|
3589
|
-
# entries: [ # required
|
3590
|
-
# {
|
3591
|
-
# time: Time.now,
|
3592
|
-
# source: "String",
|
3593
|
-
# resources: ["EventResource"],
|
3594
|
-
# detail_type: "String",
|
3595
|
-
# detail: "String",
|
3596
|
-
# event_bus_name: "NonPartnerEventBusNameOrArn",
|
3597
|
-
# trace_header: "TraceHeader",
|
3598
|
-
# },
|
3599
|
-
# ],
|
3600
|
-
# }
|
3601
|
-
#
|
3602
2859
|
# @!attribute [rw] entries
|
3603
2860
|
# The entry that defines an event in your system. You can specify
|
3604
2861
|
# several parameters for the entry such as the source and type of the
|
@@ -3615,19 +2872,6 @@ module Aws::CloudWatchEvents
|
|
3615
2872
|
|
3616
2873
|
# Represents an event to be submitted.
|
3617
2874
|
#
|
3618
|
-
# @note When making an API call, you may pass PutEventsRequestEntry
|
3619
|
-
# data as a hash:
|
3620
|
-
#
|
3621
|
-
# {
|
3622
|
-
# time: Time.now,
|
3623
|
-
# source: "String",
|
3624
|
-
# resources: ["EventResource"],
|
3625
|
-
# detail_type: "String",
|
3626
|
-
# detail: "String",
|
3627
|
-
# event_bus_name: "NonPartnerEventBusNameOrArn",
|
3628
|
-
# trace_header: "TraceHeader",
|
3629
|
-
# }
|
3630
|
-
#
|
3631
2875
|
# @!attribute [rw] time
|
3632
2876
|
# The time stamp of the event, per [RFC3339][1]. If no time stamp is
|
3633
2877
|
# provided, the time stamp of the [PutEvents][2] call is used.
|
@@ -3734,21 +2978,6 @@ module Aws::CloudWatchEvents
|
|
3734
2978
|
include Aws::Structure
|
3735
2979
|
end
|
3736
2980
|
|
3737
|
-
# @note When making an API call, you may pass PutPartnerEventsRequest
|
3738
|
-
# data as a hash:
|
3739
|
-
#
|
3740
|
-
# {
|
3741
|
-
# entries: [ # required
|
3742
|
-
# {
|
3743
|
-
# time: Time.now,
|
3744
|
-
# source: "EventSourceName",
|
3745
|
-
# resources: ["EventResource"],
|
3746
|
-
# detail_type: "String",
|
3747
|
-
# detail: "String",
|
3748
|
-
# },
|
3749
|
-
# ],
|
3750
|
-
# }
|
3751
|
-
#
|
3752
2981
|
# @!attribute [rw] entries
|
3753
2982
|
# The list of events to write to the event bus.
|
3754
2983
|
# @return [Array<Types::PutPartnerEventsRequestEntry>]
|
@@ -3763,17 +2992,6 @@ module Aws::CloudWatchEvents
|
|
3763
2992
|
|
3764
2993
|
# The details about an event generated by an SaaS partner.
|
3765
2994
|
#
|
3766
|
-
# @note When making an API call, you may pass PutPartnerEventsRequestEntry
|
3767
|
-
# data as a hash:
|
3768
|
-
#
|
3769
|
-
# {
|
3770
|
-
# time: Time.now,
|
3771
|
-
# source: "EventSourceName",
|
3772
|
-
# resources: ["EventResource"],
|
3773
|
-
# detail_type: "String",
|
3774
|
-
# detail: "String",
|
3775
|
-
# }
|
3776
|
-
#
|
3777
2995
|
# @!attribute [rw] time
|
3778
2996
|
# The date and time of the event.
|
3779
2997
|
# @return [Time]
|
@@ -3853,22 +3071,6 @@ module Aws::CloudWatchEvents
|
|
3853
3071
|
include Aws::Structure
|
3854
3072
|
end
|
3855
3073
|
|
3856
|
-
# @note When making an API call, you may pass PutPermissionRequest
|
3857
|
-
# data as a hash:
|
3858
|
-
#
|
3859
|
-
# {
|
3860
|
-
# event_bus_name: "NonPartnerEventBusName",
|
3861
|
-
# action: "Action",
|
3862
|
-
# principal: "Principal",
|
3863
|
-
# statement_id: "StatementId",
|
3864
|
-
# condition: {
|
3865
|
-
# type: "String", # required
|
3866
|
-
# key: "String", # required
|
3867
|
-
# value: "String", # required
|
3868
|
-
# },
|
3869
|
-
# policy: "String",
|
3870
|
-
# }
|
3871
|
-
#
|
3872
3074
|
# @!attribute [rw] event_bus_name
|
3873
3075
|
# The name of the event bus associated with the rule. If you omit
|
3874
3076
|
# this, the default event bus is used.
|
@@ -3941,25 +3143,6 @@ module Aws::CloudWatchEvents
|
|
3941
3143
|
include Aws::Structure
|
3942
3144
|
end
|
3943
3145
|
|
3944
|
-
# @note When making an API call, you may pass PutRuleRequest
|
3945
|
-
# data as a hash:
|
3946
|
-
#
|
3947
|
-
# {
|
3948
|
-
# name: "RuleName", # required
|
3949
|
-
# schedule_expression: "ScheduleExpression",
|
3950
|
-
# event_pattern: "EventPattern",
|
3951
|
-
# state: "ENABLED", # accepts ENABLED, DISABLED
|
3952
|
-
# description: "RuleDescription",
|
3953
|
-
# role_arn: "RoleArn",
|
3954
|
-
# tags: [
|
3955
|
-
# {
|
3956
|
-
# key: "TagKey", # required
|
3957
|
-
# value: "TagValue", # required
|
3958
|
-
# },
|
3959
|
-
# ],
|
3960
|
-
# event_bus_name: "EventBusNameOrArn",
|
3961
|
-
# }
|
3962
|
-
#
|
3963
3146
|
# @!attribute [rw] name
|
3964
3147
|
# The name of the rule that you are creating or updating.
|
3965
3148
|
# @return [String]
|
@@ -4033,128 +3216,6 @@ module Aws::CloudWatchEvents
|
|
4033
3216
|
include Aws::Structure
|
4034
3217
|
end
|
4035
3218
|
|
4036
|
-
# @note When making an API call, you may pass PutTargetsRequest
|
4037
|
-
# data as a hash:
|
4038
|
-
#
|
4039
|
-
# {
|
4040
|
-
# rule: "RuleName", # required
|
4041
|
-
# event_bus_name: "EventBusNameOrArn",
|
4042
|
-
# targets: [ # required
|
4043
|
-
# {
|
4044
|
-
# id: "TargetId", # required
|
4045
|
-
# arn: "TargetArn", # required
|
4046
|
-
# role_arn: "RoleArn",
|
4047
|
-
# input: "TargetInput",
|
4048
|
-
# input_path: "TargetInputPath",
|
4049
|
-
# input_transformer: {
|
4050
|
-
# input_paths_map: {
|
4051
|
-
# "InputTransformerPathKey" => "TargetInputPath",
|
4052
|
-
# },
|
4053
|
-
# input_template: "TransformerInput", # required
|
4054
|
-
# },
|
4055
|
-
# kinesis_parameters: {
|
4056
|
-
# partition_key_path: "TargetPartitionKeyPath", # required
|
4057
|
-
# },
|
4058
|
-
# run_command_parameters: {
|
4059
|
-
# run_command_targets: [ # required
|
4060
|
-
# {
|
4061
|
-
# key: "RunCommandTargetKey", # required
|
4062
|
-
# values: ["RunCommandTargetValue"], # required
|
4063
|
-
# },
|
4064
|
-
# ],
|
4065
|
-
# },
|
4066
|
-
# ecs_parameters: {
|
4067
|
-
# task_definition_arn: "Arn", # required
|
4068
|
-
# task_count: 1,
|
4069
|
-
# launch_type: "EC2", # accepts EC2, FARGATE, EXTERNAL
|
4070
|
-
# network_configuration: {
|
4071
|
-
# awsvpc_configuration: {
|
4072
|
-
# subnets: ["String"], # required
|
4073
|
-
# security_groups: ["String"],
|
4074
|
-
# assign_public_ip: "ENABLED", # accepts ENABLED, DISABLED
|
4075
|
-
# },
|
4076
|
-
# },
|
4077
|
-
# platform_version: "String",
|
4078
|
-
# group: "String",
|
4079
|
-
# capacity_provider_strategy: [
|
4080
|
-
# {
|
4081
|
-
# capacity_provider: "CapacityProvider", # required
|
4082
|
-
# weight: 1,
|
4083
|
-
# base: 1,
|
4084
|
-
# },
|
4085
|
-
# ],
|
4086
|
-
# enable_ecs_managed_tags: false,
|
4087
|
-
# enable_execute_command: false,
|
4088
|
-
# placement_constraints: [
|
4089
|
-
# {
|
4090
|
-
# type: "distinctInstance", # accepts distinctInstance, memberOf
|
4091
|
-
# expression: "PlacementConstraintExpression",
|
4092
|
-
# },
|
4093
|
-
# ],
|
4094
|
-
# placement_strategy: [
|
4095
|
-
# {
|
4096
|
-
# type: "random", # accepts random, spread, binpack
|
4097
|
-
# field: "PlacementStrategyField",
|
4098
|
-
# },
|
4099
|
-
# ],
|
4100
|
-
# propagate_tags: "TASK_DEFINITION", # accepts TASK_DEFINITION
|
4101
|
-
# reference_id: "ReferenceId",
|
4102
|
-
# tags: [
|
4103
|
-
# {
|
4104
|
-
# key: "TagKey", # required
|
4105
|
-
# value: "TagValue", # required
|
4106
|
-
# },
|
4107
|
-
# ],
|
4108
|
-
# },
|
4109
|
-
# batch_parameters: {
|
4110
|
-
# job_definition: "String", # required
|
4111
|
-
# job_name: "String", # required
|
4112
|
-
# array_properties: {
|
4113
|
-
# size: 1,
|
4114
|
-
# },
|
4115
|
-
# retry_strategy: {
|
4116
|
-
# attempts: 1,
|
4117
|
-
# },
|
4118
|
-
# },
|
4119
|
-
# sqs_parameters: {
|
4120
|
-
# message_group_id: "MessageGroupId",
|
4121
|
-
# },
|
4122
|
-
# http_parameters: {
|
4123
|
-
# path_parameter_values: ["PathParameter"],
|
4124
|
-
# header_parameters: {
|
4125
|
-
# "HeaderKey" => "HeaderValue",
|
4126
|
-
# },
|
4127
|
-
# query_string_parameters: {
|
4128
|
-
# "QueryStringKey" => "QueryStringValue",
|
4129
|
-
# },
|
4130
|
-
# },
|
4131
|
-
# redshift_data_parameters: {
|
4132
|
-
# secret_manager_arn: "RedshiftSecretManagerArn",
|
4133
|
-
# database: "Database", # required
|
4134
|
-
# db_user: "DbUser",
|
4135
|
-
# sql: "Sql", # required
|
4136
|
-
# statement_name: "StatementName",
|
4137
|
-
# with_event: false,
|
4138
|
-
# },
|
4139
|
-
# sage_maker_pipeline_parameters: {
|
4140
|
-
# pipeline_parameter_list: [
|
4141
|
-
# {
|
4142
|
-
# name: "SageMakerPipelineParameterName", # required
|
4143
|
-
# value: "SageMakerPipelineParameterValue", # required
|
4144
|
-
# },
|
4145
|
-
# ],
|
4146
|
-
# },
|
4147
|
-
# dead_letter_config: {
|
4148
|
-
# arn: "ResourceArn",
|
4149
|
-
# },
|
4150
|
-
# retry_policy: {
|
4151
|
-
# maximum_retry_attempts: 1,
|
4152
|
-
# maximum_event_age_in_seconds: 1,
|
4153
|
-
# },
|
4154
|
-
# },
|
4155
|
-
# ],
|
4156
|
-
# }
|
4157
|
-
#
|
4158
3219
|
# @!attribute [rw] rule
|
4159
3220
|
# The name of the rule.
|
4160
3221
|
# @return [String]
|
@@ -4225,18 +3286,6 @@ module Aws::CloudWatchEvents
|
|
4225
3286
|
# Redshift cluster to invoke the Amazon Redshift Data API
|
4226
3287
|
# ExecuteStatement based on EventBridge events.
|
4227
3288
|
#
|
4228
|
-
# @note When making an API call, you may pass RedshiftDataParameters
|
4229
|
-
# data as a hash:
|
4230
|
-
#
|
4231
|
-
# {
|
4232
|
-
# secret_manager_arn: "RedshiftSecretManagerArn",
|
4233
|
-
# database: "Database", # required
|
4234
|
-
# db_user: "DbUser",
|
4235
|
-
# sql: "Sql", # required
|
4236
|
-
# statement_name: "StatementName",
|
4237
|
-
# with_event: false,
|
4238
|
-
# }
|
4239
|
-
#
|
4240
3289
|
# @!attribute [rw] secret_manager_arn
|
4241
3290
|
# The name or ARN of the secret that enables access to the database.
|
4242
3291
|
# Required when authenticating using Amazon Web Services Secrets
|
@@ -4280,15 +3329,6 @@ module Aws::CloudWatchEvents
|
|
4280
3329
|
include Aws::Structure
|
4281
3330
|
end
|
4282
3331
|
|
4283
|
-
# @note When making an API call, you may pass RemovePermissionRequest
|
4284
|
-
# data as a hash:
|
4285
|
-
#
|
4286
|
-
# {
|
4287
|
-
# statement_id: "StatementId",
|
4288
|
-
# remove_all_permissions: false,
|
4289
|
-
# event_bus_name: "NonPartnerEventBusName",
|
4290
|
-
# }
|
4291
|
-
#
|
4292
3332
|
# @!attribute [rw] statement_id
|
4293
3333
|
# The statement ID corresponding to the account that is no longer
|
4294
3334
|
# allowed to put events to the default event bus.
|
@@ -4313,16 +3353,6 @@ module Aws::CloudWatchEvents
|
|
4313
3353
|
include Aws::Structure
|
4314
3354
|
end
|
4315
3355
|
|
4316
|
-
# @note When making an API call, you may pass RemoveTargetsRequest
|
4317
|
-
# data as a hash:
|
4318
|
-
#
|
4319
|
-
# {
|
4320
|
-
# rule: "RuleName", # required
|
4321
|
-
# event_bus_name: "EventBusNameOrArn",
|
4322
|
-
# ids: ["TargetId"], # required
|
4323
|
-
# force: false,
|
4324
|
-
# }
|
4325
|
-
#
|
4326
3356
|
# @!attribute [rw] rule
|
4327
3357
|
# The name of the rule.
|
4328
3358
|
# @return [String]
|
@@ -4461,14 +3491,6 @@ module Aws::CloudWatchEvents
|
|
4461
3491
|
|
4462
3492
|
# A `ReplayDestination` object that contains details about a replay.
|
4463
3493
|
#
|
4464
|
-
# @note When making an API call, you may pass ReplayDestination
|
4465
|
-
# data as a hash:
|
4466
|
-
#
|
4467
|
-
# {
|
4468
|
-
# arn: "Arn", # required
|
4469
|
-
# filter_arns: ["Arn"],
|
4470
|
-
# }
|
4471
|
-
#
|
4472
3494
|
# @!attribute [rw] arn
|
4473
3495
|
# The ARN of the event bus to replay event to. You can replay events
|
4474
3496
|
# only to the event bus specified to create the archive.
|
@@ -4502,14 +3524,6 @@ module Aws::CloudWatchEvents
|
|
4502
3524
|
# A `RetryPolicy` object that includes information about the retry
|
4503
3525
|
# policy settings.
|
4504
3526
|
#
|
4505
|
-
# @note When making an API call, you may pass RetryPolicy
|
4506
|
-
# data as a hash:
|
4507
|
-
#
|
4508
|
-
# {
|
4509
|
-
# maximum_retry_attempts: 1,
|
4510
|
-
# maximum_event_age_in_seconds: 1,
|
4511
|
-
# }
|
4512
|
-
#
|
4513
3527
|
# @!attribute [rw] maximum_retry_attempts
|
4514
3528
|
# The maximum number of retry attempts to make before the request
|
4515
3529
|
# fails. Retry attempts continue until either the maximum number of
|
@@ -4609,18 +3623,6 @@ module Aws::CloudWatchEvents
|
|
4609
3623
|
# This parameter contains the criteria (either InstanceIds or a tag)
|
4610
3624
|
# used to specify which EC2 instances are to be sent the command.
|
4611
3625
|
#
|
4612
|
-
# @note When making an API call, you may pass RunCommandParameters
|
4613
|
-
# data as a hash:
|
4614
|
-
#
|
4615
|
-
# {
|
4616
|
-
# run_command_targets: [ # required
|
4617
|
-
# {
|
4618
|
-
# key: "RunCommandTargetKey", # required
|
4619
|
-
# values: ["RunCommandTargetValue"], # required
|
4620
|
-
# },
|
4621
|
-
# ],
|
4622
|
-
# }
|
4623
|
-
#
|
4624
3626
|
# @!attribute [rw] run_command_targets
|
4625
3627
|
# Currently, we support including only one RunCommandTarget block,
|
4626
3628
|
# which specifies either an array of InstanceIds or a tag.
|
@@ -4638,14 +3640,6 @@ module Aws::CloudWatchEvents
|
|
4638
3640
|
# specified as key-value pairs. Each `RunCommandTarget` block can
|
4639
3641
|
# include only one key, but this key may specify multiple values.
|
4640
3642
|
#
|
4641
|
-
# @note When making an API call, you may pass RunCommandTarget
|
4642
|
-
# data as a hash:
|
4643
|
-
#
|
4644
|
-
# {
|
4645
|
-
# key: "RunCommandTargetKey", # required
|
4646
|
-
# values: ["RunCommandTargetValue"], # required
|
4647
|
-
# }
|
4648
|
-
#
|
4649
3643
|
# @!attribute [rw] key
|
4650
3644
|
# Can be either `tag:` *tag-key* or `InstanceIds`.
|
4651
3645
|
# @return [String]
|
@@ -4668,14 +3662,6 @@ module Aws::CloudWatchEvents
|
|
4668
3662
|
# Name/Value pair of a parameter to start execution of a SageMaker Model
|
4669
3663
|
# Building Pipeline.
|
4670
3664
|
#
|
4671
|
-
# @note When making an API call, you may pass SageMakerPipelineParameter
|
4672
|
-
# data as a hash:
|
4673
|
-
#
|
4674
|
-
# {
|
4675
|
-
# name: "SageMakerPipelineParameterName", # required
|
4676
|
-
# value: "SageMakerPipelineParameterValue", # required
|
4677
|
-
# }
|
4678
|
-
#
|
4679
3665
|
# @!attribute [rw] name
|
4680
3666
|
# Name of parameter to start execution of a SageMaker Model Building
|
4681
3667
|
# Pipeline.
|
@@ -4698,18 +3684,6 @@ module Aws::CloudWatchEvents
|
|
4698
3684
|
# These are custom parameters to use when the target is a SageMaker
|
4699
3685
|
# Model Building Pipeline that starts based on EventBridge events.
|
4700
3686
|
#
|
4701
|
-
# @note When making an API call, you may pass SageMakerPipelineParameters
|
4702
|
-
# data as a hash:
|
4703
|
-
#
|
4704
|
-
# {
|
4705
|
-
# pipeline_parameter_list: [
|
4706
|
-
# {
|
4707
|
-
# name: "SageMakerPipelineParameterName", # required
|
4708
|
-
# value: "SageMakerPipelineParameterValue", # required
|
4709
|
-
# },
|
4710
|
-
# ],
|
4711
|
-
# }
|
4712
|
-
#
|
4713
3687
|
# @!attribute [rw] pipeline_parameter_list
|
4714
3688
|
# List of Parameter names and values for SageMaker Model Building
|
4715
3689
|
# Pipeline execution.
|
@@ -4726,13 +3700,6 @@ module Aws::CloudWatchEvents
|
|
4726
3700
|
# This structure includes the custom parameter to be used when the
|
4727
3701
|
# target is an SQS FIFO queue.
|
4728
3702
|
#
|
4729
|
-
# @note When making an API call, you may pass SqsParameters
|
4730
|
-
# data as a hash:
|
4731
|
-
#
|
4732
|
-
# {
|
4733
|
-
# message_group_id: "MessageGroupId",
|
4734
|
-
# }
|
4735
|
-
#
|
4736
3703
|
# @!attribute [rw] message_group_id
|
4737
3704
|
# The FIFO message group ID to use as the target.
|
4738
3705
|
# @return [String]
|
@@ -4745,21 +3712,6 @@ module Aws::CloudWatchEvents
|
|
4745
3712
|
include Aws::Structure
|
4746
3713
|
end
|
4747
3714
|
|
4748
|
-
# @note When making an API call, you may pass StartReplayRequest
|
4749
|
-
# data as a hash:
|
4750
|
-
#
|
4751
|
-
# {
|
4752
|
-
# replay_name: "ReplayName", # required
|
4753
|
-
# description: "ReplayDescription",
|
4754
|
-
# event_source_arn: "Arn", # required
|
4755
|
-
# event_start_time: Time.now, # required
|
4756
|
-
# event_end_time: Time.now, # required
|
4757
|
-
# destination: { # required
|
4758
|
-
# arn: "Arn", # required
|
4759
|
-
# filter_arns: ["Arn"],
|
4760
|
-
# },
|
4761
|
-
# }
|
4762
|
-
#
|
4763
3715
|
# @!attribute [rw] replay_name
|
4764
3716
|
# The name of the replay to start.
|
4765
3717
|
# @return [String]
|
@@ -4832,14 +3784,6 @@ module Aws::CloudWatchEvents
|
|
4832
3784
|
# A key-value pair associated with an Amazon Web Services resource. In
|
4833
3785
|
# EventBridge, rules and event buses support tagging.
|
4834
3786
|
#
|
4835
|
-
# @note When making an API call, you may pass Tag
|
4836
|
-
# data as a hash:
|
4837
|
-
#
|
4838
|
-
# {
|
4839
|
-
# key: "TagKey", # required
|
4840
|
-
# value: "TagValue", # required
|
4841
|
-
# }
|
4842
|
-
#
|
4843
3787
|
# @!attribute [rw] key
|
4844
3788
|
# A string you can use to assign a value. The combination of tag keys
|
4845
3789
|
# and values can help you organize and categorize your resources.
|
@@ -4858,19 +3802,6 @@ module Aws::CloudWatchEvents
|
|
4858
3802
|
include Aws::Structure
|
4859
3803
|
end
|
4860
3804
|
|
4861
|
-
# @note When making an API call, you may pass TagResourceRequest
|
4862
|
-
# data as a hash:
|
4863
|
-
#
|
4864
|
-
# {
|
4865
|
-
# resource_arn: "Arn", # required
|
4866
|
-
# tags: [ # required
|
4867
|
-
# {
|
4868
|
-
# key: "TagKey", # required
|
4869
|
-
# value: "TagValue", # required
|
4870
|
-
# },
|
4871
|
-
# ],
|
4872
|
-
# }
|
4873
|
-
#
|
4874
3805
|
# @!attribute [rw] resource_arn
|
4875
3806
|
# The ARN of the EventBridge resource that you're adding tags to.
|
4876
3807
|
# @return [String]
|
@@ -4908,122 +3839,6 @@ module Aws::CloudWatchEvents
|
|
4908
3839
|
# [1]: https://docs.aws.amazon.com/eventbridge/latest/APIReference/API_PutTargets.html
|
4909
3840
|
# [2]: https://docs.aws.amazon.com/eventbridge/latest/userguide/eventbridge-cross-account-event-delivery.html
|
4910
3841
|
#
|
4911
|
-
# @note When making an API call, you may pass Target
|
4912
|
-
# data as a hash:
|
4913
|
-
#
|
4914
|
-
# {
|
4915
|
-
# id: "TargetId", # required
|
4916
|
-
# arn: "TargetArn", # required
|
4917
|
-
# role_arn: "RoleArn",
|
4918
|
-
# input: "TargetInput",
|
4919
|
-
# input_path: "TargetInputPath",
|
4920
|
-
# input_transformer: {
|
4921
|
-
# input_paths_map: {
|
4922
|
-
# "InputTransformerPathKey" => "TargetInputPath",
|
4923
|
-
# },
|
4924
|
-
# input_template: "TransformerInput", # required
|
4925
|
-
# },
|
4926
|
-
# kinesis_parameters: {
|
4927
|
-
# partition_key_path: "TargetPartitionKeyPath", # required
|
4928
|
-
# },
|
4929
|
-
# run_command_parameters: {
|
4930
|
-
# run_command_targets: [ # required
|
4931
|
-
# {
|
4932
|
-
# key: "RunCommandTargetKey", # required
|
4933
|
-
# values: ["RunCommandTargetValue"], # required
|
4934
|
-
# },
|
4935
|
-
# ],
|
4936
|
-
# },
|
4937
|
-
# ecs_parameters: {
|
4938
|
-
# task_definition_arn: "Arn", # required
|
4939
|
-
# task_count: 1,
|
4940
|
-
# launch_type: "EC2", # accepts EC2, FARGATE, EXTERNAL
|
4941
|
-
# network_configuration: {
|
4942
|
-
# awsvpc_configuration: {
|
4943
|
-
# subnets: ["String"], # required
|
4944
|
-
# security_groups: ["String"],
|
4945
|
-
# assign_public_ip: "ENABLED", # accepts ENABLED, DISABLED
|
4946
|
-
# },
|
4947
|
-
# },
|
4948
|
-
# platform_version: "String",
|
4949
|
-
# group: "String",
|
4950
|
-
# capacity_provider_strategy: [
|
4951
|
-
# {
|
4952
|
-
# capacity_provider: "CapacityProvider", # required
|
4953
|
-
# weight: 1,
|
4954
|
-
# base: 1,
|
4955
|
-
# },
|
4956
|
-
# ],
|
4957
|
-
# enable_ecs_managed_tags: false,
|
4958
|
-
# enable_execute_command: false,
|
4959
|
-
# placement_constraints: [
|
4960
|
-
# {
|
4961
|
-
# type: "distinctInstance", # accepts distinctInstance, memberOf
|
4962
|
-
# expression: "PlacementConstraintExpression",
|
4963
|
-
# },
|
4964
|
-
# ],
|
4965
|
-
# placement_strategy: [
|
4966
|
-
# {
|
4967
|
-
# type: "random", # accepts random, spread, binpack
|
4968
|
-
# field: "PlacementStrategyField",
|
4969
|
-
# },
|
4970
|
-
# ],
|
4971
|
-
# propagate_tags: "TASK_DEFINITION", # accepts TASK_DEFINITION
|
4972
|
-
# reference_id: "ReferenceId",
|
4973
|
-
# tags: [
|
4974
|
-
# {
|
4975
|
-
# key: "TagKey", # required
|
4976
|
-
# value: "TagValue", # required
|
4977
|
-
# },
|
4978
|
-
# ],
|
4979
|
-
# },
|
4980
|
-
# batch_parameters: {
|
4981
|
-
# job_definition: "String", # required
|
4982
|
-
# job_name: "String", # required
|
4983
|
-
# array_properties: {
|
4984
|
-
# size: 1,
|
4985
|
-
# },
|
4986
|
-
# retry_strategy: {
|
4987
|
-
# attempts: 1,
|
4988
|
-
# },
|
4989
|
-
# },
|
4990
|
-
# sqs_parameters: {
|
4991
|
-
# message_group_id: "MessageGroupId",
|
4992
|
-
# },
|
4993
|
-
# http_parameters: {
|
4994
|
-
# path_parameter_values: ["PathParameter"],
|
4995
|
-
# header_parameters: {
|
4996
|
-
# "HeaderKey" => "HeaderValue",
|
4997
|
-
# },
|
4998
|
-
# query_string_parameters: {
|
4999
|
-
# "QueryStringKey" => "QueryStringValue",
|
5000
|
-
# },
|
5001
|
-
# },
|
5002
|
-
# redshift_data_parameters: {
|
5003
|
-
# secret_manager_arn: "RedshiftSecretManagerArn",
|
5004
|
-
# database: "Database", # required
|
5005
|
-
# db_user: "DbUser",
|
5006
|
-
# sql: "Sql", # required
|
5007
|
-
# statement_name: "StatementName",
|
5008
|
-
# with_event: false,
|
5009
|
-
# },
|
5010
|
-
# sage_maker_pipeline_parameters: {
|
5011
|
-
# pipeline_parameter_list: [
|
5012
|
-
# {
|
5013
|
-
# name: "SageMakerPipelineParameterName", # required
|
5014
|
-
# value: "SageMakerPipelineParameterValue", # required
|
5015
|
-
# },
|
5016
|
-
# ],
|
5017
|
-
# },
|
5018
|
-
# dead_letter_config: {
|
5019
|
-
# arn: "ResourceArn",
|
5020
|
-
# },
|
5021
|
-
# retry_policy: {
|
5022
|
-
# maximum_retry_attempts: 1,
|
5023
|
-
# maximum_event_age_in_seconds: 1,
|
5024
|
-
# },
|
5025
|
-
# }
|
5026
|
-
#
|
5027
3842
|
# @!attribute [rw] id
|
5028
3843
|
# The ID of the target. We recommend using a memorable and unique
|
5029
3844
|
# string.
|
@@ -5171,14 +3986,6 @@ module Aws::CloudWatchEvents
|
|
5171
3986
|
include Aws::Structure
|
5172
3987
|
end
|
5173
3988
|
|
5174
|
-
# @note When making an API call, you may pass TestEventPatternRequest
|
5175
|
-
# data as a hash:
|
5176
|
-
#
|
5177
|
-
# {
|
5178
|
-
# event_pattern: "EventPattern", # required
|
5179
|
-
# event: "String", # required
|
5180
|
-
# }
|
5181
|
-
#
|
5182
3989
|
# @!attribute [rw] event_pattern
|
5183
3990
|
# The event pattern. For more information, see [Events and Event
|
5184
3991
|
# Patterns][1] in the *Amazon EventBridge User Guide*.
|
@@ -5233,14 +4040,6 @@ module Aws::CloudWatchEvents
|
|
5233
4040
|
include Aws::Structure
|
5234
4041
|
end
|
5235
4042
|
|
5236
|
-
# @note When making an API call, you may pass UntagResourceRequest
|
5237
|
-
# data as a hash:
|
5238
|
-
#
|
5239
|
-
# {
|
5240
|
-
# resource_arn: "Arn", # required
|
5241
|
-
# tag_keys: ["TagKey"], # required
|
5242
|
-
# }
|
5243
|
-
#
|
5244
4043
|
# @!attribute [rw] resource_arn
|
5245
4044
|
# The ARN of the EventBridge resource from which you are removing
|
5246
4045
|
# tags.
|
@@ -5263,18 +4062,6 @@ module Aws::CloudWatchEvents
|
|
5263
4062
|
#
|
5264
4063
|
class UntagResourceResponse < Aws::EmptyStructure; end
|
5265
4064
|
|
5266
|
-
# @note When making an API call, you may pass UpdateApiDestinationRequest
|
5267
|
-
# data as a hash:
|
5268
|
-
#
|
5269
|
-
# {
|
5270
|
-
# name: "ApiDestinationName", # required
|
5271
|
-
# description: "ApiDestinationDescription",
|
5272
|
-
# connection_arn: "ConnectionArn",
|
5273
|
-
# invocation_endpoint: "HttpsEndpoint",
|
5274
|
-
# http_method: "POST", # accepts POST, GET, HEAD, OPTIONS, PUT, PATCH, DELETE
|
5275
|
-
# invocation_rate_limit_per_second: 1,
|
5276
|
-
# }
|
5277
|
-
#
|
5278
4065
|
# @!attribute [rw] name
|
5279
4066
|
# The name of the API destination to update.
|
5280
4067
|
# @return [String]
|
@@ -5341,16 +4128,6 @@ module Aws::CloudWatchEvents
|
|
5341
4128
|
include Aws::Structure
|
5342
4129
|
end
|
5343
4130
|
|
5344
|
-
# @note When making an API call, you may pass UpdateArchiveRequest
|
5345
|
-
# data as a hash:
|
5346
|
-
#
|
5347
|
-
# {
|
5348
|
-
# archive_name: "ArchiveName", # required
|
5349
|
-
# description: "ArchiveDescription",
|
5350
|
-
# event_pattern: "EventPattern",
|
5351
|
-
# retention_days: 1,
|
5352
|
-
# }
|
5353
|
-
#
|
5354
4131
|
# @!attribute [rw] archive_name
|
5355
4132
|
# The name of the archive to update.
|
5356
4133
|
# @return [String]
|
@@ -5408,14 +4185,6 @@ module Aws::CloudWatchEvents
|
|
5408
4185
|
# Contains the API key authorization parameters to use to update the
|
5409
4186
|
# connection.
|
5410
4187
|
#
|
5411
|
-
# @note When making an API call, you may pass UpdateConnectionApiKeyAuthRequestParameters
|
5412
|
-
# data as a hash:
|
5413
|
-
#
|
5414
|
-
# {
|
5415
|
-
# api_key_name: "AuthHeaderParameters",
|
5416
|
-
# api_key_value: "AuthHeaderParameters",
|
5417
|
-
# }
|
5418
|
-
#
|
5419
4188
|
# @!attribute [rw] api_key_name
|
5420
4189
|
# The name of the API key to use for authorization.
|
5421
4190
|
# @return [String]
|
@@ -5435,74 +4204,6 @@ module Aws::CloudWatchEvents
|
|
5435
4204
|
|
5436
4205
|
# Contains the additional parameters to use for the connection.
|
5437
4206
|
#
|
5438
|
-
# @note When making an API call, you may pass UpdateConnectionAuthRequestParameters
|
5439
|
-
# data as a hash:
|
5440
|
-
#
|
5441
|
-
# {
|
5442
|
-
# basic_auth_parameters: {
|
5443
|
-
# username: "AuthHeaderParameters",
|
5444
|
-
# password: "AuthHeaderParameters",
|
5445
|
-
# },
|
5446
|
-
# o_auth_parameters: {
|
5447
|
-
# client_parameters: {
|
5448
|
-
# client_id: "AuthHeaderParameters",
|
5449
|
-
# client_secret: "AuthHeaderParameters",
|
5450
|
-
# },
|
5451
|
-
# authorization_endpoint: "HttpsEndpoint",
|
5452
|
-
# http_method: "GET", # accepts GET, POST, PUT
|
5453
|
-
# o_auth_http_parameters: {
|
5454
|
-
# header_parameters: [
|
5455
|
-
# {
|
5456
|
-
# key: "HeaderKey",
|
5457
|
-
# value: "HeaderValue",
|
5458
|
-
# is_value_secret: false,
|
5459
|
-
# },
|
5460
|
-
# ],
|
5461
|
-
# query_string_parameters: [
|
5462
|
-
# {
|
5463
|
-
# key: "QueryStringKey",
|
5464
|
-
# value: "QueryStringValue",
|
5465
|
-
# is_value_secret: false,
|
5466
|
-
# },
|
5467
|
-
# ],
|
5468
|
-
# body_parameters: [
|
5469
|
-
# {
|
5470
|
-
# key: "String",
|
5471
|
-
# value: "String",
|
5472
|
-
# is_value_secret: false,
|
5473
|
-
# },
|
5474
|
-
# ],
|
5475
|
-
# },
|
5476
|
-
# },
|
5477
|
-
# api_key_auth_parameters: {
|
5478
|
-
# api_key_name: "AuthHeaderParameters",
|
5479
|
-
# api_key_value: "AuthHeaderParameters",
|
5480
|
-
# },
|
5481
|
-
# invocation_http_parameters: {
|
5482
|
-
# header_parameters: [
|
5483
|
-
# {
|
5484
|
-
# key: "HeaderKey",
|
5485
|
-
# value: "HeaderValue",
|
5486
|
-
# is_value_secret: false,
|
5487
|
-
# },
|
5488
|
-
# ],
|
5489
|
-
# query_string_parameters: [
|
5490
|
-
# {
|
5491
|
-
# key: "QueryStringKey",
|
5492
|
-
# value: "QueryStringValue",
|
5493
|
-
# is_value_secret: false,
|
5494
|
-
# },
|
5495
|
-
# ],
|
5496
|
-
# body_parameters: [
|
5497
|
-
# {
|
5498
|
-
# key: "String",
|
5499
|
-
# value: "String",
|
5500
|
-
# is_value_secret: false,
|
5501
|
-
# },
|
5502
|
-
# ],
|
5503
|
-
# },
|
5504
|
-
# }
|
5505
|
-
#
|
5506
4207
|
# @!attribute [rw] basic_auth_parameters
|
5507
4208
|
# A `UpdateConnectionBasicAuthRequestParameters` object that contains
|
5508
4209
|
# the authorization parameters for Basic authorization.
|
@@ -5536,14 +4237,6 @@ module Aws::CloudWatchEvents
|
|
5536
4237
|
|
5537
4238
|
# Contains the Basic authorization parameters for the connection.
|
5538
4239
|
#
|
5539
|
-
# @note When making an API call, you may pass UpdateConnectionBasicAuthRequestParameters
|
5540
|
-
# data as a hash:
|
5541
|
-
#
|
5542
|
-
# {
|
5543
|
-
# username: "AuthHeaderParameters",
|
5544
|
-
# password: "AuthHeaderParameters",
|
5545
|
-
# }
|
5546
|
-
#
|
5547
4240
|
# @!attribute [rw] username
|
5548
4241
|
# The user name to use for Basic authorization.
|
5549
4242
|
# @return [String]
|
@@ -5564,14 +4257,6 @@ module Aws::CloudWatchEvents
|
|
5564
4257
|
|
5565
4258
|
# Contains the OAuth authorization parameters to use for the connection.
|
5566
4259
|
#
|
5567
|
-
# @note When making an API call, you may pass UpdateConnectionOAuthClientRequestParameters
|
5568
|
-
# data as a hash:
|
5569
|
-
#
|
5570
|
-
# {
|
5571
|
-
# client_id: "AuthHeaderParameters",
|
5572
|
-
# client_secret: "AuthHeaderParameters",
|
5573
|
-
# }
|
5574
|
-
#
|
5575
4260
|
# @!attribute [rw] client_id
|
5576
4261
|
# The client ID to use for OAuth authorization.
|
5577
4262
|
# @return [String]
|
@@ -5592,41 +4277,6 @@ module Aws::CloudWatchEvents
|
|
5592
4277
|
|
5593
4278
|
# Contains the OAuth request parameters to use for the connection.
|
5594
4279
|
#
|
5595
|
-
# @note When making an API call, you may pass UpdateConnectionOAuthRequestParameters
|
5596
|
-
# data as a hash:
|
5597
|
-
#
|
5598
|
-
# {
|
5599
|
-
# client_parameters: {
|
5600
|
-
# client_id: "AuthHeaderParameters",
|
5601
|
-
# client_secret: "AuthHeaderParameters",
|
5602
|
-
# },
|
5603
|
-
# authorization_endpoint: "HttpsEndpoint",
|
5604
|
-
# http_method: "GET", # accepts GET, POST, PUT
|
5605
|
-
# o_auth_http_parameters: {
|
5606
|
-
# header_parameters: [
|
5607
|
-
# {
|
5608
|
-
# key: "HeaderKey",
|
5609
|
-
# value: "HeaderValue",
|
5610
|
-
# is_value_secret: false,
|
5611
|
-
# },
|
5612
|
-
# ],
|
5613
|
-
# query_string_parameters: [
|
5614
|
-
# {
|
5615
|
-
# key: "QueryStringKey",
|
5616
|
-
# value: "QueryStringValue",
|
5617
|
-
# is_value_secret: false,
|
5618
|
-
# },
|
5619
|
-
# ],
|
5620
|
-
# body_parameters: [
|
5621
|
-
# {
|
5622
|
-
# key: "String",
|
5623
|
-
# value: "String",
|
5624
|
-
# is_value_secret: false,
|
5625
|
-
# },
|
5626
|
-
# ],
|
5627
|
-
# },
|
5628
|
-
# }
|
5629
|
-
#
|
5630
4280
|
# @!attribute [rw] client_parameters
|
5631
4281
|
# A `UpdateConnectionOAuthClientRequestParameters` object that
|
5632
4282
|
# contains the client parameters to use for the connection when OAuth
|
@@ -5658,79 +4308,6 @@ module Aws::CloudWatchEvents
|
|
5658
4308
|
include Aws::Structure
|
5659
4309
|
end
|
5660
4310
|
|
5661
|
-
# @note When making an API call, you may pass UpdateConnectionRequest
|
5662
|
-
# data as a hash:
|
5663
|
-
#
|
5664
|
-
# {
|
5665
|
-
# name: "ConnectionName", # required
|
5666
|
-
# description: "ConnectionDescription",
|
5667
|
-
# authorization_type: "BASIC", # accepts BASIC, OAUTH_CLIENT_CREDENTIALS, API_KEY
|
5668
|
-
# auth_parameters: {
|
5669
|
-
# basic_auth_parameters: {
|
5670
|
-
# username: "AuthHeaderParameters",
|
5671
|
-
# password: "AuthHeaderParameters",
|
5672
|
-
# },
|
5673
|
-
# o_auth_parameters: {
|
5674
|
-
# client_parameters: {
|
5675
|
-
# client_id: "AuthHeaderParameters",
|
5676
|
-
# client_secret: "AuthHeaderParameters",
|
5677
|
-
# },
|
5678
|
-
# authorization_endpoint: "HttpsEndpoint",
|
5679
|
-
# http_method: "GET", # accepts GET, POST, PUT
|
5680
|
-
# o_auth_http_parameters: {
|
5681
|
-
# header_parameters: [
|
5682
|
-
# {
|
5683
|
-
# key: "HeaderKey",
|
5684
|
-
# value: "HeaderValue",
|
5685
|
-
# is_value_secret: false,
|
5686
|
-
# },
|
5687
|
-
# ],
|
5688
|
-
# query_string_parameters: [
|
5689
|
-
# {
|
5690
|
-
# key: "QueryStringKey",
|
5691
|
-
# value: "QueryStringValue",
|
5692
|
-
# is_value_secret: false,
|
5693
|
-
# },
|
5694
|
-
# ],
|
5695
|
-
# body_parameters: [
|
5696
|
-
# {
|
5697
|
-
# key: "String",
|
5698
|
-
# value: "String",
|
5699
|
-
# is_value_secret: false,
|
5700
|
-
# },
|
5701
|
-
# ],
|
5702
|
-
# },
|
5703
|
-
# },
|
5704
|
-
# api_key_auth_parameters: {
|
5705
|
-
# api_key_name: "AuthHeaderParameters",
|
5706
|
-
# api_key_value: "AuthHeaderParameters",
|
5707
|
-
# },
|
5708
|
-
# invocation_http_parameters: {
|
5709
|
-
# header_parameters: [
|
5710
|
-
# {
|
5711
|
-
# key: "HeaderKey",
|
5712
|
-
# value: "HeaderValue",
|
5713
|
-
# is_value_secret: false,
|
5714
|
-
# },
|
5715
|
-
# ],
|
5716
|
-
# query_string_parameters: [
|
5717
|
-
# {
|
5718
|
-
# key: "QueryStringKey",
|
5719
|
-
# value: "QueryStringValue",
|
5720
|
-
# is_value_secret: false,
|
5721
|
-
# },
|
5722
|
-
# ],
|
5723
|
-
# body_parameters: [
|
5724
|
-
# {
|
5725
|
-
# key: "String",
|
5726
|
-
# value: "String",
|
5727
|
-
# is_value_secret: false,
|
5728
|
-
# },
|
5729
|
-
# ],
|
5730
|
-
# },
|
5731
|
-
# },
|
5732
|
-
# }
|
5733
|
-
#
|
5734
4311
|
# @!attribute [rw] name
|
5735
4312
|
# The name of the connection to update.
|
5736
4313
|
# @return [String]
|