aws-sdk-cloudwatchevents 1.39.0 → 1.44.0

Sign up to get free protection for your applications and to get access to all the features.
data/VERSION ADDED
@@ -0,0 +1 @@
1
+ 1.44.0
@@ -3,7 +3,7 @@
3
3
  # WARNING ABOUT GENERATED CODE
4
4
  #
5
5
  # This file is generated. See the contributing guide for more information:
6
- # https://github.com/aws/aws-sdk-ruby/blob/master/CONTRIBUTING.md
6
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
7
7
  #
8
8
  # WARNING ABOUT GENERATED CODE
9
9
 
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-cloudwatchevents/customizations'
48
48
  # @!group service
49
49
  module Aws::CloudWatchEvents
50
50
 
51
- GEM_VERSION = '1.39.0'
51
+ GEM_VERSION = '1.44.0'
52
52
 
53
53
  end
@@ -3,7 +3,7 @@
3
3
  # WARNING ABOUT GENERATED CODE
4
4
  #
5
5
  # This file is generated. See the contributing guide for more information:
6
- # https://github.com/aws/aws-sdk-ruby/blob/master/CONTRIBUTING.md
6
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
7
7
  #
8
8
  # WARNING ABOUT GENERATED CODE
9
9
 
@@ -393,10 +393,70 @@ module Aws::CloudWatchEvents
393
393
  req.send_request(options)
394
394
  end
395
395
 
396
+ # Creates an API destination, which is an HTTP invocation endpoint
397
+ # configured as a target for events.
398
+ #
399
+ # @option params [required, String] :name
400
+ # The name for the API destination to create.
401
+ #
402
+ # @option params [String] :description
403
+ # A description for the API destination to create.
404
+ #
405
+ # @option params [required, String] :connection_arn
406
+ # The ARN of the connection to use for the API destination. The
407
+ # destination endpoint must support the authorization type specified for
408
+ # the connection.
409
+ #
410
+ # @option params [required, String] :invocation_endpoint
411
+ # The URL to the HTTP invocation endpoint for the API destination.
412
+ #
413
+ # @option params [required, String] :http_method
414
+ # The method to use for the request to the HTTP invocation endpoint.
415
+ #
416
+ # @option params [Integer] :invocation_rate_limit_per_second
417
+ # The maximum number of requests per second to send to the HTTP
418
+ # invocation endpoint.
419
+ #
420
+ # @return [Types::CreateApiDestinationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
421
+ #
422
+ # * {Types::CreateApiDestinationResponse#api_destination_arn #api_destination_arn} => String
423
+ # * {Types::CreateApiDestinationResponse#api_destination_state #api_destination_state} => String
424
+ # * {Types::CreateApiDestinationResponse#creation_time #creation_time} => Time
425
+ # * {Types::CreateApiDestinationResponse#last_modified_time #last_modified_time} => Time
426
+ #
427
+ # @example Request syntax with placeholder values
428
+ #
429
+ # resp = client.create_api_destination({
430
+ # name: "ApiDestinationName", # required
431
+ # description: "ApiDestinationDescription",
432
+ # connection_arn: "ConnectionArn", # required
433
+ # invocation_endpoint: "HttpsEndpoint", # required
434
+ # http_method: "POST", # required, accepts POST, GET, HEAD, OPTIONS, PUT, PATCH, DELETE
435
+ # invocation_rate_limit_per_second: 1,
436
+ # })
437
+ #
438
+ # @example Response structure
439
+ #
440
+ # resp.api_destination_arn #=> String
441
+ # resp.api_destination_state #=> String, one of "ACTIVE", "INACTIVE"
442
+ # resp.creation_time #=> Time
443
+ # resp.last_modified_time #=> Time
444
+ #
445
+ # @see http://docs.aws.amazon.com/goto/WebAPI/events-2015-10-07/CreateApiDestination AWS API Documentation
446
+ #
447
+ # @overload create_api_destination(params = {})
448
+ # @param [Hash] params ({})
449
+ def create_api_destination(params = {}, options = {})
450
+ req = build_request(:create_api_destination, params)
451
+ req.send_request(options)
452
+ end
453
+
396
454
  # Creates an archive of events with the specified settings. When you
397
455
  # create an archive, incoming events might not immediately start being
398
456
  # sent to the archive. Allow a short period of time for changes to take
399
- # effect.
457
+ # effect. If you do not specify a pattern to filter events sent to the
458
+ # archive, all events are sent to the archive except replayed events.
459
+ # Replayed events are not sent to an archive.
400
460
  #
401
461
  # @option params [required, String] :archive_name
402
462
  # The name for the archive to create.
@@ -447,6 +507,118 @@ module Aws::CloudWatchEvents
447
507
  req.send_request(options)
448
508
  end
449
509
 
510
+ # Creates a connection. A connection defines the authorization type and
511
+ # credentials to use for authorization with an API destination HTTP
512
+ # endpoint.
513
+ #
514
+ # @option params [required, String] :name
515
+ # The name for the connection to create.
516
+ #
517
+ # @option params [String] :description
518
+ # A description for the connection to create.
519
+ #
520
+ # @option params [required, String] :authorization_type
521
+ # The type of authorization to use for the connection.
522
+ #
523
+ # @option params [required, Types::CreateConnectionAuthRequestParameters] :auth_parameters
524
+ # A `CreateConnectionAuthRequestParameters` object that contains the
525
+ # authorization parameters to use to authorize with the endpoint.
526
+ #
527
+ # @return [Types::CreateConnectionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
528
+ #
529
+ # * {Types::CreateConnectionResponse#connection_arn #connection_arn} => String
530
+ # * {Types::CreateConnectionResponse#connection_state #connection_state} => String
531
+ # * {Types::CreateConnectionResponse#creation_time #creation_time} => Time
532
+ # * {Types::CreateConnectionResponse#last_modified_time #last_modified_time} => Time
533
+ #
534
+ # @example Request syntax with placeholder values
535
+ #
536
+ # resp = client.create_connection({
537
+ # name: "ConnectionName", # required
538
+ # description: "ConnectionDescription",
539
+ # authorization_type: "BASIC", # required, accepts BASIC, OAUTH_CLIENT_CREDENTIALS, API_KEY
540
+ # auth_parameters: { # required
541
+ # basic_auth_parameters: {
542
+ # username: "AuthHeaderParameters", # required
543
+ # password: "AuthHeaderParameters", # required
544
+ # },
545
+ # o_auth_parameters: {
546
+ # client_parameters: { # required
547
+ # client_id: "AuthHeaderParameters", # required
548
+ # client_secret: "AuthHeaderParameters", # required
549
+ # },
550
+ # authorization_endpoint: "HttpsEndpoint", # required
551
+ # http_method: "GET", # required, accepts GET, POST, PUT
552
+ # o_auth_http_parameters: {
553
+ # header_parameters: [
554
+ # {
555
+ # key: "HeaderKey",
556
+ # value: "HeaderValue",
557
+ # is_value_secret: false,
558
+ # },
559
+ # ],
560
+ # query_string_parameters: [
561
+ # {
562
+ # key: "QueryStringKey",
563
+ # value: "QueryStringValue",
564
+ # is_value_secret: false,
565
+ # },
566
+ # ],
567
+ # body_parameters: [
568
+ # {
569
+ # key: "String",
570
+ # value: "String",
571
+ # is_value_secret: false,
572
+ # },
573
+ # ],
574
+ # },
575
+ # },
576
+ # api_key_auth_parameters: {
577
+ # api_key_name: "AuthHeaderParameters", # required
578
+ # api_key_value: "AuthHeaderParameters", # required
579
+ # },
580
+ # invocation_http_parameters: {
581
+ # header_parameters: [
582
+ # {
583
+ # key: "HeaderKey",
584
+ # value: "HeaderValue",
585
+ # is_value_secret: false,
586
+ # },
587
+ # ],
588
+ # query_string_parameters: [
589
+ # {
590
+ # key: "QueryStringKey",
591
+ # value: "QueryStringValue",
592
+ # is_value_secret: false,
593
+ # },
594
+ # ],
595
+ # body_parameters: [
596
+ # {
597
+ # key: "String",
598
+ # value: "String",
599
+ # is_value_secret: false,
600
+ # },
601
+ # ],
602
+ # },
603
+ # },
604
+ # })
605
+ #
606
+ # @example Response structure
607
+ #
608
+ # resp.connection_arn #=> String
609
+ # resp.connection_state #=> String, one of "CREATING", "UPDATING", "DELETING", "AUTHORIZED", "DEAUTHORIZED", "AUTHORIZING", "DEAUTHORIZING"
610
+ # resp.creation_time #=> Time
611
+ # resp.last_modified_time #=> Time
612
+ #
613
+ # @see http://docs.aws.amazon.com/goto/WebAPI/events-2015-10-07/CreateConnection AWS API Documentation
614
+ #
615
+ # @overload create_connection(params = {})
616
+ # @param [Hash] params ({})
617
+ def create_connection(params = {}, options = {})
618
+ req = build_request(:create_connection, params)
619
+ req.send_request(options)
620
+ end
621
+
450
622
  # Creates a new event bus within your account. This can be a custom
451
623
  # event bus which you can use to receive events from your custom
452
624
  # applications and services, or it can be a partner event bus which can
@@ -593,6 +765,66 @@ module Aws::CloudWatchEvents
593
765
  req.send_request(options)
594
766
  end
595
767
 
768
+ # Removes all authorization parameters from the connection. This lets
769
+ # you remove the secret from the connection so you can reuse it without
770
+ # having to create a new connection.
771
+ #
772
+ # @option params [required, String] :name
773
+ # The name of the connection to remove authorization from.
774
+ #
775
+ # @return [Types::DeauthorizeConnectionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
776
+ #
777
+ # * {Types::DeauthorizeConnectionResponse#connection_arn #connection_arn} => String
778
+ # * {Types::DeauthorizeConnectionResponse#connection_state #connection_state} => String
779
+ # * {Types::DeauthorizeConnectionResponse#creation_time #creation_time} => Time
780
+ # * {Types::DeauthorizeConnectionResponse#last_modified_time #last_modified_time} => Time
781
+ # * {Types::DeauthorizeConnectionResponse#last_authorized_time #last_authorized_time} => Time
782
+ #
783
+ # @example Request syntax with placeholder values
784
+ #
785
+ # resp = client.deauthorize_connection({
786
+ # name: "ConnectionName", # required
787
+ # })
788
+ #
789
+ # @example Response structure
790
+ #
791
+ # resp.connection_arn #=> String
792
+ # resp.connection_state #=> String, one of "CREATING", "UPDATING", "DELETING", "AUTHORIZED", "DEAUTHORIZED", "AUTHORIZING", "DEAUTHORIZING"
793
+ # resp.creation_time #=> Time
794
+ # resp.last_modified_time #=> Time
795
+ # resp.last_authorized_time #=> Time
796
+ #
797
+ # @see http://docs.aws.amazon.com/goto/WebAPI/events-2015-10-07/DeauthorizeConnection AWS API Documentation
798
+ #
799
+ # @overload deauthorize_connection(params = {})
800
+ # @param [Hash] params ({})
801
+ def deauthorize_connection(params = {}, options = {})
802
+ req = build_request(:deauthorize_connection, params)
803
+ req.send_request(options)
804
+ end
805
+
806
+ # Deletes the specified API destination.
807
+ #
808
+ # @option params [required, String] :name
809
+ # The name of the destination to delete.
810
+ #
811
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
812
+ #
813
+ # @example Request syntax with placeholder values
814
+ #
815
+ # resp = client.delete_api_destination({
816
+ # name: "ApiDestinationName", # required
817
+ # })
818
+ #
819
+ # @see http://docs.aws.amazon.com/goto/WebAPI/events-2015-10-07/DeleteApiDestination AWS API Documentation
820
+ #
821
+ # @overload delete_api_destination(params = {})
822
+ # @param [Hash] params ({})
823
+ def delete_api_destination(params = {}, options = {})
824
+ req = build_request(:delete_api_destination, params)
825
+ req.send_request(options)
826
+ end
827
+
596
828
  # Deletes the specified archive.
597
829
  #
598
830
  # @option params [required, String] :archive_name
@@ -615,6 +847,42 @@ module Aws::CloudWatchEvents
615
847
  req.send_request(options)
616
848
  end
617
849
 
850
+ # Deletes a connection.
851
+ #
852
+ # @option params [required, String] :name
853
+ # The name of the connection to delete.
854
+ #
855
+ # @return [Types::DeleteConnectionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
856
+ #
857
+ # * {Types::DeleteConnectionResponse#connection_arn #connection_arn} => String
858
+ # * {Types::DeleteConnectionResponse#connection_state #connection_state} => String
859
+ # * {Types::DeleteConnectionResponse#creation_time #creation_time} => Time
860
+ # * {Types::DeleteConnectionResponse#last_modified_time #last_modified_time} => Time
861
+ # * {Types::DeleteConnectionResponse#last_authorized_time #last_authorized_time} => Time
862
+ #
863
+ # @example Request syntax with placeholder values
864
+ #
865
+ # resp = client.delete_connection({
866
+ # name: "ConnectionName", # required
867
+ # })
868
+ #
869
+ # @example Response structure
870
+ #
871
+ # resp.connection_arn #=> String
872
+ # resp.connection_state #=> String, one of "CREATING", "UPDATING", "DELETING", "AUTHORIZED", "DEAUTHORIZED", "AUTHORIZING", "DEAUTHORIZING"
873
+ # resp.creation_time #=> Time
874
+ # resp.last_modified_time #=> Time
875
+ # resp.last_authorized_time #=> Time
876
+ #
877
+ # @see http://docs.aws.amazon.com/goto/WebAPI/events-2015-10-07/DeleteConnection AWS API Documentation
878
+ #
879
+ # @overload delete_connection(params = {})
880
+ # @param [Hash] params ({})
881
+ def delete_connection(params = {}, options = {})
882
+ req = build_request(:delete_connection, params)
883
+ req.send_request(options)
884
+ end
885
+
618
886
  # Deletes the specified custom event bus or partner event bus. All rules
619
887
  # associated with this event bus need to be deleted. You can't delete
620
888
  # your account's default event bus.
@@ -688,8 +956,8 @@ module Aws::CloudWatchEvents
688
956
  # The name of the rule.
689
957
  #
690
958
  # @option params [String] :event_bus_name
691
- # The event bus associated with the rule. If you omit this, the default
692
- # event bus is used.
959
+ # The name or ARN of the event bus associated with the rule. If you omit
960
+ # this, the default event bus is used.
693
961
  #
694
962
  # @option params [Boolean] :force
695
963
  # If this is a managed rule, created by an AWS service on your behalf,
@@ -704,7 +972,7 @@ module Aws::CloudWatchEvents
704
972
  #
705
973
  # resp = client.delete_rule({
706
974
  # name: "RuleName", # required
707
- # event_bus_name: "EventBusName",
975
+ # event_bus_name: "EventBusNameOrArn",
708
976
  # force: false,
709
977
  # })
710
978
  #
@@ -717,6 +985,52 @@ module Aws::CloudWatchEvents
717
985
  req.send_request(options)
718
986
  end
719
987
 
988
+ # Retrieves details about an API destination.
989
+ #
990
+ # @option params [required, String] :name
991
+ # The name of the API destination to retrieve.
992
+ #
993
+ # @return [Types::DescribeApiDestinationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
994
+ #
995
+ # * {Types::DescribeApiDestinationResponse#api_destination_arn #api_destination_arn} => String
996
+ # * {Types::DescribeApiDestinationResponse#name #name} => String
997
+ # * {Types::DescribeApiDestinationResponse#description #description} => String
998
+ # * {Types::DescribeApiDestinationResponse#api_destination_state #api_destination_state} => String
999
+ # * {Types::DescribeApiDestinationResponse#connection_arn #connection_arn} => String
1000
+ # * {Types::DescribeApiDestinationResponse#invocation_endpoint #invocation_endpoint} => String
1001
+ # * {Types::DescribeApiDestinationResponse#http_method #http_method} => String
1002
+ # * {Types::DescribeApiDestinationResponse#invocation_rate_limit_per_second #invocation_rate_limit_per_second} => Integer
1003
+ # * {Types::DescribeApiDestinationResponse#creation_time #creation_time} => Time
1004
+ # * {Types::DescribeApiDestinationResponse#last_modified_time #last_modified_time} => Time
1005
+ #
1006
+ # @example Request syntax with placeholder values
1007
+ #
1008
+ # resp = client.describe_api_destination({
1009
+ # name: "ApiDestinationName", # required
1010
+ # })
1011
+ #
1012
+ # @example Response structure
1013
+ #
1014
+ # resp.api_destination_arn #=> String
1015
+ # resp.name #=> String
1016
+ # resp.description #=> String
1017
+ # resp.api_destination_state #=> String, one of "ACTIVE", "INACTIVE"
1018
+ # resp.connection_arn #=> String
1019
+ # resp.invocation_endpoint #=> String
1020
+ # resp.http_method #=> String, one of "POST", "GET", "HEAD", "OPTIONS", "PUT", "PATCH", "DELETE"
1021
+ # resp.invocation_rate_limit_per_second #=> Integer
1022
+ # resp.creation_time #=> Time
1023
+ # resp.last_modified_time #=> Time
1024
+ #
1025
+ # @see http://docs.aws.amazon.com/goto/WebAPI/events-2015-10-07/DescribeApiDestination AWS API Documentation
1026
+ #
1027
+ # @overload describe_api_destination(params = {})
1028
+ # @param [Hash] params ({})
1029
+ def describe_api_destination(params = {}, options = {})
1030
+ req = build_request(:describe_api_destination, params)
1031
+ req.send_request(options)
1032
+ end
1033
+
720
1034
  # Retrieves details about an archive.
721
1035
  #
722
1036
  # @option params [required, String] :archive_name
@@ -765,6 +1079,82 @@ module Aws::CloudWatchEvents
765
1079
  req.send_request(options)
766
1080
  end
767
1081
 
1082
+ # Retrieves details about a connection.
1083
+ #
1084
+ # @option params [required, String] :name
1085
+ # The name of the connection to retrieve.
1086
+ #
1087
+ # @return [Types::DescribeConnectionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1088
+ #
1089
+ # * {Types::DescribeConnectionResponse#connection_arn #connection_arn} => String
1090
+ # * {Types::DescribeConnectionResponse#name #name} => String
1091
+ # * {Types::DescribeConnectionResponse#description #description} => String
1092
+ # * {Types::DescribeConnectionResponse#connection_state #connection_state} => String
1093
+ # * {Types::DescribeConnectionResponse#state_reason #state_reason} => String
1094
+ # * {Types::DescribeConnectionResponse#authorization_type #authorization_type} => String
1095
+ # * {Types::DescribeConnectionResponse#secret_arn #secret_arn} => String
1096
+ # * {Types::DescribeConnectionResponse#auth_parameters #auth_parameters} => Types::ConnectionAuthResponseParameters
1097
+ # * {Types::DescribeConnectionResponse#creation_time #creation_time} => Time
1098
+ # * {Types::DescribeConnectionResponse#last_modified_time #last_modified_time} => Time
1099
+ # * {Types::DescribeConnectionResponse#last_authorized_time #last_authorized_time} => Time
1100
+ #
1101
+ # @example Request syntax with placeholder values
1102
+ #
1103
+ # resp = client.describe_connection({
1104
+ # name: "ConnectionName", # required
1105
+ # })
1106
+ #
1107
+ # @example Response structure
1108
+ #
1109
+ # resp.connection_arn #=> String
1110
+ # resp.name #=> String
1111
+ # resp.description #=> String
1112
+ # resp.connection_state #=> String, one of "CREATING", "UPDATING", "DELETING", "AUTHORIZED", "DEAUTHORIZED", "AUTHORIZING", "DEAUTHORIZING"
1113
+ # resp.state_reason #=> String
1114
+ # resp.authorization_type #=> String, one of "BASIC", "OAUTH_CLIENT_CREDENTIALS", "API_KEY"
1115
+ # resp.secret_arn #=> String
1116
+ # resp.auth_parameters.basic_auth_parameters.username #=> String
1117
+ # resp.auth_parameters.o_auth_parameters.client_parameters.client_id #=> String
1118
+ # resp.auth_parameters.o_auth_parameters.authorization_endpoint #=> String
1119
+ # resp.auth_parameters.o_auth_parameters.http_method #=> String, one of "GET", "POST", "PUT"
1120
+ # resp.auth_parameters.o_auth_parameters.o_auth_http_parameters.header_parameters #=> Array
1121
+ # resp.auth_parameters.o_auth_parameters.o_auth_http_parameters.header_parameters[0].key #=> String
1122
+ # resp.auth_parameters.o_auth_parameters.o_auth_http_parameters.header_parameters[0].value #=> String
1123
+ # resp.auth_parameters.o_auth_parameters.o_auth_http_parameters.header_parameters[0].is_value_secret #=> Boolean
1124
+ # resp.auth_parameters.o_auth_parameters.o_auth_http_parameters.query_string_parameters #=> Array
1125
+ # resp.auth_parameters.o_auth_parameters.o_auth_http_parameters.query_string_parameters[0].key #=> String
1126
+ # resp.auth_parameters.o_auth_parameters.o_auth_http_parameters.query_string_parameters[0].value #=> String
1127
+ # resp.auth_parameters.o_auth_parameters.o_auth_http_parameters.query_string_parameters[0].is_value_secret #=> Boolean
1128
+ # resp.auth_parameters.o_auth_parameters.o_auth_http_parameters.body_parameters #=> Array
1129
+ # resp.auth_parameters.o_auth_parameters.o_auth_http_parameters.body_parameters[0].key #=> String
1130
+ # resp.auth_parameters.o_auth_parameters.o_auth_http_parameters.body_parameters[0].value #=> String
1131
+ # resp.auth_parameters.o_auth_parameters.o_auth_http_parameters.body_parameters[0].is_value_secret #=> Boolean
1132
+ # resp.auth_parameters.api_key_auth_parameters.api_key_name #=> String
1133
+ # resp.auth_parameters.invocation_http_parameters.header_parameters #=> Array
1134
+ # resp.auth_parameters.invocation_http_parameters.header_parameters[0].key #=> String
1135
+ # resp.auth_parameters.invocation_http_parameters.header_parameters[0].value #=> String
1136
+ # resp.auth_parameters.invocation_http_parameters.header_parameters[0].is_value_secret #=> Boolean
1137
+ # resp.auth_parameters.invocation_http_parameters.query_string_parameters #=> Array
1138
+ # resp.auth_parameters.invocation_http_parameters.query_string_parameters[0].key #=> String
1139
+ # resp.auth_parameters.invocation_http_parameters.query_string_parameters[0].value #=> String
1140
+ # resp.auth_parameters.invocation_http_parameters.query_string_parameters[0].is_value_secret #=> Boolean
1141
+ # resp.auth_parameters.invocation_http_parameters.body_parameters #=> Array
1142
+ # resp.auth_parameters.invocation_http_parameters.body_parameters[0].key #=> String
1143
+ # resp.auth_parameters.invocation_http_parameters.body_parameters[0].value #=> String
1144
+ # resp.auth_parameters.invocation_http_parameters.body_parameters[0].is_value_secret #=> Boolean
1145
+ # resp.creation_time #=> Time
1146
+ # resp.last_modified_time #=> Time
1147
+ # resp.last_authorized_time #=> Time
1148
+ #
1149
+ # @see http://docs.aws.amazon.com/goto/WebAPI/events-2015-10-07/DescribeConnection AWS API Documentation
1150
+ #
1151
+ # @overload describe_connection(params = {})
1152
+ # @param [Hash] params ({})
1153
+ def describe_connection(params = {}, options = {})
1154
+ req = build_request(:describe_connection, params)
1155
+ req.send_request(options)
1156
+ end
1157
+
768
1158
  # Displays details about an event bus in your account. This can include
769
1159
  # the external AWS accounts that are permitted to write events to your
770
1160
  # default event bus, and the associated policy. For custom event buses
@@ -777,8 +1167,8 @@ module Aws::CloudWatchEvents
777
1167
  # For more information about partner event buses, see CreateEventBus.
778
1168
  #
779
1169
  # @option params [String] :name
780
- # The name of the event bus to show details for. If you omit this, the
781
- # default event bus is displayed.
1170
+ # The name or ARN of the event bus to show details for. If you omit
1171
+ # this, the default event bus is displayed.
782
1172
  #
783
1173
  # @return [Types::DescribeEventBusResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
784
1174
  #
@@ -789,7 +1179,7 @@ module Aws::CloudWatchEvents
789
1179
  # @example Request syntax with placeholder values
790
1180
  #
791
1181
  # resp = client.describe_event_bus({
792
- # name: "EventBusName",
1182
+ # name: "EventBusNameOrArn",
793
1183
  # })
794
1184
  #
795
1185
  # @example Response structure
@@ -949,8 +1339,8 @@ module Aws::CloudWatchEvents
949
1339
  # The name of the rule.
950
1340
  #
951
1341
  # @option params [String] :event_bus_name
952
- # The event bus associated with the rule. If you omit this, the default
953
- # event bus is used.
1342
+ # The name or ARN of the event bus associated with the rule. If you omit
1343
+ # this, the default event bus is used.
954
1344
  #
955
1345
  # @return [Types::DescribeRuleResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
956
1346
  #
@@ -963,12 +1353,13 @@ module Aws::CloudWatchEvents
963
1353
  # * {Types::DescribeRuleResponse#role_arn #role_arn} => String
964
1354
  # * {Types::DescribeRuleResponse#managed_by #managed_by} => String
965
1355
  # * {Types::DescribeRuleResponse#event_bus_name #event_bus_name} => String
1356
+ # * {Types::DescribeRuleResponse#created_by #created_by} => String
966
1357
  #
967
1358
  # @example Request syntax with placeholder values
968
1359
  #
969
1360
  # resp = client.describe_rule({
970
1361
  # name: "RuleName", # required
971
- # event_bus_name: "EventBusName",
1362
+ # event_bus_name: "EventBusNameOrArn",
972
1363
  # })
973
1364
  #
974
1365
  # @example Response structure
@@ -982,6 +1373,7 @@ module Aws::CloudWatchEvents
982
1373
  # resp.role_arn #=> String
983
1374
  # resp.managed_by #=> String
984
1375
  # resp.event_bus_name #=> String
1376
+ # resp.created_by #=> String
985
1377
  #
986
1378
  # @see http://docs.aws.amazon.com/goto/WebAPI/events-2015-10-07/DescribeRule AWS API Documentation
987
1379
  #
@@ -1003,8 +1395,8 @@ module Aws::CloudWatchEvents
1003
1395
  # The name of the rule.
1004
1396
  #
1005
1397
  # @option params [String] :event_bus_name
1006
- # The event bus associated with the rule. If you omit this, the default
1007
- # event bus is used.
1398
+ # The name or ARN of the event bus associated with the rule. If you omit
1399
+ # this, the default event bus is used.
1008
1400
  #
1009
1401
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1010
1402
  #
@@ -1012,7 +1404,7 @@ module Aws::CloudWatchEvents
1012
1404
  #
1013
1405
  # resp = client.disable_rule({
1014
1406
  # name: "RuleName", # required
1015
- # event_bus_name: "EventBusName",
1407
+ # event_bus_name: "EventBusNameOrArn",
1016
1408
  # })
1017
1409
  #
1018
1410
  # @see http://docs.aws.amazon.com/goto/WebAPI/events-2015-10-07/DisableRule AWS API Documentation
@@ -1035,8 +1427,8 @@ module Aws::CloudWatchEvents
1035
1427
  # The name of the rule.
1036
1428
  #
1037
1429
  # @option params [String] :event_bus_name
1038
- # The event bus associated with the rule. If you omit this, the default
1039
- # event bus is used.
1430
+ # The name or ARN of the event bus associated with the rule. If you omit
1431
+ # this, the default event bus is used.
1040
1432
  #
1041
1433
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1042
1434
  #
@@ -1044,7 +1436,7 @@ module Aws::CloudWatchEvents
1044
1436
  #
1045
1437
  # resp = client.enable_rule({
1046
1438
  # name: "RuleName", # required
1047
- # event_bus_name: "EventBusName",
1439
+ # event_bus_name: "EventBusNameOrArn",
1048
1440
  # })
1049
1441
  #
1050
1442
  # @see http://docs.aws.amazon.com/goto/WebAPI/events-2015-10-07/EnableRule AWS API Documentation
@@ -1056,6 +1448,60 @@ module Aws::CloudWatchEvents
1056
1448
  req.send_request(options)
1057
1449
  end
1058
1450
 
1451
+ # Retrieves a list of API destination in the account in the current
1452
+ # Region.
1453
+ #
1454
+ # @option params [String] :name_prefix
1455
+ # A name prefix to filter results returned. Only API destinations with a
1456
+ # name that starts with the prefix are returned.
1457
+ #
1458
+ # @option params [String] :connection_arn
1459
+ # The ARN of the connection specified for the API destination.
1460
+ #
1461
+ # @option params [String] :next_token
1462
+ # The token returned by a previous call to retrieve the next set of
1463
+ # results.
1464
+ #
1465
+ # @option params [Integer] :limit
1466
+ # The maximum number of API destinations to include in the response.
1467
+ #
1468
+ # @return [Types::ListApiDestinationsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1469
+ #
1470
+ # * {Types::ListApiDestinationsResponse#api_destinations #api_destinations} => Array<Types::ApiDestination>
1471
+ # * {Types::ListApiDestinationsResponse#next_token #next_token} => String
1472
+ #
1473
+ # @example Request syntax with placeholder values
1474
+ #
1475
+ # resp = client.list_api_destinations({
1476
+ # name_prefix: "ApiDestinationName",
1477
+ # connection_arn: "ConnectionArn",
1478
+ # next_token: "NextToken",
1479
+ # limit: 1,
1480
+ # })
1481
+ #
1482
+ # @example Response structure
1483
+ #
1484
+ # resp.api_destinations #=> Array
1485
+ # resp.api_destinations[0].api_destination_arn #=> String
1486
+ # resp.api_destinations[0].name #=> String
1487
+ # resp.api_destinations[0].api_destination_state #=> String, one of "ACTIVE", "INACTIVE"
1488
+ # resp.api_destinations[0].connection_arn #=> String
1489
+ # resp.api_destinations[0].invocation_endpoint #=> String
1490
+ # resp.api_destinations[0].http_method #=> String, one of "POST", "GET", "HEAD", "OPTIONS", "PUT", "PATCH", "DELETE"
1491
+ # resp.api_destinations[0].invocation_rate_limit_per_second #=> Integer
1492
+ # resp.api_destinations[0].creation_time #=> Time
1493
+ # resp.api_destinations[0].last_modified_time #=> Time
1494
+ # resp.next_token #=> String
1495
+ #
1496
+ # @see http://docs.aws.amazon.com/goto/WebAPI/events-2015-10-07/ListApiDestinations AWS API Documentation
1497
+ #
1498
+ # @overload list_api_destinations(params = {})
1499
+ # @param [Hash] params ({})
1500
+ def list_api_destinations(params = {}, options = {})
1501
+ req = build_request(:list_api_destinations, params)
1502
+ req.send_request(options)
1503
+ end
1504
+
1059
1505
  # Lists your archives. You can either list all the archives or you can
1060
1506
  # provide a prefix to match to the archive names. Filter parameters are
1061
1507
  # exclusive.
@@ -1114,6 +1560,58 @@ module Aws::CloudWatchEvents
1114
1560
  req.send_request(options)
1115
1561
  end
1116
1562
 
1563
+ # Retrieves a list of connections from the account.
1564
+ #
1565
+ # @option params [String] :name_prefix
1566
+ # A name prefix to filter results returned. Only connections with a name
1567
+ # that starts with the prefix are returned.
1568
+ #
1569
+ # @option params [String] :connection_state
1570
+ # The state of the connection.
1571
+ #
1572
+ # @option params [String] :next_token
1573
+ # The token returned by a previous call to retrieve the next set of
1574
+ # results.
1575
+ #
1576
+ # @option params [Integer] :limit
1577
+ # The maximum number of connections to return.
1578
+ #
1579
+ # @return [Types::ListConnectionsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1580
+ #
1581
+ # * {Types::ListConnectionsResponse#connections #connections} => Array<Types::Connection>
1582
+ # * {Types::ListConnectionsResponse#next_token #next_token} => String
1583
+ #
1584
+ # @example Request syntax with placeholder values
1585
+ #
1586
+ # resp = client.list_connections({
1587
+ # name_prefix: "ConnectionName",
1588
+ # connection_state: "CREATING", # accepts CREATING, UPDATING, DELETING, AUTHORIZED, DEAUTHORIZED, AUTHORIZING, DEAUTHORIZING
1589
+ # next_token: "NextToken",
1590
+ # limit: 1,
1591
+ # })
1592
+ #
1593
+ # @example Response structure
1594
+ #
1595
+ # resp.connections #=> Array
1596
+ # resp.connections[0].connection_arn #=> String
1597
+ # resp.connections[0].name #=> String
1598
+ # resp.connections[0].connection_state #=> String, one of "CREATING", "UPDATING", "DELETING", "AUTHORIZED", "DEAUTHORIZED", "AUTHORIZING", "DEAUTHORIZING"
1599
+ # resp.connections[0].state_reason #=> String
1600
+ # resp.connections[0].authorization_type #=> String, one of "BASIC", "OAUTH_CLIENT_CREDENTIALS", "API_KEY"
1601
+ # resp.connections[0].creation_time #=> Time
1602
+ # resp.connections[0].last_modified_time #=> Time
1603
+ # resp.connections[0].last_authorized_time #=> Time
1604
+ # resp.next_token #=> String
1605
+ #
1606
+ # @see http://docs.aws.amazon.com/goto/WebAPI/events-2015-10-07/ListConnections AWS API Documentation
1607
+ #
1608
+ # @overload list_connections(params = {})
1609
+ # @param [Hash] params ({})
1610
+ def list_connections(params = {}, options = {})
1611
+ req = build_request(:list_connections, params)
1612
+ req.send_request(options)
1613
+ end
1614
+
1117
1615
  # Lists all the event buses in your account, including the default event
1118
1616
  # bus, custom event buses, and partner event buses.
1119
1617
  #
@@ -1309,7 +1807,7 @@ module Aws::CloudWatchEvents
1309
1807
  # exclusive.
1310
1808
  #
1311
1809
  # @option params [String] :name_prefix
1312
- # A name prefix to filter the archives returned. Only archives with name
1810
+ # A name prefix to filter the replays returned. Only replays with name
1313
1811
  # that match the prefix are returned.
1314
1812
  #
1315
1813
  # @option params [String] :state
@@ -1371,8 +1869,8 @@ module Aws::CloudWatchEvents
1371
1869
  # The Amazon Resource Name (ARN) of the target resource.
1372
1870
  #
1373
1871
  # @option params [String] :event_bus_name
1374
- # Limits the results to show only the rules associated with the
1375
- # specified event bus.
1872
+ # The name or ARN of the event bus to list rules for. If you omit this,
1873
+ # the default event bus is used.
1376
1874
  #
1377
1875
  # @option params [String] :next_token
1378
1876
  # The token returned by a previous call to retrieve the next set of
@@ -1390,7 +1888,7 @@ module Aws::CloudWatchEvents
1390
1888
  #
1391
1889
  # resp = client.list_rule_names_by_target({
1392
1890
  # target_arn: "TargetArn", # required
1393
- # event_bus_name: "EventBusName",
1891
+ # event_bus_name: "EventBusNameOrArn",
1394
1892
  # next_token: "NextToken",
1395
1893
  # limit: 1,
1396
1894
  # })
@@ -1420,8 +1918,8 @@ module Aws::CloudWatchEvents
1420
1918
  # The prefix matching the rule name.
1421
1919
  #
1422
1920
  # @option params [String] :event_bus_name
1423
- # Limits the results to show only the rules associated with the
1424
- # specified event bus.
1921
+ # The name or ARN of the event bus to list the rules for. If you omit
1922
+ # this, the default event bus is used.
1425
1923
  #
1426
1924
  # @option params [String] :next_token
1427
1925
  # The token returned by a previous call to retrieve the next set of
@@ -1439,7 +1937,7 @@ module Aws::CloudWatchEvents
1439
1937
  #
1440
1938
  # resp = client.list_rules({
1441
1939
  # name_prefix: "RuleName",
1442
- # event_bus_name: "EventBusName",
1940
+ # event_bus_name: "EventBusNameOrArn",
1443
1941
  # next_token: "NextToken",
1444
1942
  # limit: 1,
1445
1943
  # })
@@ -1504,8 +2002,8 @@ module Aws::CloudWatchEvents
1504
2002
  # The name of the rule.
1505
2003
  #
1506
2004
  # @option params [String] :event_bus_name
1507
- # The event bus associated with the rule. If you omit this, the default
1508
- # event bus is used.
2005
+ # The name or ARN of the event bus associated with the rule. If you omit
2006
+ # this, the default event bus is used.
1509
2007
  #
1510
2008
  # @option params [String] :next_token
1511
2009
  # The token returned by a previous call to retrieve the next set of
@@ -1523,7 +2021,7 @@ module Aws::CloudWatchEvents
1523
2021
  #
1524
2022
  # resp = client.list_targets_by_rule({
1525
2023
  # rule: "RuleName", # required
1526
- # event_bus_name: "EventBusName",
2024
+ # event_bus_name: "EventBusNameOrArn",
1527
2025
  # next_token: "NextToken",
1528
2026
  # limit: 1,
1529
2027
  # })
@@ -1608,7 +2106,8 @@ module Aws::CloudWatchEvents
1608
2106
  # resources: ["EventResource"],
1609
2107
  # detail_type: "String",
1610
2108
  # detail: "String",
1611
- # event_bus_name: "NonPartnerEventBusName",
2109
+ # event_bus_name: "NonPartnerEventBusNameOrArn",
2110
+ # trace_header: "TraceHeader",
1612
2111
  # },
1613
2112
  # ],
1614
2113
  # })
@@ -1702,14 +2201,14 @@ module Aws::CloudWatchEvents
1702
2201
  # [1]: https://docs.aws.amazon.com/eventbridge/latest/userguide/eventbridge-cross-account-event-delivery.html
1703
2202
  #
1704
2203
  # @option params [String] :event_bus_name
1705
- # The event bus associated with the rule. If you omit this, the default
1706
- # event bus is used.
2204
+ # The name of the event bus associated with the rule. If you omit this,
2205
+ # the default event bus is used.
1707
2206
  #
1708
- # @option params [required, String] :action
2207
+ # @option params [String] :action
1709
2208
  # The action that you are enabling the other account to perform.
1710
2209
  # Currently, this must be `events:PutEvents`.
1711
2210
  #
1712
- # @option params [required, String] :principal
2211
+ # @option params [String] :principal
1713
2212
  # The 12-digit AWS account ID that you are permitting to put events to
1714
2213
  # your default event bus. Specify "*" to permit any account to put
1715
2214
  # events to your default event bus.
@@ -1721,7 +2220,7 @@ module Aws::CloudWatchEvents
1721
2220
  # with an account field do not match any events sent from other
1722
2221
  # accounts.
1723
2222
  #
1724
- # @option params [required, String] :statement_id
2223
+ # @option params [String] :statement_id
1725
2224
  # An identifier string for the external account that you are granting
1726
2225
  # permissions to. If you later want to revoke the permission for this
1727
2226
  # external account, specify this `StatementId` when you run
@@ -1744,20 +2243,26 @@ module Aws::CloudWatchEvents
1744
2243
  #
1745
2244
  # [1]: https://docs.aws.amazon.com/organizations/latest/userguide/orgs_introduction.html
1746
2245
  #
2246
+ # @option params [String] :policy
2247
+ # A JSON string that describes the permission policy statement. You can
2248
+ # include a `Policy` parameter in the request instead of using the
2249
+ # `StatementId`, `Action`, `Principal`, or `Condition` parameters.
2250
+ #
1747
2251
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1748
2252
  #
1749
2253
  # @example Request syntax with placeholder values
1750
2254
  #
1751
2255
  # resp = client.put_permission({
1752
2256
  # event_bus_name: "NonPartnerEventBusName",
1753
- # action: "Action", # required
1754
- # principal: "Principal", # required
1755
- # statement_id: "StatementId", # required
2257
+ # action: "Action",
2258
+ # principal: "Principal",
2259
+ # statement_id: "StatementId",
1756
2260
  # condition: {
1757
2261
  # type: "String", # required
1758
2262
  # key: "String", # required
1759
2263
  # value: "String", # required
1760
2264
  # },
2265
+ # policy: "String",
1761
2266
  # })
1762
2267
  #
1763
2268
  # @see http://docs.aws.amazon.com/goto/WebAPI/events-2015-10-07/PutPermission AWS API Documentation
@@ -1863,8 +2368,8 @@ module Aws::CloudWatchEvents
1863
2368
  # The list of key-value pairs to associate with the rule.
1864
2369
  #
1865
2370
  # @option params [String] :event_bus_name
1866
- # The event bus to associate with this rule. If you omit this, the
1867
- # default event bus is used.
2371
+ # The name or ARN of the event bus to associate with this rule. If you
2372
+ # omit this, the default event bus is used.
1868
2373
  #
1869
2374
  # @return [Types::PutRuleResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1870
2375
  #
@@ -1885,7 +2390,7 @@ module Aws::CloudWatchEvents
1885
2390
  # value: "TagValue", # required
1886
2391
  # },
1887
2392
  # ],
1888
- # event_bus_name: "EventBusName",
2393
+ # event_bus_name: "EventBusNameOrArn",
1889
2394
  # })
1890
2395
  #
1891
2396
  # @example Response structure
@@ -1942,6 +2447,8 @@ module Aws::CloudWatchEvents
1942
2447
  #
1943
2448
  # * Redshift Clusters to invoke Data API ExecuteStatement on
1944
2449
  #
2450
+ # * Custom/SaaS HTTPS APIs via EventBridge API Destinations
2451
+ #
1945
2452
  # Creating rules with built-in targets is supported only in the AWS
1946
2453
  # Management Console. The built-in targets are `EC2 CreateSnapshot API
1947
2454
  # call`, `EC2 RebootInstances API call`, `EC2 StopInstances API call`,
@@ -2031,8 +2538,8 @@ module Aws::CloudWatchEvents
2031
2538
  # The name of the rule.
2032
2539
  #
2033
2540
  # @option params [String] :event_bus_name
2034
- # The name of the event bus associated with the rule. If you omit this,
2035
- # the default event bus is used.
2541
+ # The name or ARN of the event bus associated with the rule. If you omit
2542
+ # this, the default event bus is used.
2036
2543
  #
2037
2544
  # @option params [required, Array<Types::Target>] :targets
2038
2545
  # The targets to update or add to the rule.
@@ -2046,7 +2553,7 @@ module Aws::CloudWatchEvents
2046
2553
  #
2047
2554
  # resp = client.put_targets({
2048
2555
  # rule: "RuleName", # required
2049
- # event_bus_name: "EventBusName",
2556
+ # event_bus_name: "EventBusNameOrArn",
2050
2557
  # targets: [ # required
2051
2558
  # {
2052
2559
  # id: "TargetId", # required
@@ -2149,10 +2656,13 @@ module Aws::CloudWatchEvents
2149
2656
  # granted it permission with `PutPermission`. You can find the
2150
2657
  # `StatementId` by using DescribeEventBus.
2151
2658
  #
2152
- # @option params [required, String] :statement_id
2659
+ # @option params [String] :statement_id
2153
2660
  # The statement ID corresponding to the account that is no longer
2154
2661
  # allowed to put events to the default event bus.
2155
2662
  #
2663
+ # @option params [Boolean] :remove_all_permissions
2664
+ # Specifies whether to remove all permissions.
2665
+ #
2156
2666
  # @option params [String] :event_bus_name
2157
2667
  # The name of the event bus to revoke permissions for. If you omit this,
2158
2668
  # the default event bus is used.
@@ -2162,7 +2672,8 @@ module Aws::CloudWatchEvents
2162
2672
  # @example Request syntax with placeholder values
2163
2673
  #
2164
2674
  # resp = client.remove_permission({
2165
- # statement_id: "StatementId", # required
2675
+ # statement_id: "StatementId",
2676
+ # remove_all_permissions: false,
2166
2677
  # event_bus_name: "NonPartnerEventBusName",
2167
2678
  # })
2168
2679
  #
@@ -2191,7 +2702,8 @@ module Aws::CloudWatchEvents
2191
2702
  # The name of the rule.
2192
2703
  #
2193
2704
  # @option params [String] :event_bus_name
2194
- # The name of the event bus associated with the rule.
2705
+ # The name or ARN of the event bus associated with the rule. If you omit
2706
+ # this, the default event bus is used.
2195
2707
  #
2196
2708
  # @option params [required, Array<String>] :ids
2197
2709
  # The IDs of the targets to remove from the rule.
@@ -2212,7 +2724,7 @@ module Aws::CloudWatchEvents
2212
2724
  #
2213
2725
  # resp = client.remove_targets({
2214
2726
  # rule: "RuleName", # required
2215
- # event_bus_name: "EventBusName",
2727
+ # event_bus_name: "EventBusNameOrArn",
2216
2728
  # ids: ["TargetId"], # required
2217
2729
  # force: false,
2218
2730
  # })
@@ -2366,7 +2878,27 @@ module Aws::CloudWatchEvents
2366
2878
  # [1]: https://docs.aws.amazon.com/eventbridge/latest/userguide/eventbridge-and-event-patterns.html
2367
2879
  #
2368
2880
  # @option params [required, String] :event
2369
- # The event, in JSON format, to test against the event pattern.
2881
+ # The event, in JSON format, to test against the event pattern. The JSON
2882
+ # must follow the format specified in [AWS Events][1], and the following
2883
+ # fields are mandatory:
2884
+ #
2885
+ # * `id`
2886
+ #
2887
+ # * `account`
2888
+ #
2889
+ # * `source`
2890
+ #
2891
+ # * `time`
2892
+ #
2893
+ # * `region`
2894
+ #
2895
+ # * `resources`
2896
+ #
2897
+ # * `detail-type`
2898
+ #
2899
+ #
2900
+ #
2901
+ # [1]: https://docs.aws.amazon.com/eventbridge/latest/userguide/aws-events.html
2370
2902
  #
2371
2903
  # @return [Types::TestEventPatternResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2372
2904
  #
@@ -2420,6 +2952,61 @@ module Aws::CloudWatchEvents
2420
2952
  req.send_request(options)
2421
2953
  end
2422
2954
 
2955
+ # Updates an API destination.
2956
+ #
2957
+ # @option params [required, String] :name
2958
+ # The name of the API destination to update.
2959
+ #
2960
+ # @option params [String] :description
2961
+ # The name of the API destination to update.
2962
+ #
2963
+ # @option params [String] :connection_arn
2964
+ # The ARN of the connection to use for the API destination.
2965
+ #
2966
+ # @option params [String] :invocation_endpoint
2967
+ # The URL to the endpoint to use for the API destination.
2968
+ #
2969
+ # @option params [String] :http_method
2970
+ # The method to use for the API destination.
2971
+ #
2972
+ # @option params [Integer] :invocation_rate_limit_per_second
2973
+ # The maximum number of invocations per second to send to the API
2974
+ # destination.
2975
+ #
2976
+ # @return [Types::UpdateApiDestinationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2977
+ #
2978
+ # * {Types::UpdateApiDestinationResponse#api_destination_arn #api_destination_arn} => String
2979
+ # * {Types::UpdateApiDestinationResponse#api_destination_state #api_destination_state} => String
2980
+ # * {Types::UpdateApiDestinationResponse#creation_time #creation_time} => Time
2981
+ # * {Types::UpdateApiDestinationResponse#last_modified_time #last_modified_time} => Time
2982
+ #
2983
+ # @example Request syntax with placeholder values
2984
+ #
2985
+ # resp = client.update_api_destination({
2986
+ # name: "ApiDestinationName", # required
2987
+ # description: "ApiDestinationDescription",
2988
+ # connection_arn: "ConnectionArn",
2989
+ # invocation_endpoint: "HttpsEndpoint",
2990
+ # http_method: "POST", # accepts POST, GET, HEAD, OPTIONS, PUT, PATCH, DELETE
2991
+ # invocation_rate_limit_per_second: 1,
2992
+ # })
2993
+ #
2994
+ # @example Response structure
2995
+ #
2996
+ # resp.api_destination_arn #=> String
2997
+ # resp.api_destination_state #=> String, one of "ACTIVE", "INACTIVE"
2998
+ # resp.creation_time #=> Time
2999
+ # resp.last_modified_time #=> Time
3000
+ #
3001
+ # @see http://docs.aws.amazon.com/goto/WebAPI/events-2015-10-07/UpdateApiDestination AWS API Documentation
3002
+ #
3003
+ # @overload update_api_destination(params = {})
3004
+ # @param [Hash] params ({})
3005
+ def update_api_destination(params = {}, options = {})
3006
+ req = build_request(:update_api_destination, params)
3007
+ req.send_request(options)
3008
+ end
3009
+
2423
3010
  # Updates the specified archive.
2424
3011
  #
2425
3012
  # @option params [required, String] :archive_name
@@ -2466,6 +3053,117 @@ module Aws::CloudWatchEvents
2466
3053
  req.send_request(options)
2467
3054
  end
2468
3055
 
3056
+ # Updates settings for a connection.
3057
+ #
3058
+ # @option params [required, String] :name
3059
+ # The name of the connection to update.
3060
+ #
3061
+ # @option params [String] :description
3062
+ # A description for the connection.
3063
+ #
3064
+ # @option params [String] :authorization_type
3065
+ # The type of authorization to use for the connection.
3066
+ #
3067
+ # @option params [Types::UpdateConnectionAuthRequestParameters] :auth_parameters
3068
+ # The authorization parameters to use for the connection.
3069
+ #
3070
+ # @return [Types::UpdateConnectionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3071
+ #
3072
+ # * {Types::UpdateConnectionResponse#connection_arn #connection_arn} => String
3073
+ # * {Types::UpdateConnectionResponse#connection_state #connection_state} => String
3074
+ # * {Types::UpdateConnectionResponse#creation_time #creation_time} => Time
3075
+ # * {Types::UpdateConnectionResponse#last_modified_time #last_modified_time} => Time
3076
+ # * {Types::UpdateConnectionResponse#last_authorized_time #last_authorized_time} => Time
3077
+ #
3078
+ # @example Request syntax with placeholder values
3079
+ #
3080
+ # resp = client.update_connection({
3081
+ # name: "ConnectionName", # required
3082
+ # description: "ConnectionDescription",
3083
+ # authorization_type: "BASIC", # accepts BASIC, OAUTH_CLIENT_CREDENTIALS, API_KEY
3084
+ # auth_parameters: {
3085
+ # basic_auth_parameters: {
3086
+ # username: "AuthHeaderParameters",
3087
+ # password: "AuthHeaderParameters",
3088
+ # },
3089
+ # o_auth_parameters: {
3090
+ # client_parameters: {
3091
+ # client_id: "AuthHeaderParameters",
3092
+ # client_secret: "AuthHeaderParameters",
3093
+ # },
3094
+ # authorization_endpoint: "HttpsEndpoint",
3095
+ # http_method: "GET", # accepts GET, POST, PUT
3096
+ # o_auth_http_parameters: {
3097
+ # header_parameters: [
3098
+ # {
3099
+ # key: "HeaderKey",
3100
+ # value: "HeaderValue",
3101
+ # is_value_secret: false,
3102
+ # },
3103
+ # ],
3104
+ # query_string_parameters: [
3105
+ # {
3106
+ # key: "QueryStringKey",
3107
+ # value: "QueryStringValue",
3108
+ # is_value_secret: false,
3109
+ # },
3110
+ # ],
3111
+ # body_parameters: [
3112
+ # {
3113
+ # key: "String",
3114
+ # value: "String",
3115
+ # is_value_secret: false,
3116
+ # },
3117
+ # ],
3118
+ # },
3119
+ # },
3120
+ # api_key_auth_parameters: {
3121
+ # api_key_name: "AuthHeaderParameters",
3122
+ # api_key_value: "AuthHeaderParameters",
3123
+ # },
3124
+ # invocation_http_parameters: {
3125
+ # header_parameters: [
3126
+ # {
3127
+ # key: "HeaderKey",
3128
+ # value: "HeaderValue",
3129
+ # is_value_secret: false,
3130
+ # },
3131
+ # ],
3132
+ # query_string_parameters: [
3133
+ # {
3134
+ # key: "QueryStringKey",
3135
+ # value: "QueryStringValue",
3136
+ # is_value_secret: false,
3137
+ # },
3138
+ # ],
3139
+ # body_parameters: [
3140
+ # {
3141
+ # key: "String",
3142
+ # value: "String",
3143
+ # is_value_secret: false,
3144
+ # },
3145
+ # ],
3146
+ # },
3147
+ # },
3148
+ # })
3149
+ #
3150
+ # @example Response structure
3151
+ #
3152
+ # resp.connection_arn #=> String
3153
+ # resp.connection_state #=> String, one of "CREATING", "UPDATING", "DELETING", "AUTHORIZED", "DEAUTHORIZED", "AUTHORIZING", "DEAUTHORIZING"
3154
+ # resp.creation_time #=> Time
3155
+ # resp.last_modified_time #=> Time
3156
+ # resp.last_authorized_time #=> Time
3157
+ #
3158
+ # @see http://docs.aws.amazon.com/goto/WebAPI/events-2015-10-07/UpdateConnection AWS API Documentation
3159
+ #
3160
+ # @overload update_connection(params = {})
3161
+ # @param [Hash] params ({})
3162
+ def update_connection(params = {}, options = {})
3163
+ req = build_request(:update_connection, params)
3164
+ req.send_request(options)
3165
+ end
3166
+
2469
3167
  # @!endgroup
2470
3168
 
2471
3169
  # @param params ({})
@@ -2479,7 +3177,7 @@ module Aws::CloudWatchEvents
2479
3177
  params: params,
2480
3178
  config: config)
2481
3179
  context[:gem_name] = 'aws-sdk-cloudwatchevents'
2482
- context[:gem_version] = '1.39.0'
3180
+ context[:gem_version] = '1.44.0'
2483
3181
  Seahorse::Client::Request.new(handlers, context)
2484
3182
  end
2485
3183