aws-sdk-eventbridge 1.77.0 → 1.79.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-eventbridge/client.rb +158 -69
- data/lib/aws-sdk-eventbridge/client_api.rb +15 -8
- data/lib/aws-sdk-eventbridge/types.rb +200 -68
- data/lib/aws-sdk-eventbridge.rb +1 -1
- data/sig/client.rbs +10 -4
- data/sig/types.rbs +6 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 15402f8b351e6fc7fe349d802d7908e6aade5424848c1c2842150be2a7aeca03
|
4
|
+
data.tar.gz: 350a7519ec67f3e33ffb825c8c5c710e7d55b9d37dad299468164f22de73c11b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 682516cceab115270482e8319f13c2e459848c511c9599ecea3f966e2fcdc14ca25aa9aafefe4573d188206fbbb0cc7006f2e063741eeec0248a16350b03f109
|
7
|
+
data.tar.gz: a4478fff7930e16ef9122b2583e9298b8bd3808c66aba8f041ffc2133bb222cb8c4a29e2863a4bcf585ac9e1392a1d77b86703c67be2935c2c7849cc32920d87
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.79.0 (2025-04-16)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Adding support for KmsKeyIdentifer in CreateConnection, UpdateConnection and DescribeConnection APIs
|
8
|
+
|
9
|
+
1.78.0 (2025-04-04)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Amazon EventBridge adds support for customer-managed keys on Archives and validations for two fields: eventSourceArn and kmsKeyIdentifier.
|
13
|
+
|
4
14
|
1.77.0 (2025-02-18)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.79.0
|
@@ -608,28 +608,17 @@ module Aws::EventBridge
|
|
608
608
|
# archive, all events are sent to the archive except replayed events.
|
609
609
|
# Replayed events are not sent to an archive.
|
610
610
|
#
|
611
|
-
#
|
612
|
-
#
|
613
|
-
#
|
611
|
+
# If you have specified that EventBridge use a customer managed key for
|
612
|
+
# encrypting the source event bus, we strongly recommend you also
|
613
|
+
# specify a customer managed key for any archives for the event bus as
|
614
|
+
# well.
|
614
615
|
#
|
615
|
-
#
|
616
|
-
#
|
616
|
+
# For more information, see [Encrypting archives][1] in the *Amazon
|
617
|
+
# EventBridge User Guide*.
|
617
618
|
#
|
618
|
-
# * You call ` CreateDiscoverer ` on an event bus set to use a customer
|
619
|
-
# managed key for encryption.
|
620
619
|
#
|
621
|
-
# * You call ` UpdatedEventBus ` to set a customer managed key on an
|
622
|
-
# event bus with an archives or schema discovery enabled.
|
623
620
|
#
|
624
|
-
#
|
625
|
-
# an Amazon Web Services owned key. For more information, see [Data
|
626
|
-
# encryption in EventBridge][1] in the *Amazon EventBridge User Guide*.
|
627
|
-
#
|
628
|
-
# </note>
|
629
|
-
#
|
630
|
-
#
|
631
|
-
#
|
632
|
-
# [1]: https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-encryption.html
|
621
|
+
# [1]: https://docs.aws.amazon.com/eventbridge/latest/userguide/encryption-archives.html
|
633
622
|
#
|
634
623
|
# @option params [required, String] :archive_name
|
635
624
|
# The name for the archive to create.
|
@@ -647,6 +636,31 @@ module Aws::EventBridge
|
|
647
636
|
# The number of days to retain events for. Default value is 0. If set to
|
648
637
|
# 0, events are retained indefinitely
|
649
638
|
#
|
639
|
+
# @option params [String] :kms_key_identifier
|
640
|
+
# The identifier of the KMS customer managed key for EventBridge to use,
|
641
|
+
# if you choose to use a customer managed key to encrypt this archive.
|
642
|
+
# The identifier can be the key Amazon Resource Name (ARN), KeyId, key
|
643
|
+
# alias, or key alias ARN.
|
644
|
+
#
|
645
|
+
# If you do not specify a customer managed key identifier, EventBridge
|
646
|
+
# uses an Amazon Web Services owned key to encrypt the archive.
|
647
|
+
#
|
648
|
+
# For more information, see [Identify and view keys][1] in the *Key
|
649
|
+
# Management Service Developer Guide*.
|
650
|
+
#
|
651
|
+
# If you have specified that EventBridge use a customer managed key for
|
652
|
+
# encrypting the source event bus, we strongly recommend you also
|
653
|
+
# specify a customer managed key for any archives for the event bus as
|
654
|
+
# well.
|
655
|
+
#
|
656
|
+
# For more information, see [Encrypting archives][2] in the *Amazon
|
657
|
+
# EventBridge User Guide*.
|
658
|
+
#
|
659
|
+
#
|
660
|
+
#
|
661
|
+
# [1]: https://docs.aws.amazon.com/kms/latest/developerguide/viewing-keys.html
|
662
|
+
# [2]: https://docs.aws.amazon.com/eventbridge/latest/userguide/encryption-archives.html
|
663
|
+
#
|
650
664
|
# @return [Types::CreateArchiveResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
651
665
|
#
|
652
666
|
# * {Types::CreateArchiveResponse#archive_arn #archive_arn} => String
|
@@ -658,10 +672,11 @@ module Aws::EventBridge
|
|
658
672
|
#
|
659
673
|
# resp = client.create_archive({
|
660
674
|
# archive_name: "ArchiveName", # required
|
661
|
-
# event_source_arn: "
|
675
|
+
# event_source_arn: "EventBusArn", # required
|
662
676
|
# description: "ArchiveDescription",
|
663
677
|
# event_pattern: "EventPattern",
|
664
678
|
# retention_days: 1,
|
679
|
+
# kms_key_identifier: "KmsKeyIdentifier",
|
665
680
|
# })
|
666
681
|
#
|
667
682
|
# @example Response structure
|
@@ -711,15 +726,31 @@ module Aws::EventBridge
|
|
711
726
|
# `AuthorizationType` you specify.
|
712
727
|
#
|
713
728
|
# @option params [Types::ConnectivityResourceParameters] :invocation_connectivity_parameters
|
714
|
-
# For connections to private
|
715
|
-
#
|
729
|
+
# For connections to private APIs, the parameters to use for invoking
|
730
|
+
# the API.
|
731
|
+
#
|
732
|
+
# For more information, see [Connecting to private APIs][1] in the <i>
|
733
|
+
# <i>Amazon EventBridge User Guide</i> </i>.
|
734
|
+
#
|
735
|
+
#
|
716
736
|
#
|
717
|
-
#
|
718
|
-
# <i> <i>Amazon EventBridge User Guide</i> </i>.
|
737
|
+
# [1]: https://docs.aws.amazon.com/eventbridge/latest/userguide/connection-private.html
|
719
738
|
#
|
739
|
+
# @option params [String] :kms_key_identifier
|
740
|
+
# The identifier of the KMS customer managed key for EventBridge to use,
|
741
|
+
# if you choose to use a customer managed key to encrypt this
|
742
|
+
# connection. The identifier can be the key Amazon Resource Name (ARN),
|
743
|
+
# KeyId, key alias, or key alias ARN.
|
720
744
|
#
|
745
|
+
# If you do not specify a customer managed key identifier, EventBridge
|
746
|
+
# uses an Amazon Web Services owned key to encrypt the connection.
|
721
747
|
#
|
722
|
-
# [1]
|
748
|
+
# For more information, see [Identify and view keys][1] in the *Key
|
749
|
+
# Management Service Developer Guide*.
|
750
|
+
#
|
751
|
+
#
|
752
|
+
#
|
753
|
+
# [1]: https://docs.aws.amazon.com/kms/latest/developerguide/viewing-keys.html
|
723
754
|
#
|
724
755
|
# @return [Types::CreateConnectionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
725
756
|
#
|
@@ -808,6 +839,7 @@ module Aws::EventBridge
|
|
808
839
|
# resource_configuration_arn: "ResourceConfigurationArn", # required
|
809
840
|
# },
|
810
841
|
# },
|
842
|
+
# kms_key_identifier: "KmsKeyIdentifier",
|
811
843
|
# })
|
812
844
|
#
|
813
845
|
# @example Response structure
|
@@ -949,32 +981,37 @@ module Aws::EventBridge
|
|
949
981
|
# uses an Amazon Web Services owned key to encrypt events on the event
|
950
982
|
# bus.
|
951
983
|
#
|
952
|
-
# For more information, see [
|
953
|
-
# Service Developer Guide*.
|
984
|
+
# For more information, see [Identify and view keys][1] in the *Key
|
985
|
+
# Management Service Developer Guide*.
|
954
986
|
#
|
955
|
-
# <note markdown="1">
|
956
|
-
#
|
957
|
-
# if:
|
987
|
+
# <note markdown="1"> Schema discovery is not supported for event buses encrypted using a
|
988
|
+
# customer managed key. EventBridge returns an error if:
|
958
989
|
#
|
959
|
-
# * You call `
|
960
|
-
# managed key for encryption.
|
961
|
-
#
|
962
|
-
# * You call ` CreateDiscoverer ` on an event bus set to use a customer
|
990
|
+
# * You call ` CreateDiscoverer ` on an event bus set to use a customer
|
963
991
|
# managed key for encryption.
|
964
992
|
#
|
965
993
|
# * You call ` UpdatedEventBus ` to set a customer managed key on an
|
966
|
-
# event bus with
|
994
|
+
# event bus with schema discovery enabled.
|
967
995
|
#
|
968
|
-
# To enable
|
969
|
-
#
|
970
|
-
#
|
996
|
+
# To enable schema discovery on an event bus, choose to use an Amazon
|
997
|
+
# Web Services owned key. For more information, see [Encrypting
|
998
|
+
# events][2] in the *Amazon EventBridge User Guide*.
|
971
999
|
#
|
972
1000
|
# </note>
|
973
1001
|
#
|
1002
|
+
# If you have specified that EventBridge use a customer managed key for
|
1003
|
+
# encrypting the source event bus, we strongly recommend you also
|
1004
|
+
# specify a customer managed key for any archives for the event bus as
|
1005
|
+
# well.
|
1006
|
+
#
|
1007
|
+
# For more information, see [Encrypting archives][3] in the *Amazon
|
1008
|
+
# EventBridge User Guide*.
|
974
1009
|
#
|
975
1010
|
#
|
976
|
-
#
|
977
|
-
# [
|
1011
|
+
#
|
1012
|
+
# [1]: https://docs.aws.amazon.com/kms/latest/developerguide/viewing-keys.html
|
1013
|
+
# [2]: https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-encryption-event-bus-cmkey.html
|
1014
|
+
# [3]: https://docs.aws.amazon.com/eventbridge/latest/userguide/encryption-archives.html
|
978
1015
|
#
|
979
1016
|
# @option params [Types::DeadLetterConfig] :dead_letter_config
|
980
1017
|
# Configuration details of the Amazon SQS queue for EventBridge to use
|
@@ -1460,6 +1497,7 @@ module Aws::EventBridge
|
|
1460
1497
|
# * {Types::DescribeArchiveResponse#event_pattern #event_pattern} => String
|
1461
1498
|
# * {Types::DescribeArchiveResponse#state #state} => String
|
1462
1499
|
# * {Types::DescribeArchiveResponse#state_reason #state_reason} => String
|
1500
|
+
# * {Types::DescribeArchiveResponse#kms_key_identifier #kms_key_identifier} => String
|
1463
1501
|
# * {Types::DescribeArchiveResponse#retention_days #retention_days} => Integer
|
1464
1502
|
# * {Types::DescribeArchiveResponse#size_bytes #size_bytes} => Integer
|
1465
1503
|
# * {Types::DescribeArchiveResponse#event_count #event_count} => Integer
|
@@ -1480,6 +1518,7 @@ module Aws::EventBridge
|
|
1480
1518
|
# resp.event_pattern #=> String
|
1481
1519
|
# resp.state #=> String, one of "ENABLED", "DISABLED", "CREATING", "UPDATING", "CREATE_FAILED", "UPDATE_FAILED"
|
1482
1520
|
# resp.state_reason #=> String
|
1521
|
+
# resp.kms_key_identifier #=> String
|
1483
1522
|
# resp.retention_days #=> Integer
|
1484
1523
|
# resp.size_bytes #=> Integer
|
1485
1524
|
# resp.event_count #=> Integer
|
@@ -1509,6 +1548,7 @@ module Aws::EventBridge
|
|
1509
1548
|
# * {Types::DescribeConnectionResponse#state_reason #state_reason} => String
|
1510
1549
|
# * {Types::DescribeConnectionResponse#authorization_type #authorization_type} => String
|
1511
1550
|
# * {Types::DescribeConnectionResponse#secret_arn #secret_arn} => String
|
1551
|
+
# * {Types::DescribeConnectionResponse#kms_key_identifier #kms_key_identifier} => String
|
1512
1552
|
# * {Types::DescribeConnectionResponse#auth_parameters #auth_parameters} => Types::ConnectionAuthResponseParameters
|
1513
1553
|
# * {Types::DescribeConnectionResponse#creation_time #creation_time} => Time
|
1514
1554
|
# * {Types::DescribeConnectionResponse#last_modified_time #last_modified_time} => Time
|
@@ -1531,6 +1571,7 @@ module Aws::EventBridge
|
|
1531
1571
|
# resp.state_reason #=> String
|
1532
1572
|
# resp.authorization_type #=> String, one of "BASIC", "OAUTH_CLIENT_CREDENTIALS", "API_KEY"
|
1533
1573
|
# resp.secret_arn #=> String
|
1574
|
+
# resp.kms_key_identifier #=> String
|
1534
1575
|
# resp.auth_parameters.basic_auth_parameters.username #=> String
|
1535
1576
|
# resp.auth_parameters.o_auth_parameters.client_parameters.client_id #=> String
|
1536
1577
|
# resp.auth_parameters.o_auth_parameters.authorization_endpoint #=> String
|
@@ -2058,7 +2099,7 @@ module Aws::EventBridge
|
|
2058
2099
|
#
|
2059
2100
|
# resp = client.list_archives({
|
2060
2101
|
# name_prefix: "ArchiveName",
|
2061
|
-
# event_source_arn: "
|
2102
|
+
# event_source_arn: "EventBusArn",
|
2062
2103
|
# state: "ENABLED", # accepts ENABLED, DISABLED, CREATING, UPDATING, CREATE_FAILED, UPDATE_FAILED
|
2063
2104
|
# next_token: "NextToken",
|
2064
2105
|
# limit: 1,
|
@@ -2484,7 +2525,7 @@ module Aws::EventBridge
|
|
2484
2525
|
# resp = client.list_replays({
|
2485
2526
|
# name_prefix: "ReplayName",
|
2486
2527
|
# state: "STARTING", # accepts STARTING, RUNNING, CANCELLING, COMPLETED, CANCELLED, FAILED
|
2487
|
-
# event_source_arn: "
|
2528
|
+
# event_source_arn: "ArchiveArn",
|
2488
2529
|
# next_token: "NextToken",
|
2489
2530
|
# limit: 1,
|
2490
2531
|
# })
|
@@ -2791,11 +2832,11 @@ module Aws::EventBridge
|
|
2791
2832
|
# Sends custom events to Amazon EventBridge so that they can be matched
|
2792
2833
|
# to rules.
|
2793
2834
|
#
|
2794
|
-
#
|
2795
|
-
#
|
2796
|
-
#
|
2797
|
-
# [Calculating PutEvents event entry size][1] in the
|
2798
|
-
# EventBridge User Guide</i> </i
|
2835
|
+
# You can batch multiple event entries into one request for efficiency.
|
2836
|
+
# However, the total entry size must be less than 256KB. You can
|
2837
|
+
# calculate the entry size before you send the events. For more
|
2838
|
+
# information, see [Calculating PutEvents event entry size][1] in the
|
2839
|
+
# <i> <i>Amazon EventBridge User Guide</i> </i>.
|
2799
2840
|
#
|
2800
2841
|
# PutEvents accepts the data in JSON format. For the JSON number
|
2801
2842
|
# (integer) data type, the constraints are: a minimum value of
|
@@ -2808,7 +2849,7 @@ module Aws::EventBridge
|
|
2808
2849
|
#
|
2809
2850
|
#
|
2810
2851
|
#
|
2811
|
-
# [1]: https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-putevent-size
|
2852
|
+
# [1]: https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-putevents.html#eb-putevent-size
|
2812
2853
|
#
|
2813
2854
|
# @option params [required, Array<Types::PutEventsRequestEntry>] :entries
|
2814
2855
|
# The entry that defines an event in your system. You can specify
|
@@ -3632,7 +3673,7 @@ module Aws::EventBridge
|
|
3632
3673
|
# resp = client.start_replay({
|
3633
3674
|
# replay_name: "ReplayName", # required
|
3634
3675
|
# description: "ReplayDescription",
|
3635
|
-
# event_source_arn: "
|
3676
|
+
# event_source_arn: "ArchiveArn", # required
|
3636
3677
|
# event_start_time: Time.now, # required
|
3637
3678
|
# event_end_time: Time.now, # required
|
3638
3679
|
# destination: { # required
|
@@ -3862,6 +3903,31 @@ module Aws::EventBridge
|
|
3862
3903
|
# @option params [Integer] :retention_days
|
3863
3904
|
# The number of days to retain events in the archive.
|
3864
3905
|
#
|
3906
|
+
# @option params [String] :kms_key_identifier
|
3907
|
+
# The identifier of the KMS customer managed key for EventBridge to use,
|
3908
|
+
# if you choose to use a customer managed key to encrypt this archive.
|
3909
|
+
# The identifier can be the key Amazon Resource Name (ARN), KeyId, key
|
3910
|
+
# alias, or key alias ARN.
|
3911
|
+
#
|
3912
|
+
# If you do not specify a customer managed key identifier, EventBridge
|
3913
|
+
# uses an Amazon Web Services owned key to encrypt the archive.
|
3914
|
+
#
|
3915
|
+
# For more information, see [Identify and view keys][1] in the *Key
|
3916
|
+
# Management Service Developer Guide*.
|
3917
|
+
#
|
3918
|
+
# If you have specified that EventBridge use a customer managed key for
|
3919
|
+
# encrypting the source event bus, we strongly recommend you also
|
3920
|
+
# specify a customer managed key for any archives for the event bus as
|
3921
|
+
# well.
|
3922
|
+
#
|
3923
|
+
# For more information, see [Encrypting archives][2] in the *Amazon
|
3924
|
+
# EventBridge User Guide*.
|
3925
|
+
#
|
3926
|
+
#
|
3927
|
+
#
|
3928
|
+
# [1]: https://docs.aws.amazon.com/kms/latest/developerguide/viewing-keys.html
|
3929
|
+
# [2]: https://docs.aws.amazon.com/eventbridge/latest/userguide/encryption-archives.html
|
3930
|
+
#
|
3865
3931
|
# @return [Types::UpdateArchiveResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3866
3932
|
#
|
3867
3933
|
# * {Types::UpdateArchiveResponse#archive_arn #archive_arn} => String
|
@@ -3876,6 +3942,7 @@ module Aws::EventBridge
|
|
3876
3942
|
# description: "ArchiveDescription",
|
3877
3943
|
# event_pattern: "EventPattern",
|
3878
3944
|
# retention_days: 1,
|
3945
|
+
# kms_key_identifier: "KmsKeyIdentifier",
|
3879
3946
|
# })
|
3880
3947
|
#
|
3881
3948
|
# @example Response structure
|
@@ -3909,15 +3976,31 @@ module Aws::EventBridge
|
|
3909
3976
|
# The authorization parameters to use for the connection.
|
3910
3977
|
#
|
3911
3978
|
# @option params [Types::ConnectivityResourceParameters] :invocation_connectivity_parameters
|
3912
|
-
# For connections to private
|
3913
|
-
#
|
3979
|
+
# For connections to private APIs, the parameters to use for invoking
|
3980
|
+
# the API.
|
3914
3981
|
#
|
3915
|
-
# For more information, see [Connecting to private
|
3916
|
-
# <i>
|
3982
|
+
# For more information, see [Connecting to private APIs][1] in the <i>
|
3983
|
+
# <i>Amazon EventBridge User Guide</i> </i>.
|
3917
3984
|
#
|
3918
3985
|
#
|
3919
3986
|
#
|
3920
|
-
# [1]: https://docs.aws.amazon.com/eventbridge/latest/userguide/
|
3987
|
+
# [1]: https://docs.aws.amazon.com/eventbridge/latest/userguide/connection-private.html
|
3988
|
+
#
|
3989
|
+
# @option params [String] :kms_key_identifier
|
3990
|
+
# The identifier of the KMS customer managed key for EventBridge to use,
|
3991
|
+
# if you choose to use a customer managed key to encrypt this
|
3992
|
+
# connection. The identifier can be the key Amazon Resource Name (ARN),
|
3993
|
+
# KeyId, key alias, or key alias ARN.
|
3994
|
+
#
|
3995
|
+
# If you do not specify a customer managed key identifier, EventBridge
|
3996
|
+
# uses an Amazon Web Services owned key to encrypt the connection.
|
3997
|
+
#
|
3998
|
+
# For more information, see [Identify and view keys][1] in the *Key
|
3999
|
+
# Management Service Developer Guide*.
|
4000
|
+
#
|
4001
|
+
#
|
4002
|
+
#
|
4003
|
+
# [1]: https://docs.aws.amazon.com/kms/latest/developerguide/viewing-keys.html
|
3921
4004
|
#
|
3922
4005
|
# @return [Types::UpdateConnectionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3923
4006
|
#
|
@@ -4007,6 +4090,7 @@ module Aws::EventBridge
|
|
4007
4090
|
# resource_configuration_arn: "ResourceConfigurationArn", # required
|
4008
4091
|
# },
|
4009
4092
|
# },
|
4093
|
+
# kms_key_identifier: "KmsKeyIdentifier",
|
4010
4094
|
# })
|
4011
4095
|
#
|
4012
4096
|
# @example Response structure
|
@@ -4130,32 +4214,37 @@ module Aws::EventBridge
|
|
4130
4214
|
# uses an Amazon Web Services owned key to encrypt events on the event
|
4131
4215
|
# bus.
|
4132
4216
|
#
|
4133
|
-
# For more information, see [
|
4134
|
-
# Service Developer Guide*.
|
4217
|
+
# For more information, see [Identify and view keys][1] in the *Key
|
4218
|
+
# Management Service Developer Guide*.
|
4135
4219
|
#
|
4136
|
-
# <note markdown="1">
|
4137
|
-
#
|
4138
|
-
# if:
|
4220
|
+
# <note markdown="1"> Schema discovery is not supported for event buses encrypted using a
|
4221
|
+
# customer managed key. EventBridge returns an error if:
|
4139
4222
|
#
|
4140
|
-
# * You call `
|
4141
|
-
# managed key for encryption.
|
4142
|
-
#
|
4143
|
-
# * You call ` CreateDiscoverer ` on an event bus set to use a customer
|
4223
|
+
# * You call ` CreateDiscoverer ` on an event bus set to use a customer
|
4144
4224
|
# managed key for encryption.
|
4145
4225
|
#
|
4146
4226
|
# * You call ` UpdatedEventBus ` to set a customer managed key on an
|
4147
|
-
# event bus with
|
4227
|
+
# event bus with schema discovery enabled.
|
4148
4228
|
#
|
4149
|
-
# To enable
|
4150
|
-
#
|
4151
|
-
#
|
4229
|
+
# To enable schema discovery on an event bus, choose to use an Amazon
|
4230
|
+
# Web Services owned key. For more information, see [Encrypting
|
4231
|
+
# events][2] in the *Amazon EventBridge User Guide*.
|
4152
4232
|
#
|
4153
4233
|
# </note>
|
4154
4234
|
#
|
4235
|
+
# If you have specified that EventBridge use a customer managed key for
|
4236
|
+
# encrypting the source event bus, we strongly recommend you also
|
4237
|
+
# specify a customer managed key for any archives for the event bus as
|
4238
|
+
# well.
|
4239
|
+
#
|
4240
|
+
# For more information, see [Encrypting archives][3] in the *Amazon
|
4241
|
+
# EventBridge User Guide*.
|
4242
|
+
#
|
4155
4243
|
#
|
4156
4244
|
#
|
4157
|
-
# [1]: https://docs.aws.amazon.com/kms/latest/developerguide/
|
4158
|
-
# [2]: https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-encryption.html
|
4245
|
+
# [1]: https://docs.aws.amazon.com/kms/latest/developerguide/viewing-keys.html
|
4246
|
+
# [2]: https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-encryption-event-bus-cmkey.html
|
4247
|
+
# [3]: https://docs.aws.amazon.com/eventbridge/latest/userguide/encryption-archives.html
|
4159
4248
|
#
|
4160
4249
|
# @option params [String] :description
|
4161
4250
|
# The event bus description.
|
@@ -4225,7 +4314,7 @@ module Aws::EventBridge
|
|
4225
4314
|
tracer: tracer
|
4226
4315
|
)
|
4227
4316
|
context[:gem_name] = 'aws-sdk-eventbridge'
|
4228
|
-
context[:gem_version] = '1.
|
4317
|
+
context[:gem_version] = '1.79.0'
|
4229
4318
|
Seahorse::Client::Request.new(handlers, context)
|
4230
4319
|
end
|
4231
4320
|
|
@@ -147,6 +147,7 @@ module Aws::EventBridge
|
|
147
147
|
ErrorCode = Shapes::StringShape.new(name: 'ErrorCode')
|
148
148
|
ErrorMessage = Shapes::StringShape.new(name: 'ErrorMessage')
|
149
149
|
EventBus = Shapes::StructureShape.new(name: 'EventBus')
|
150
|
+
EventBusArn = Shapes::StringShape.new(name: 'EventBusArn')
|
150
151
|
EventBusDescription = Shapes::StringShape.new(name: 'EventBusDescription')
|
151
152
|
EventBusList = Shapes::ListShape.new(name: 'EventBusList')
|
152
153
|
EventBusName = Shapes::StringShape.new(name: 'EventBusName')
|
@@ -387,7 +388,7 @@ module Aws::EventBridge
|
|
387
388
|
AppSyncParameters.struct_class = Types::AppSyncParameters
|
388
389
|
|
389
390
|
Archive.add_member(:archive_name, Shapes::ShapeRef.new(shape: ArchiveName, location_name: "ArchiveName"))
|
390
|
-
Archive.add_member(:event_source_arn, Shapes::ShapeRef.new(shape:
|
391
|
+
Archive.add_member(:event_source_arn, Shapes::ShapeRef.new(shape: EventBusArn, location_name: "EventSourceArn"))
|
391
392
|
Archive.add_member(:state, Shapes::ShapeRef.new(shape: ArchiveState, location_name: "State"))
|
392
393
|
Archive.add_member(:state_reason, Shapes::ShapeRef.new(shape: ArchiveStateReason, location_name: "StateReason"))
|
393
394
|
Archive.add_member(:retention_days, Shapes::ShapeRef.new(shape: RetentionDays, location_name: "RetentionDays"))
|
@@ -518,10 +519,11 @@ module Aws::EventBridge
|
|
518
519
|
CreateApiDestinationResponse.struct_class = Types::CreateApiDestinationResponse
|
519
520
|
|
520
521
|
CreateArchiveRequest.add_member(:archive_name, Shapes::ShapeRef.new(shape: ArchiveName, required: true, location_name: "ArchiveName"))
|
521
|
-
CreateArchiveRequest.add_member(:event_source_arn, Shapes::ShapeRef.new(shape:
|
522
|
+
CreateArchiveRequest.add_member(:event_source_arn, Shapes::ShapeRef.new(shape: EventBusArn, required: true, location_name: "EventSourceArn"))
|
522
523
|
CreateArchiveRequest.add_member(:description, Shapes::ShapeRef.new(shape: ArchiveDescription, location_name: "Description"))
|
523
524
|
CreateArchiveRequest.add_member(:event_pattern, Shapes::ShapeRef.new(shape: EventPattern, location_name: "EventPattern"))
|
524
525
|
CreateArchiveRequest.add_member(:retention_days, Shapes::ShapeRef.new(shape: RetentionDays, location_name: "RetentionDays"))
|
526
|
+
CreateArchiveRequest.add_member(:kms_key_identifier, Shapes::ShapeRef.new(shape: KmsKeyIdentifier, location_name: "KmsKeyIdentifier"))
|
525
527
|
CreateArchiveRequest.struct_class = Types::CreateArchiveRequest
|
526
528
|
|
527
529
|
CreateArchiveResponse.add_member(:archive_arn, Shapes::ShapeRef.new(shape: ArchiveArn, location_name: "ArchiveArn"))
|
@@ -560,6 +562,7 @@ module Aws::EventBridge
|
|
560
562
|
CreateConnectionRequest.add_member(:authorization_type, Shapes::ShapeRef.new(shape: ConnectionAuthorizationType, required: true, location_name: "AuthorizationType"))
|
561
563
|
CreateConnectionRequest.add_member(:auth_parameters, Shapes::ShapeRef.new(shape: CreateConnectionAuthRequestParameters, required: true, location_name: "AuthParameters"))
|
562
564
|
CreateConnectionRequest.add_member(:invocation_connectivity_parameters, Shapes::ShapeRef.new(shape: ConnectivityResourceParameters, location_name: "InvocationConnectivityParameters"))
|
565
|
+
CreateConnectionRequest.add_member(:kms_key_identifier, Shapes::ShapeRef.new(shape: KmsKeyIdentifier, location_name: "KmsKeyIdentifier"))
|
563
566
|
CreateConnectionRequest.struct_class = Types::CreateConnectionRequest
|
564
567
|
|
565
568
|
CreateConnectionResponse.add_member(:connection_arn, Shapes::ShapeRef.new(shape: ConnectionArn, location_name: "ConnectionArn"))
|
@@ -679,11 +682,12 @@ module Aws::EventBridge
|
|
679
682
|
|
680
683
|
DescribeArchiveResponse.add_member(:archive_arn, Shapes::ShapeRef.new(shape: ArchiveArn, location_name: "ArchiveArn"))
|
681
684
|
DescribeArchiveResponse.add_member(:archive_name, Shapes::ShapeRef.new(shape: ArchiveName, location_name: "ArchiveName"))
|
682
|
-
DescribeArchiveResponse.add_member(:event_source_arn, Shapes::ShapeRef.new(shape:
|
685
|
+
DescribeArchiveResponse.add_member(:event_source_arn, Shapes::ShapeRef.new(shape: EventBusArn, location_name: "EventSourceArn"))
|
683
686
|
DescribeArchiveResponse.add_member(:description, Shapes::ShapeRef.new(shape: ArchiveDescription, location_name: "Description"))
|
684
687
|
DescribeArchiveResponse.add_member(:event_pattern, Shapes::ShapeRef.new(shape: EventPattern, location_name: "EventPattern"))
|
685
688
|
DescribeArchiveResponse.add_member(:state, Shapes::ShapeRef.new(shape: ArchiveState, location_name: "State"))
|
686
689
|
DescribeArchiveResponse.add_member(:state_reason, Shapes::ShapeRef.new(shape: ArchiveStateReason, location_name: "StateReason"))
|
690
|
+
DescribeArchiveResponse.add_member(:kms_key_identifier, Shapes::ShapeRef.new(shape: KmsKeyIdentifier, location_name: "KmsKeyIdentifier"))
|
687
691
|
DescribeArchiveResponse.add_member(:retention_days, Shapes::ShapeRef.new(shape: RetentionDays, location_name: "RetentionDays"))
|
688
692
|
DescribeArchiveResponse.add_member(:size_bytes, Shapes::ShapeRef.new(shape: Long, location_name: "SizeBytes"))
|
689
693
|
DescribeArchiveResponse.add_member(:event_count, Shapes::ShapeRef.new(shape: Long, location_name: "EventCount"))
|
@@ -708,6 +712,7 @@ module Aws::EventBridge
|
|
708
712
|
DescribeConnectionResponse.add_member(:state_reason, Shapes::ShapeRef.new(shape: ConnectionStateReason, location_name: "StateReason"))
|
709
713
|
DescribeConnectionResponse.add_member(:authorization_type, Shapes::ShapeRef.new(shape: ConnectionAuthorizationType, location_name: "AuthorizationType"))
|
710
714
|
DescribeConnectionResponse.add_member(:secret_arn, Shapes::ShapeRef.new(shape: SecretsManagerSecretArn, location_name: "SecretArn"))
|
715
|
+
DescribeConnectionResponse.add_member(:kms_key_identifier, Shapes::ShapeRef.new(shape: KmsKeyIdentifier, location_name: "KmsKeyIdentifier"))
|
711
716
|
DescribeConnectionResponse.add_member(:auth_parameters, Shapes::ShapeRef.new(shape: ConnectionAuthResponseParameters, location_name: "AuthParameters"))
|
712
717
|
DescribeConnectionResponse.add_member(:creation_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "CreationTime"))
|
713
718
|
DescribeConnectionResponse.add_member(:last_modified_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LastModifiedTime"))
|
@@ -772,7 +777,7 @@ module Aws::EventBridge
|
|
772
777
|
DescribeReplayResponse.add_member(:description, Shapes::ShapeRef.new(shape: ReplayDescription, location_name: "Description"))
|
773
778
|
DescribeReplayResponse.add_member(:state, Shapes::ShapeRef.new(shape: ReplayState, location_name: "State"))
|
774
779
|
DescribeReplayResponse.add_member(:state_reason, Shapes::ShapeRef.new(shape: ReplayStateReason, location_name: "StateReason"))
|
775
|
-
DescribeReplayResponse.add_member(:event_source_arn, Shapes::ShapeRef.new(shape:
|
780
|
+
DescribeReplayResponse.add_member(:event_source_arn, Shapes::ShapeRef.new(shape: ArchiveArn, location_name: "EventSourceArn"))
|
776
781
|
DescribeReplayResponse.add_member(:destination, Shapes::ShapeRef.new(shape: ReplayDestination, location_name: "Destination"))
|
777
782
|
DescribeReplayResponse.add_member(:event_start_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "EventStartTime"))
|
778
783
|
DescribeReplayResponse.add_member(:event_end_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "EventEndTime"))
|
@@ -905,7 +910,7 @@ module Aws::EventBridge
|
|
905
910
|
ListApiDestinationsResponse.struct_class = Types::ListApiDestinationsResponse
|
906
911
|
|
907
912
|
ListArchivesRequest.add_member(:name_prefix, Shapes::ShapeRef.new(shape: ArchiveName, location_name: "NamePrefix"))
|
908
|
-
ListArchivesRequest.add_member(:event_source_arn, Shapes::ShapeRef.new(shape:
|
913
|
+
ListArchivesRequest.add_member(:event_source_arn, Shapes::ShapeRef.new(shape: EventBusArn, location_name: "EventSourceArn"))
|
909
914
|
ListArchivesRequest.add_member(:state, Shapes::ShapeRef.new(shape: ArchiveState, location_name: "State"))
|
910
915
|
ListArchivesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
911
916
|
ListArchivesRequest.add_member(:limit, Shapes::ShapeRef.new(shape: LimitMax100, location_name: "Limit"))
|
@@ -973,7 +978,7 @@ module Aws::EventBridge
|
|
973
978
|
|
974
979
|
ListReplaysRequest.add_member(:name_prefix, Shapes::ShapeRef.new(shape: ReplayName, location_name: "NamePrefix"))
|
975
980
|
ListReplaysRequest.add_member(:state, Shapes::ShapeRef.new(shape: ReplayState, location_name: "State"))
|
976
|
-
ListReplaysRequest.add_member(:event_source_arn, Shapes::ShapeRef.new(shape:
|
981
|
+
ListReplaysRequest.add_member(:event_source_arn, Shapes::ShapeRef.new(shape: ArchiveArn, location_name: "EventSourceArn"))
|
977
982
|
ListReplaysRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
978
983
|
ListReplaysRequest.add_member(:limit, Shapes::ShapeRef.new(shape: LimitMax100, location_name: "Limit"))
|
979
984
|
ListReplaysRequest.struct_class = Types::ListReplaysRequest
|
@@ -1179,7 +1184,7 @@ module Aws::EventBridge
|
|
1179
1184
|
RemoveTargetsResultEntryList.member = Shapes::ShapeRef.new(shape: RemoveTargetsResultEntry)
|
1180
1185
|
|
1181
1186
|
Replay.add_member(:replay_name, Shapes::ShapeRef.new(shape: ReplayName, location_name: "ReplayName"))
|
1182
|
-
Replay.add_member(:event_source_arn, Shapes::ShapeRef.new(shape:
|
1187
|
+
Replay.add_member(:event_source_arn, Shapes::ShapeRef.new(shape: ArchiveArn, location_name: "EventSourceArn"))
|
1183
1188
|
Replay.add_member(:state, Shapes::ShapeRef.new(shape: ReplayState, location_name: "State"))
|
1184
1189
|
Replay.add_member(:state_reason, Shapes::ShapeRef.new(shape: ReplayStateReason, location_name: "StateReason"))
|
1185
1190
|
Replay.add_member(:event_start_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "EventStartTime"))
|
@@ -1256,7 +1261,7 @@ module Aws::EventBridge
|
|
1256
1261
|
|
1257
1262
|
StartReplayRequest.add_member(:replay_name, Shapes::ShapeRef.new(shape: ReplayName, required: true, location_name: "ReplayName"))
|
1258
1263
|
StartReplayRequest.add_member(:description, Shapes::ShapeRef.new(shape: ReplayDescription, location_name: "Description"))
|
1259
|
-
StartReplayRequest.add_member(:event_source_arn, Shapes::ShapeRef.new(shape:
|
1264
|
+
StartReplayRequest.add_member(:event_source_arn, Shapes::ShapeRef.new(shape: ArchiveArn, required: true, location_name: "EventSourceArn"))
|
1260
1265
|
StartReplayRequest.add_member(:event_start_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "EventStartTime"))
|
1261
1266
|
StartReplayRequest.add_member(:event_end_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "EventEndTime"))
|
1262
1267
|
StartReplayRequest.add_member(:destination, Shapes::ShapeRef.new(shape: ReplayDestination, required: true, location_name: "Destination"))
|
@@ -1343,6 +1348,7 @@ module Aws::EventBridge
|
|
1343
1348
|
UpdateArchiveRequest.add_member(:description, Shapes::ShapeRef.new(shape: ArchiveDescription, location_name: "Description"))
|
1344
1349
|
UpdateArchiveRequest.add_member(:event_pattern, Shapes::ShapeRef.new(shape: EventPattern, location_name: "EventPattern"))
|
1345
1350
|
UpdateArchiveRequest.add_member(:retention_days, Shapes::ShapeRef.new(shape: RetentionDays, location_name: "RetentionDays"))
|
1351
|
+
UpdateArchiveRequest.add_member(:kms_key_identifier, Shapes::ShapeRef.new(shape: KmsKeyIdentifier, location_name: "KmsKeyIdentifier"))
|
1346
1352
|
UpdateArchiveRequest.struct_class = Types::UpdateArchiveRequest
|
1347
1353
|
|
1348
1354
|
UpdateArchiveResponse.add_member(:archive_arn, Shapes::ShapeRef.new(shape: ArchiveArn, location_name: "ArchiveArn"))
|
@@ -1381,6 +1387,7 @@ module Aws::EventBridge
|
|
1381
1387
|
UpdateConnectionRequest.add_member(:authorization_type, Shapes::ShapeRef.new(shape: ConnectionAuthorizationType, location_name: "AuthorizationType"))
|
1382
1388
|
UpdateConnectionRequest.add_member(:auth_parameters, Shapes::ShapeRef.new(shape: UpdateConnectionAuthRequestParameters, location_name: "AuthParameters"))
|
1383
1389
|
UpdateConnectionRequest.add_member(:invocation_connectivity_parameters, Shapes::ShapeRef.new(shape: ConnectivityResourceParameters, location_name: "InvocationConnectivityParameters"))
|
1390
|
+
UpdateConnectionRequest.add_member(:kms_key_identifier, Shapes::ShapeRef.new(shape: KmsKeyIdentifier, location_name: "KmsKeyIdentifier"))
|
1384
1391
|
UpdateConnectionRequest.struct_class = Types::UpdateConnectionRequest
|
1385
1392
|
|
1386
1393
|
UpdateConnectionResponse.add_member(:connection_arn, Shapes::ShapeRef.new(shape: ConnectionArn, location_name: "ConnectionArn"))
|
@@ -10,7 +10,7 @@
|
|
10
10
|
module Aws::EventBridge
|
11
11
|
module Types
|
12
12
|
|
13
|
-
# You do not have the necessary
|
13
|
+
# You do not have the necessary permissions for this action.
|
14
14
|
#
|
15
15
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eventbridge-2015-10-07/AccessDeniedException AWS API Documentation
|
16
16
|
#
|
@@ -653,12 +653,12 @@ module Aws::EventBridge
|
|
653
653
|
include Aws::Structure
|
654
654
|
end
|
655
655
|
|
656
|
-
# The Amazon Resource Name (ARN) of the
|
657
|
-
# resource endpoint.
|
656
|
+
# The Amazon Resource Name (ARN) of the Amazon VPC Lattice resource
|
657
|
+
# configuration for the resource endpoint.
|
658
658
|
#
|
659
659
|
# @!attribute [rw] resource_configuration_arn
|
660
|
-
# The Amazon Resource Name (ARN) of the
|
661
|
-
# resource endpoint.
|
660
|
+
# The Amazon Resource Name (ARN) of the Amazon VPC Lattice resource
|
661
|
+
# configuration for the resource endpoint.
|
662
662
|
# @return [String]
|
663
663
|
#
|
664
664
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eventbridge-2015-10-07/ConnectivityResourceConfigurationArn AWS API Documentation
|
@@ -775,6 +775,32 @@ module Aws::EventBridge
|
|
775
775
|
# to 0, events are retained indefinitely
|
776
776
|
# @return [Integer]
|
777
777
|
#
|
778
|
+
# @!attribute [rw] kms_key_identifier
|
779
|
+
# The identifier of the KMS customer managed key for EventBridge to
|
780
|
+
# use, if you choose to use a customer managed key to encrypt this
|
781
|
+
# archive. The identifier can be the key Amazon Resource Name (ARN),
|
782
|
+
# KeyId, key alias, or key alias ARN.
|
783
|
+
#
|
784
|
+
# If you do not specify a customer managed key identifier, EventBridge
|
785
|
+
# uses an Amazon Web Services owned key to encrypt the archive.
|
786
|
+
#
|
787
|
+
# For more information, see [Identify and view keys][1] in the *Key
|
788
|
+
# Management Service Developer Guide*.
|
789
|
+
#
|
790
|
+
# If you have specified that EventBridge use a customer managed key
|
791
|
+
# for encrypting the source event bus, we strongly recommend you also
|
792
|
+
# specify a customer managed key for any archives for the event bus as
|
793
|
+
# well.
|
794
|
+
#
|
795
|
+
# For more information, see [Encrypting archives][2] in the *Amazon
|
796
|
+
# EventBridge User Guide*.
|
797
|
+
#
|
798
|
+
#
|
799
|
+
#
|
800
|
+
# [1]: https://docs.aws.amazon.com/kms/latest/developerguide/viewing-keys.html
|
801
|
+
# [2]: https://docs.aws.amazon.com/eventbridge/latest/userguide/encryption-archives.html
|
802
|
+
# @return [String]
|
803
|
+
#
|
778
804
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eventbridge-2015-10-07/CreateArchiveRequest AWS API Documentation
|
779
805
|
#
|
780
806
|
class CreateArchiveRequest < Struct.new(
|
@@ -782,7 +808,8 @@ module Aws::EventBridge
|
|
782
808
|
:event_source_arn,
|
783
809
|
:description,
|
784
810
|
:event_pattern,
|
785
|
-
:retention_days
|
811
|
+
:retention_days,
|
812
|
+
:kms_key_identifier)
|
786
813
|
SENSITIVE = []
|
787
814
|
include Aws::Structure
|
788
815
|
end
|
@@ -975,17 +1002,34 @@ module Aws::EventBridge
|
|
975
1002
|
# @return [Types::CreateConnectionAuthRequestParameters]
|
976
1003
|
#
|
977
1004
|
# @!attribute [rw] invocation_connectivity_parameters
|
978
|
-
# For connections to private
|
979
|
-
#
|
1005
|
+
# For connections to private APIs, the parameters to use for invoking
|
1006
|
+
# the API.
|
980
1007
|
#
|
981
|
-
# For more information, see [Connecting to private
|
982
|
-
#
|
1008
|
+
# For more information, see [Connecting to private APIs][1] in the <i>
|
1009
|
+
# <i>Amazon EventBridge User Guide</i> </i>.
|
983
1010
|
#
|
984
1011
|
#
|
985
1012
|
#
|
986
|
-
# [1]: https://docs.aws.amazon.com/eventbridge/latest/userguide/
|
1013
|
+
# [1]: https://docs.aws.amazon.com/eventbridge/latest/userguide/connection-private.html
|
987
1014
|
# @return [Types::ConnectivityResourceParameters]
|
988
1015
|
#
|
1016
|
+
# @!attribute [rw] kms_key_identifier
|
1017
|
+
# The identifier of the KMS customer managed key for EventBridge to
|
1018
|
+
# use, if you choose to use a customer managed key to encrypt this
|
1019
|
+
# connection. The identifier can be the key Amazon Resource Name
|
1020
|
+
# (ARN), KeyId, key alias, or key alias ARN.
|
1021
|
+
#
|
1022
|
+
# If you do not specify a customer managed key identifier, EventBridge
|
1023
|
+
# uses an Amazon Web Services owned key to encrypt the connection.
|
1024
|
+
#
|
1025
|
+
# For more information, see [Identify and view keys][1] in the *Key
|
1026
|
+
# Management Service Developer Guide*.
|
1027
|
+
#
|
1028
|
+
#
|
1029
|
+
#
|
1030
|
+
# [1]: https://docs.aws.amazon.com/kms/latest/developerguide/viewing-keys.html
|
1031
|
+
# @return [String]
|
1032
|
+
#
|
989
1033
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eventbridge-2015-10-07/CreateConnectionRequest AWS API Documentation
|
990
1034
|
#
|
991
1035
|
class CreateConnectionRequest < Struct.new(
|
@@ -993,7 +1037,8 @@ module Aws::EventBridge
|
|
993
1037
|
:description,
|
994
1038
|
:authorization_type,
|
995
1039
|
:auth_parameters,
|
996
|
-
:invocation_connectivity_parameters
|
1040
|
+
:invocation_connectivity_parameters,
|
1041
|
+
:kms_key_identifier)
|
997
1042
|
SENSITIVE = []
|
998
1043
|
include Aws::Structure
|
999
1044
|
end
|
@@ -1142,33 +1187,37 @@ module Aws::EventBridge
|
|
1142
1187
|
# uses an Amazon Web Services owned key to encrypt events on the event
|
1143
1188
|
# bus.
|
1144
1189
|
#
|
1145
|
-
# For more information, see [
|
1146
|
-
# Service Developer Guide*.
|
1190
|
+
# For more information, see [Identify and view keys][1] in the *Key
|
1191
|
+
# Management Service Developer Guide*.
|
1147
1192
|
#
|
1148
|
-
# <note markdown="1">
|
1149
|
-
#
|
1150
|
-
# if:
|
1193
|
+
# <note markdown="1"> Schema discovery is not supported for event buses encrypted using a
|
1194
|
+
# customer managed key. EventBridge returns an error if:
|
1151
1195
|
#
|
1152
|
-
# * You call `
|
1153
|
-
# managed key for encryption.
|
1154
|
-
#
|
1155
|
-
# * You call ` CreateDiscoverer ` on an event bus set to use a
|
1196
|
+
# * You call ` CreateDiscoverer ` on an event bus set to use a
|
1156
1197
|
# customer managed key for encryption.
|
1157
1198
|
#
|
1158
1199
|
# * You call ` UpdatedEventBus ` to set a customer managed key on an
|
1159
|
-
# event bus with
|
1200
|
+
# event bus with schema discovery enabled.
|
1160
1201
|
#
|
1161
|
-
# To enable
|
1162
|
-
#
|
1163
|
-
#
|
1164
|
-
# Guide*.
|
1202
|
+
# To enable schema discovery on an event bus, choose to use an Amazon
|
1203
|
+
# Web Services owned key. For more information, see [Encrypting
|
1204
|
+
# events][2] in the *Amazon EventBridge User Guide*.
|
1165
1205
|
#
|
1166
1206
|
# </note>
|
1167
1207
|
#
|
1208
|
+
# If you have specified that EventBridge use a customer managed key
|
1209
|
+
# for encrypting the source event bus, we strongly recommend you also
|
1210
|
+
# specify a customer managed key for any archives for the event bus as
|
1211
|
+
# well.
|
1212
|
+
#
|
1213
|
+
# For more information, see [Encrypting archives][3] in the *Amazon
|
1214
|
+
# EventBridge User Guide*.
|
1168
1215
|
#
|
1169
1216
|
#
|
1170
|
-
#
|
1171
|
-
# [
|
1217
|
+
#
|
1218
|
+
# [1]: https://docs.aws.amazon.com/kms/latest/developerguide/viewing-keys.html
|
1219
|
+
# [2]: https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-encryption-event-bus-cmkey.html
|
1220
|
+
# [3]: https://docs.aws.amazon.com/eventbridge/latest/userguide/encryption-archives.html
|
1172
1221
|
# @return [String]
|
1173
1222
|
#
|
1174
1223
|
# @!attribute [rw] dead_letter_config
|
@@ -1627,6 +1676,18 @@ module Aws::EventBridge
|
|
1627
1676
|
# The reason that the archive is in the state.
|
1628
1677
|
# @return [String]
|
1629
1678
|
#
|
1679
|
+
# @!attribute [rw] kms_key_identifier
|
1680
|
+
# The identifier of the KMS customer managed key for EventBridge to
|
1681
|
+
# use to encrypt this archive, if one has been specified.
|
1682
|
+
#
|
1683
|
+
# For more information, see [Encrypting archives][1] in the *Amazon
|
1684
|
+
# EventBridge User Guide*.
|
1685
|
+
#
|
1686
|
+
#
|
1687
|
+
#
|
1688
|
+
# [1]: https://docs.aws.amazon.com/eventbridge/latest/userguide/encryption-archives.html
|
1689
|
+
# @return [String]
|
1690
|
+
#
|
1630
1691
|
# @!attribute [rw] retention_days
|
1631
1692
|
# The number of days to retain events for in the archive.
|
1632
1693
|
# @return [Integer]
|
@@ -1653,6 +1714,7 @@ module Aws::EventBridge
|
|
1653
1714
|
:event_pattern,
|
1654
1715
|
:state,
|
1655
1716
|
:state_reason,
|
1717
|
+
:kms_key_identifier,
|
1656
1718
|
:retention_days,
|
1657
1719
|
:size_bytes,
|
1658
1720
|
:event_count,
|
@@ -1708,6 +1770,14 @@ module Aws::EventBridge
|
|
1708
1770
|
# For connections to private APIs, the Amazon Resource Name (ARN) of
|
1709
1771
|
# the resource association EventBridge created between the connection
|
1710
1772
|
# and the private API's resource configuration.
|
1773
|
+
#
|
1774
|
+
# For more information, see [ Managing service network resource
|
1775
|
+
# associations for connections][1] in the <i> <i>Amazon EventBridge
|
1776
|
+
# User Guide</i> </i>.
|
1777
|
+
#
|
1778
|
+
#
|
1779
|
+
#
|
1780
|
+
# [1]: https://docs.aws.amazon.com/eventbridge/latest/userguide/connection-private.html#connection-private-snra
|
1711
1781
|
# @return [String]
|
1712
1782
|
#
|
1713
1783
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eventbridge-2015-10-07/DescribeConnectionResourceParameters AWS API Documentation
|
@@ -1732,15 +1802,15 @@ module Aws::EventBridge
|
|
1732
1802
|
# @return [String]
|
1733
1803
|
#
|
1734
1804
|
# @!attribute [rw] invocation_connectivity_parameters
|
1735
|
-
# For connections to private
|
1736
|
-
#
|
1805
|
+
# For connections to private APIs The parameters EventBridge uses to
|
1806
|
+
# invoke the resource endpoint.
|
1737
1807
|
#
|
1738
|
-
# For more information, see [Connecting to private
|
1739
|
-
#
|
1808
|
+
# For more information, see [Connecting to private APIs][1] in the <i>
|
1809
|
+
# <i>Amazon EventBridge User Guide</i> </i>.
|
1740
1810
|
#
|
1741
1811
|
#
|
1742
1812
|
#
|
1743
|
-
# [1]: https://docs.aws.amazon.com/eventbridge/latest/userguide/
|
1813
|
+
# [1]: https://docs.aws.amazon.com/eventbridge/latest/userguide/connection-private.html
|
1744
1814
|
# @return [Types::DescribeConnectionConnectivityParameters]
|
1745
1815
|
#
|
1746
1816
|
# @!attribute [rw] connection_state
|
@@ -1760,6 +1830,18 @@ module Aws::EventBridge
|
|
1760
1830
|
# specified for the connection.
|
1761
1831
|
# @return [String]
|
1762
1832
|
#
|
1833
|
+
# @!attribute [rw] kms_key_identifier
|
1834
|
+
# The identifier of the KMS customer managed key for EventBridge to
|
1835
|
+
# use to encrypt the connection, if one has been specified.
|
1836
|
+
#
|
1837
|
+
# For more information, see [Encrypting connections][1] in the *Amazon
|
1838
|
+
# EventBridge User Guide*.
|
1839
|
+
#
|
1840
|
+
#
|
1841
|
+
#
|
1842
|
+
# [1]: https://docs.aws.amazon.com/eventbridge/latest/userguide/encryption-connections.html
|
1843
|
+
# @return [String]
|
1844
|
+
#
|
1763
1845
|
# @!attribute [rw] auth_parameters
|
1764
1846
|
# The parameters to use for authorization for the connection.
|
1765
1847
|
# @return [Types::ConnectionAuthResponseParameters]
|
@@ -1787,6 +1869,7 @@ module Aws::EventBridge
|
|
1787
1869
|
:state_reason,
|
1788
1870
|
:authorization_type,
|
1789
1871
|
:secret_arn,
|
1872
|
+
:kms_key_identifier,
|
1790
1873
|
:auth_parameters,
|
1791
1874
|
:creation_time,
|
1792
1875
|
:last_modified_time,
|
@@ -4777,17 +4860,17 @@ module Aws::EventBridge
|
|
4777
4860
|
include Aws::Structure
|
4778
4861
|
end
|
4779
4862
|
|
4780
|
-
# Name/Value pair of a parameter to start execution of a SageMaker
|
4781
|
-
# Building Pipeline.
|
4863
|
+
# Name/Value pair of a parameter to start execution of a SageMaker AI
|
4864
|
+
# Model Building Pipeline.
|
4782
4865
|
#
|
4783
4866
|
# @!attribute [rw] name
|
4784
|
-
# Name of parameter to start execution of a SageMaker Model
|
4785
|
-
# Pipeline.
|
4867
|
+
# Name of parameter to start execution of a SageMaker AI Model
|
4868
|
+
# Building Pipeline.
|
4786
4869
|
# @return [String]
|
4787
4870
|
#
|
4788
4871
|
# @!attribute [rw] value
|
4789
|
-
# Value of parameter to start execution of a SageMaker Model
|
4790
|
-
# Pipeline.
|
4872
|
+
# Value of parameter to start execution of a SageMaker AI Model
|
4873
|
+
# Building Pipeline.
|
4791
4874
|
# @return [String]
|
4792
4875
|
#
|
4793
4876
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eventbridge-2015-10-07/SageMakerPipelineParameter AWS API Documentation
|
@@ -4799,11 +4882,11 @@ module Aws::EventBridge
|
|
4799
4882
|
include Aws::Structure
|
4800
4883
|
end
|
4801
4884
|
|
4802
|
-
# These are custom parameters to use when the target is a SageMaker
|
4885
|
+
# These are custom parameters to use when the target is a SageMaker AI
|
4803
4886
|
# Model Building Pipeline that starts based on EventBridge events.
|
4804
4887
|
#
|
4805
4888
|
# @!attribute [rw] pipeline_parameter_list
|
4806
|
-
# List of Parameter names and values for SageMaker Model Building
|
4889
|
+
# List of Parameter names and values for SageMaker AI Model Building
|
4807
4890
|
# Pipeline execution.
|
4808
4891
|
# @return [Array<Types::SageMakerPipelineParameter>]
|
4809
4892
|
#
|
@@ -5079,11 +5162,11 @@ module Aws::EventBridge
|
|
5079
5162
|
# @return [Types::RedshiftDataParameters]
|
5080
5163
|
#
|
5081
5164
|
# @!attribute [rw] sage_maker_pipeline_parameters
|
5082
|
-
# Contains the SageMaker Model Building Pipeline parameters to
|
5083
|
-
# execution of a SageMaker Model Building Pipeline.
|
5165
|
+
# Contains the SageMaker AI Model Building Pipeline parameters to
|
5166
|
+
# start execution of a SageMaker AI Model Building Pipeline.
|
5084
5167
|
#
|
5085
|
-
# If you specify a SageMaker Model Building Pipeline as a target,
|
5086
|
-
# can use this to specify parameters to start a pipeline execution
|
5168
|
+
# If you specify a SageMaker AI Model Building Pipeline as a target,
|
5169
|
+
# you can use this to specify parameters to start a pipeline execution
|
5087
5170
|
# based on EventBridge events.
|
5088
5171
|
# @return [Types::SageMakerPipelineParameters]
|
5089
5172
|
#
|
@@ -5289,13 +5372,40 @@ module Aws::EventBridge
|
|
5289
5372
|
# The number of days to retain events in the archive.
|
5290
5373
|
# @return [Integer]
|
5291
5374
|
#
|
5375
|
+
# @!attribute [rw] kms_key_identifier
|
5376
|
+
# The identifier of the KMS customer managed key for EventBridge to
|
5377
|
+
# use, if you choose to use a customer managed key to encrypt this
|
5378
|
+
# archive. The identifier can be the key Amazon Resource Name (ARN),
|
5379
|
+
# KeyId, key alias, or key alias ARN.
|
5380
|
+
#
|
5381
|
+
# If you do not specify a customer managed key identifier, EventBridge
|
5382
|
+
# uses an Amazon Web Services owned key to encrypt the archive.
|
5383
|
+
#
|
5384
|
+
# For more information, see [Identify and view keys][1] in the *Key
|
5385
|
+
# Management Service Developer Guide*.
|
5386
|
+
#
|
5387
|
+
# If you have specified that EventBridge use a customer managed key
|
5388
|
+
# for encrypting the source event bus, we strongly recommend you also
|
5389
|
+
# specify a customer managed key for any archives for the event bus as
|
5390
|
+
# well.
|
5391
|
+
#
|
5392
|
+
# For more information, see [Encrypting archives][2] in the *Amazon
|
5393
|
+
# EventBridge User Guide*.
|
5394
|
+
#
|
5395
|
+
#
|
5396
|
+
#
|
5397
|
+
# [1]: https://docs.aws.amazon.com/kms/latest/developerguide/viewing-keys.html
|
5398
|
+
# [2]: https://docs.aws.amazon.com/eventbridge/latest/userguide/encryption-archives.html
|
5399
|
+
# @return [String]
|
5400
|
+
#
|
5292
5401
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eventbridge-2015-10-07/UpdateArchiveRequest AWS API Documentation
|
5293
5402
|
#
|
5294
5403
|
class UpdateArchiveRequest < Struct.new(
|
5295
5404
|
:archive_name,
|
5296
5405
|
:description,
|
5297
5406
|
:event_pattern,
|
5298
|
-
:retention_days
|
5407
|
+
:retention_days,
|
5408
|
+
:kms_key_identifier)
|
5299
5409
|
SENSITIVE = []
|
5300
5410
|
include Aws::Structure
|
5301
5411
|
end
|
@@ -5478,17 +5588,34 @@ module Aws::EventBridge
|
|
5478
5588
|
# @return [Types::UpdateConnectionAuthRequestParameters]
|
5479
5589
|
#
|
5480
5590
|
# @!attribute [rw] invocation_connectivity_parameters
|
5481
|
-
# For connections to private
|
5482
|
-
#
|
5591
|
+
# For connections to private APIs, the parameters to use for invoking
|
5592
|
+
# the API.
|
5483
5593
|
#
|
5484
|
-
# For more information, see [Connecting to private
|
5485
|
-
#
|
5594
|
+
# For more information, see [Connecting to private APIs][1] in the <i>
|
5595
|
+
# <i>Amazon EventBridge User Guide</i> </i>.
|
5486
5596
|
#
|
5487
5597
|
#
|
5488
5598
|
#
|
5489
|
-
# [1]: https://docs.aws.amazon.com/eventbridge/latest/userguide/
|
5599
|
+
# [1]: https://docs.aws.amazon.com/eventbridge/latest/userguide/connection-private.html
|
5490
5600
|
# @return [Types::ConnectivityResourceParameters]
|
5491
5601
|
#
|
5602
|
+
# @!attribute [rw] kms_key_identifier
|
5603
|
+
# The identifier of the KMS customer managed key for EventBridge to
|
5604
|
+
# use, if you choose to use a customer managed key to encrypt this
|
5605
|
+
# connection. The identifier can be the key Amazon Resource Name
|
5606
|
+
# (ARN), KeyId, key alias, or key alias ARN.
|
5607
|
+
#
|
5608
|
+
# If you do not specify a customer managed key identifier, EventBridge
|
5609
|
+
# uses an Amazon Web Services owned key to encrypt the connection.
|
5610
|
+
#
|
5611
|
+
# For more information, see [Identify and view keys][1] in the *Key
|
5612
|
+
# Management Service Developer Guide*.
|
5613
|
+
#
|
5614
|
+
#
|
5615
|
+
#
|
5616
|
+
# [1]: https://docs.aws.amazon.com/kms/latest/developerguide/viewing-keys.html
|
5617
|
+
# @return [String]
|
5618
|
+
#
|
5492
5619
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eventbridge-2015-10-07/UpdateConnectionRequest AWS API Documentation
|
5493
5620
|
#
|
5494
5621
|
class UpdateConnectionRequest < Struct.new(
|
@@ -5496,7 +5623,8 @@ module Aws::EventBridge
|
|
5496
5623
|
:description,
|
5497
5624
|
:authorization_type,
|
5498
5625
|
:auth_parameters,
|
5499
|
-
:invocation_connectivity_parameters
|
5626
|
+
:invocation_connectivity_parameters,
|
5627
|
+
:kms_key_identifier)
|
5500
5628
|
SENSITIVE = []
|
5501
5629
|
include Aws::Structure
|
5502
5630
|
end
|
@@ -5640,33 +5768,37 @@ module Aws::EventBridge
|
|
5640
5768
|
# uses an Amazon Web Services owned key to encrypt events on the event
|
5641
5769
|
# bus.
|
5642
5770
|
#
|
5643
|
-
# For more information, see [
|
5644
|
-
# Service Developer Guide*.
|
5771
|
+
# For more information, see [Identify and view keys][1] in the *Key
|
5772
|
+
# Management Service Developer Guide*.
|
5645
5773
|
#
|
5646
|
-
# <note markdown="1">
|
5647
|
-
#
|
5648
|
-
# if:
|
5774
|
+
# <note markdown="1"> Schema discovery is not supported for event buses encrypted using a
|
5775
|
+
# customer managed key. EventBridge returns an error if:
|
5649
5776
|
#
|
5650
|
-
# * You call `
|
5651
|
-
# managed key for encryption.
|
5652
|
-
#
|
5653
|
-
# * You call ` CreateDiscoverer ` on an event bus set to use a
|
5777
|
+
# * You call ` CreateDiscoverer ` on an event bus set to use a
|
5654
5778
|
# customer managed key for encryption.
|
5655
5779
|
#
|
5656
5780
|
# * You call ` UpdatedEventBus ` to set a customer managed key on an
|
5657
|
-
# event bus with
|
5781
|
+
# event bus with schema discovery enabled.
|
5658
5782
|
#
|
5659
|
-
# To enable
|
5660
|
-
#
|
5661
|
-
#
|
5662
|
-
# Guide*.
|
5783
|
+
# To enable schema discovery on an event bus, choose to use an Amazon
|
5784
|
+
# Web Services owned key. For more information, see [Encrypting
|
5785
|
+
# events][2] in the *Amazon EventBridge User Guide*.
|
5663
5786
|
#
|
5664
5787
|
# </note>
|
5665
5788
|
#
|
5789
|
+
# If you have specified that EventBridge use a customer managed key
|
5790
|
+
# for encrypting the source event bus, we strongly recommend you also
|
5791
|
+
# specify a customer managed key for any archives for the event bus as
|
5792
|
+
# well.
|
5793
|
+
#
|
5794
|
+
# For more information, see [Encrypting archives][3] in the *Amazon
|
5795
|
+
# EventBridge User Guide*.
|
5796
|
+
#
|
5666
5797
|
#
|
5667
5798
|
#
|
5668
|
-
# [1]: https://docs.aws.amazon.com/kms/latest/developerguide/
|
5669
|
-
# [2]: https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-encryption.html
|
5799
|
+
# [1]: https://docs.aws.amazon.com/kms/latest/developerguide/viewing-keys.html
|
5800
|
+
# [2]: https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-encryption-event-bus-cmkey.html
|
5801
|
+
# [3]: https://docs.aws.amazon.com/eventbridge/latest/userguide/encryption-archives.html
|
5670
5802
|
# @return [String]
|
5671
5803
|
#
|
5672
5804
|
# @!attribute [rw] description
|
data/lib/aws-sdk-eventbridge.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -127,7 +127,8 @@ module Aws
|
|
127
127
|
event_source_arn: ::String,
|
128
128
|
?description: ::String,
|
129
129
|
?event_pattern: ::String,
|
130
|
-
?retention_days: ::Integer
|
130
|
+
?retention_days: ::Integer,
|
131
|
+
?kms_key_identifier: ::String
|
131
132
|
) -> _CreateArchiveResponseSuccess
|
132
133
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateArchiveResponseSuccess
|
133
134
|
|
@@ -216,7 +217,8 @@ module Aws
|
|
216
217
|
resource_parameters: {
|
217
218
|
resource_configuration_arn: ::String
|
218
219
|
}
|
219
|
-
}
|
220
|
+
},
|
221
|
+
?kms_key_identifier: ::String
|
220
222
|
) -> _CreateConnectionResponseSuccess
|
221
223
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateConnectionResponseSuccess
|
222
224
|
|
@@ -402,6 +404,7 @@ module Aws
|
|
402
404
|
def event_pattern: () -> ::String
|
403
405
|
def state: () -> ("ENABLED" | "DISABLED" | "CREATING" | "UPDATING" | "CREATE_FAILED" | "UPDATE_FAILED")
|
404
406
|
def state_reason: () -> ::String
|
407
|
+
def kms_key_identifier: () -> ::String
|
405
408
|
def retention_days: () -> ::Integer
|
406
409
|
def size_bytes: () -> ::Integer
|
407
410
|
def event_count: () -> ::Integer
|
@@ -423,6 +426,7 @@ module Aws
|
|
423
426
|
def state_reason: () -> ::String
|
424
427
|
def authorization_type: () -> ("BASIC" | "OAUTH_CLIENT_CREDENTIALS" | "API_KEY")
|
425
428
|
def secret_arn: () -> ::String
|
429
|
+
def kms_key_identifier: () -> ::String
|
426
430
|
def auth_parameters: () -> Types::ConnectionAuthResponseParameters
|
427
431
|
def creation_time: () -> ::Time
|
428
432
|
def last_modified_time: () -> ::Time
|
@@ -1042,7 +1046,8 @@ module Aws
|
|
1042
1046
|
archive_name: ::String,
|
1043
1047
|
?description: ::String,
|
1044
1048
|
?event_pattern: ::String,
|
1045
|
-
?retention_days: ::Integer
|
1049
|
+
?retention_days: ::Integer,
|
1050
|
+
?kms_key_identifier: ::String
|
1046
1051
|
) -> _UpdateArchiveResponseSuccess
|
1047
1052
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateArchiveResponseSuccess
|
1048
1053
|
|
@@ -1132,7 +1137,8 @@ module Aws
|
|
1132
1137
|
resource_parameters: {
|
1133
1138
|
resource_configuration_arn: ::String
|
1134
1139
|
}
|
1135
|
-
}
|
1140
|
+
},
|
1141
|
+
?kms_key_identifier: ::String
|
1136
1142
|
) -> _UpdateConnectionResponseSuccess
|
1137
1143
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateConnectionResponseSuccess
|
1138
1144
|
|
data/sig/types.rbs
CHANGED
@@ -206,6 +206,7 @@ module Aws::EventBridge
|
|
206
206
|
attr_accessor description: ::String
|
207
207
|
attr_accessor event_pattern: ::String
|
208
208
|
attr_accessor retention_days: ::Integer
|
209
|
+
attr_accessor kms_key_identifier: ::String
|
209
210
|
SENSITIVE: []
|
210
211
|
end
|
211
212
|
|
@@ -258,6 +259,7 @@ module Aws::EventBridge
|
|
258
259
|
attr_accessor authorization_type: ("BASIC" | "OAUTH_CLIENT_CREDENTIALS" | "API_KEY")
|
259
260
|
attr_accessor auth_parameters: Types::CreateConnectionAuthRequestParameters
|
260
261
|
attr_accessor invocation_connectivity_parameters: Types::ConnectivityResourceParameters
|
262
|
+
attr_accessor kms_key_identifier: ::String
|
261
263
|
SENSITIVE: []
|
262
264
|
end
|
263
265
|
|
@@ -431,6 +433,7 @@ module Aws::EventBridge
|
|
431
433
|
attr_accessor event_pattern: ::String
|
432
434
|
attr_accessor state: ("ENABLED" | "DISABLED" | "CREATING" | "UPDATING" | "CREATE_FAILED" | "UPDATE_FAILED")
|
433
435
|
attr_accessor state_reason: ::String
|
436
|
+
attr_accessor kms_key_identifier: ::String
|
434
437
|
attr_accessor retention_days: ::Integer
|
435
438
|
attr_accessor size_bytes: ::Integer
|
436
439
|
attr_accessor event_count: ::Integer
|
@@ -463,6 +466,7 @@ module Aws::EventBridge
|
|
463
466
|
attr_accessor state_reason: ::String
|
464
467
|
attr_accessor authorization_type: ("BASIC" | "OAUTH_CLIENT_CREDENTIALS" | "API_KEY")
|
465
468
|
attr_accessor secret_arn: ::String
|
469
|
+
attr_accessor kms_key_identifier: ::String
|
466
470
|
attr_accessor auth_parameters: Types::ConnectionAuthResponseParameters
|
467
471
|
attr_accessor creation_time: ::Time
|
468
472
|
attr_accessor last_modified_time: ::Time
|
@@ -1238,6 +1242,7 @@ module Aws::EventBridge
|
|
1238
1242
|
attr_accessor description: ::String
|
1239
1243
|
attr_accessor event_pattern: ::String
|
1240
1244
|
attr_accessor retention_days: ::Integer
|
1245
|
+
attr_accessor kms_key_identifier: ::String
|
1241
1246
|
SENSITIVE: []
|
1242
1247
|
end
|
1243
1248
|
|
@@ -1290,6 +1295,7 @@ module Aws::EventBridge
|
|
1290
1295
|
attr_accessor authorization_type: ("BASIC" | "OAUTH_CLIENT_CREDENTIALS" | "API_KEY")
|
1291
1296
|
attr_accessor auth_parameters: Types::UpdateConnectionAuthRequestParameters
|
1292
1297
|
attr_accessor invocation_connectivity_parameters: Types::ConnectivityResourceParameters
|
1298
|
+
attr_accessor kms_key_identifier: ::String
|
1293
1299
|
SENSITIVE: []
|
1294
1300
|
end
|
1295
1301
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-eventbridge
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.79.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-
|
11
|
+
date: 2025-04-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|