aws-sdk-pipes 1.25.0 → 1.26.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2ad3a31e6c268b473466b770fd68d7a27e948cc7495575d058d72899958aae66
4
- data.tar.gz: 4a4db600af8f2246e36d34b550eb2bf65554a1390a9f3344f5775cc910a9b8e3
3
+ metadata.gz: 152cafc38dd7996acda13fc2756f9e634d12e3666c13fc976793fd16f11b1272
4
+ data.tar.gz: 84e425616f56382510c25c785d330f6471ca367a4257481cac11063bd5d4db30
5
5
  SHA512:
6
- metadata.gz: 563d3f856f283a0aebfb7602635b9e7ce23682bdda3d10de4cf24c7e117fcb3d6c30d5c6d92036d2e830c469dbeb0e8840d6f77de4b233c1de1ac71fdb1495f9
7
- data.tar.gz: 89d0e73db1c11a0478a1981d0a2639302709397a901194e7daffb38f7e42fa5169a1950df855b03489f52ee0efc425792ed4f5df486c3c551793343b29083d66
6
+ metadata.gz: 64bcd899e02ca54f42f59f5f7ded5dd0366ed70a9ab1bd0325cf5dff7086970ebc1c1d69fdf547834a0f366f0247157a45f3daa8c2198a418c1205ddd1d4c4ee
7
+ data.tar.gz: dab21bfe8e0538a3c0aca4fe69ae7748537350bcd07cae6cede5d6f264bf619432104610902ddccedc926f0e4257c9d551eb80a91acaf0db6cb8c88fb8526694
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.26.0 (2024-09-10)
5
+ ------------------
6
+
7
+ * Feature - This release adds support for customer managed KMS keys in Amazon EventBridge Pipe
8
+
4
9
  1.25.0 (2024-09-03)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.25.0
1
+ 1.26.0
@@ -425,6 +425,12 @@ module Aws::Pipes
425
425
  # @option options [String] :ssl_ca_store
426
426
  # Sets the X509::Store to verify peer certificate.
427
427
  #
428
+ # @option options [OpenSSL::X509::Certificate] :ssl_cert
429
+ # Sets a client certificate when creating http connections.
430
+ #
431
+ # @option options [OpenSSL::PKey] :ssl_key
432
+ # Sets a client key when creating http connections.
433
+ #
428
434
  # @option options [Float] :ssl_timeout
429
435
  # Sets the SSL timeout in seconds
430
436
  #
@@ -485,6 +491,22 @@ module Aws::Pipes
485
491
  # @option params [Types::PipeLogConfigurationParameters] :log_configuration
486
492
  # The logging configuration settings for the pipe.
487
493
  #
494
+ # @option params [String] :kms_key_identifier
495
+ # The identifier of the KMS customer managed key for EventBridge to use,
496
+ # if you choose to use a customer managed key to encrypt pipe data. The
497
+ # identifier can be the key Amazon Resource Name (ARN), KeyId, key
498
+ # alias, or key alias ARN.
499
+ #
500
+ # If you do not specify a customer managed key identifier, EventBridge
501
+ # uses an Amazon Web Services owned key to encrypt pipe data.
502
+ #
503
+ # For more information, see [Managing keys][1] in the *Key Management
504
+ # Service Developer Guide*.
505
+ #
506
+ #
507
+ #
508
+ # [1]: https://docs.aws.amazon.com/kms/latest/developerguide/getting-started.html
509
+ #
488
510
  # @return [Types::CreatePipeResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
489
511
  #
490
512
  # * {Types::CreatePipeResponse#arn #arn} => String
@@ -825,6 +847,7 @@ module Aws::Pipes
825
847
  # level: "OFF", # required, accepts OFF, ERROR, INFO, TRACE
826
848
  # include_execution_data: ["ALL"], # accepts ALL
827
849
  # },
850
+ # kms_key_identifier: "KmsKeyIdentifier",
828
851
  # })
829
852
  #
830
853
  # @example Response structure
@@ -918,6 +941,7 @@ module Aws::Pipes
918
941
  # * {Types::DescribePipeResponse#creation_time #creation_time} => Time
919
942
  # * {Types::DescribePipeResponse#last_modified_time #last_modified_time} => Time
920
943
  # * {Types::DescribePipeResponse#log_configuration #log_configuration} => Types::PipeLogConfiguration
944
+ # * {Types::DescribePipeResponse#kms_key_identifier #kms_key_identifier} => String
921
945
  #
922
946
  # @example Request syntax with placeholder values
923
947
  #
@@ -1128,6 +1152,7 @@ module Aws::Pipes
1128
1152
  # resp.log_configuration.level #=> String, one of "OFF", "ERROR", "INFO", "TRACE"
1129
1153
  # resp.log_configuration.include_execution_data #=> Array
1130
1154
  # resp.log_configuration.include_execution_data[0] #=> String, one of "ALL"
1155
+ # resp.kms_key_identifier #=> String
1131
1156
  #
1132
1157
  # @see http://docs.aws.amazon.com/goto/WebAPI/pipes-2015-10-07/DescribePipe AWS API Documentation
1133
1158
  #
@@ -1447,6 +1472,27 @@ module Aws::Pipes
1447
1472
  # @option params [Types::PipeLogConfigurationParameters] :log_configuration
1448
1473
  # The logging configuration settings for the pipe.
1449
1474
  #
1475
+ # @option params [String] :kms_key_identifier
1476
+ # The identifier of the KMS customer managed key for EventBridge to use,
1477
+ # if you choose to use a customer managed key to encrypt pipe data. The
1478
+ # identifier can be the key Amazon Resource Name (ARN), KeyId, key
1479
+ # alias, or key alias ARN.
1480
+ #
1481
+ # To update a pipe that is using the default Amazon Web Services owned
1482
+ # key to use a customer managed key instead, or update a pipe that is
1483
+ # using a customer managed key to use a different customer managed key,
1484
+ # specify a customer managed key identifier.
1485
+ #
1486
+ # To update a pipe that is using a customer managed key to use the
1487
+ # default Amazon Web Services owned key, specify an empty string.
1488
+ #
1489
+ # For more information, see [Managing keys][1] in the *Key Management
1490
+ # Service Developer Guide*.
1491
+ #
1492
+ #
1493
+ #
1494
+ # [1]: https://docs.aws.amazon.com/kms/latest/developerguide/getting-started.html
1495
+ #
1450
1496
  # @return [Types::UpdatePipeResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1451
1497
  #
1452
1498
  # * {Types::UpdatePipeResponse#arn #arn} => String
@@ -1770,6 +1816,7 @@ module Aws::Pipes
1770
1816
  # level: "OFF", # required, accepts OFF, ERROR, INFO, TRACE
1771
1817
  # include_execution_data: ["ALL"], # accepts ALL
1772
1818
  # },
1819
+ # kms_key_identifier: "KmsKeyIdentifier",
1773
1820
  # })
1774
1821
  #
1775
1822
  # @example Response structure
@@ -1808,7 +1855,7 @@ module Aws::Pipes
1808
1855
  tracer: tracer
1809
1856
  )
1810
1857
  context[:gem_name] = 'aws-sdk-pipes'
1811
- context[:gem_version] = '1.25.0'
1858
+ context[:gem_version] = '1.26.0'
1812
1859
  Seahorse::Client::Request.new(handlers, context)
1813
1860
  end
1814
1861
 
@@ -99,6 +99,7 @@ module Aws::Pipes
99
99
  KafkaTopicName = Shapes::StringShape.new(name: 'KafkaTopicName')
100
100
  KinesisPartitionKey = Shapes::StringShape.new(name: 'KinesisPartitionKey')
101
101
  KinesisStreamStartPosition = Shapes::StringShape.new(name: 'KinesisStreamStartPosition')
102
+ KmsKeyIdentifier = Shapes::StringShape.new(name: 'KmsKeyIdentifier')
102
103
  LaunchType = Shapes::StringShape.new(name: 'LaunchType')
103
104
  LimitMax10 = Shapes::IntegerShape.new(name: 'LimitMax10')
104
105
  LimitMax100 = Shapes::IntegerShape.new(name: 'LimitMax100')
@@ -319,6 +320,7 @@ module Aws::Pipes
319
320
  CreatePipeRequest.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleArn, required: true, location_name: "RoleArn"))
320
321
  CreatePipeRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
321
322
  CreatePipeRequest.add_member(:log_configuration, Shapes::ShapeRef.new(shape: PipeLogConfigurationParameters, location_name: "LogConfiguration"))
323
+ CreatePipeRequest.add_member(:kms_key_identifier, Shapes::ShapeRef.new(shape: KmsKeyIdentifier, location_name: "KmsKeyIdentifier"))
322
324
  CreatePipeRequest.struct_class = Types::CreatePipeRequest
323
325
 
324
326
  CreatePipeResponse.add_member(:arn, Shapes::ShapeRef.new(shape: PipeArn, location_name: "Arn"))
@@ -363,6 +365,7 @@ module Aws::Pipes
363
365
  DescribePipeResponse.add_member(:creation_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "CreationTime"))
364
366
  DescribePipeResponse.add_member(:last_modified_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LastModifiedTime"))
365
367
  DescribePipeResponse.add_member(:log_configuration, Shapes::ShapeRef.new(shape: PipeLogConfiguration, location_name: "LogConfiguration"))
368
+ DescribePipeResponse.add_member(:kms_key_identifier, Shapes::ShapeRef.new(shape: KmsKeyIdentifier, location_name: "KmsKeyIdentifier"))
366
369
  DescribePipeResponse.struct_class = Types::DescribePipeResponse
367
370
 
368
371
  DimensionMapping.add_member(:dimension_value, Shapes::ShapeRef.new(shape: DimensionValue, required: true, location_name: "DimensionValue"))
@@ -832,6 +835,7 @@ module Aws::Pipes
832
835
  UpdatePipeRequest.add_member(:target_parameters, Shapes::ShapeRef.new(shape: PipeTargetParameters, location_name: "TargetParameters"))
833
836
  UpdatePipeRequest.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleArn, required: true, location_name: "RoleArn"))
834
837
  UpdatePipeRequest.add_member(:log_configuration, Shapes::ShapeRef.new(shape: PipeLogConfigurationParameters, location_name: "LogConfiguration"))
838
+ UpdatePipeRequest.add_member(:kms_key_identifier, Shapes::ShapeRef.new(shape: KmsKeyIdentifier, location_name: "KmsKeyIdentifier"))
835
839
  UpdatePipeRequest.struct_class = Types::UpdatePipeRequest
836
840
 
837
841
  UpdatePipeResponse.add_member(:arn, Shapes::ShapeRef.new(shape: PipeArn, location_name: "Arn"))
@@ -914,6 +918,7 @@ module Aws::Pipes
914
918
 
915
919
  api.metadata = {
916
920
  "apiVersion" => "2015-10-07",
921
+ "auth" => ["aws.auth#sigv4"],
917
922
  "endpointPrefix" => "pipes",
918
923
  "protocol" => "rest-json",
919
924
  "protocols" => ["rest-json"],
@@ -496,6 +496,23 @@ module Aws::Pipes
496
496
  # The logging configuration settings for the pipe.
497
497
  # @return [Types::PipeLogConfigurationParameters]
498
498
  #
499
+ # @!attribute [rw] kms_key_identifier
500
+ # The identifier of the KMS customer managed key for EventBridge to
501
+ # use, if you choose to use a customer managed key to encrypt pipe
502
+ # data. The identifier can be the key Amazon Resource Name (ARN),
503
+ # KeyId, key alias, or key alias ARN.
504
+ #
505
+ # If you do not specify a customer managed key identifier, EventBridge
506
+ # uses an Amazon Web Services owned key to encrypt pipe data.
507
+ #
508
+ # For more information, see [Managing keys][1] in the *Key Management
509
+ # Service Developer Guide*.
510
+ #
511
+ #
512
+ #
513
+ # [1]: https://docs.aws.amazon.com/kms/latest/developerguide/getting-started.html
514
+ # @return [String]
515
+ #
499
516
  # @see http://docs.aws.amazon.com/goto/WebAPI/pipes-2015-10-07/CreatePipeRequest AWS API Documentation
500
517
  #
501
518
  class CreatePipeRequest < Struct.new(
@@ -510,7 +527,8 @@ module Aws::Pipes
510
527
  :target_parameters,
511
528
  :role_arn,
512
529
  :tags,
513
- :log_configuration)
530
+ :log_configuration,
531
+ :kms_key_identifier)
514
532
  SENSITIVE = [:description, :tags]
515
533
  include Aws::Structure
516
534
  end
@@ -722,6 +740,18 @@ module Aws::Pipes
722
740
  # The logging configuration settings for the pipe.
723
741
  # @return [Types::PipeLogConfiguration]
724
742
  #
743
+ # @!attribute [rw] kms_key_identifier
744
+ # The identifier of the KMS customer managed key for EventBridge to
745
+ # use to encrypt pipe data, if one has been specified.
746
+ #
747
+ # For more information, see [Data encryption in EventBridge][1] in the
748
+ # *Amazon EventBridge User Guide*.
749
+ #
750
+ #
751
+ #
752
+ # [1]: https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-encryption.html
753
+ # @return [String]
754
+ #
725
755
  # @see http://docs.aws.amazon.com/goto/WebAPI/pipes-2015-10-07/DescribePipeResponse AWS API Documentation
726
756
  #
727
757
  class DescribePipeResponse < Struct.new(
@@ -741,7 +771,8 @@ module Aws::Pipes
741
771
  :tags,
742
772
  :creation_time,
743
773
  :last_modified_time,
744
- :log_configuration)
774
+ :log_configuration,
775
+ :kms_key_identifier)
745
776
  SENSITIVE = [:description, :tags]
746
777
  include Aws::Structure
747
778
  end
@@ -2807,15 +2838,7 @@ module Aws::Pipes
2807
2838
  # @!attribute [rw] output_format
2808
2839
  # The format EventBridge uses for the log records.
2809
2840
  #
2810
- # * `json`: JSON
2811
- #
2812
- # * `plain`: Plain text
2813
- #
2814
- # * `w3c`: [W3C extended logging file format][1]
2815
- #
2816
- #
2817
- #
2818
- # [1]: https://www.w3.org/TR/WD-logfile
2841
+ # EventBridge currently only supports `json` formatting.
2819
2842
  # @return [String]
2820
2843
  #
2821
2844
  # @see http://docs.aws.amazon.com/goto/WebAPI/pipes-2015-10-07/S3LogDestination AWS API Documentation
@@ -2844,15 +2867,7 @@ module Aws::Pipes
2844
2867
  # @!attribute [rw] output_format
2845
2868
  # How EventBridge should format the log records.
2846
2869
  #
2847
- # * `json`: JSON
2848
- #
2849
- # * `plain`: Plain text
2850
- #
2851
- # * `w3c`: [W3C extended logging file format][1]
2852
- #
2853
- #
2854
- #
2855
- # [1]: https://www.w3.org/TR/WD-logfile
2870
+ # EventBridge currently only supports `json` formatting.
2856
2871
  # @return [String]
2857
2872
  #
2858
2873
  # @!attribute [rw] prefix
@@ -2956,8 +2971,7 @@ module Aws::Pipes
2956
2971
  # @!attribute [rw] security_group
2957
2972
  # Specifies the security groups associated with the stream. These
2958
2973
  # security groups must all be in the same VPC. You can specify as many
2959
- # as five security groups. If you do not specify a security group, the
2960
- # default security group for the VPC is used.
2974
+ # as five security groups.
2961
2975
  # @return [Array<String>]
2962
2976
  #
2963
2977
  # @see http://docs.aws.amazon.com/goto/WebAPI/pipes-2015-10-07/SelfManagedKafkaAccessConfigurationVpc AWS API Documentation
@@ -3284,6 +3298,28 @@ module Aws::Pipes
3284
3298
  # The logging configuration settings for the pipe.
3285
3299
  # @return [Types::PipeLogConfigurationParameters]
3286
3300
  #
3301
+ # @!attribute [rw] kms_key_identifier
3302
+ # The identifier of the KMS customer managed key for EventBridge to
3303
+ # use, if you choose to use a customer managed key to encrypt pipe
3304
+ # data. The identifier can be the key Amazon Resource Name (ARN),
3305
+ # KeyId, key alias, or key alias ARN.
3306
+ #
3307
+ # To update a pipe that is using the default Amazon Web Services owned
3308
+ # key to use a customer managed key instead, or update a pipe that is
3309
+ # using a customer managed key to use a different customer managed
3310
+ # key, specify a customer managed key identifier.
3311
+ #
3312
+ # To update a pipe that is using a customer managed key to use the
3313
+ # default Amazon Web Services owned key, specify an empty string.
3314
+ #
3315
+ # For more information, see [Managing keys][1] in the *Key Management
3316
+ # Service Developer Guide*.
3317
+ #
3318
+ #
3319
+ #
3320
+ # [1]: https://docs.aws.amazon.com/kms/latest/developerguide/getting-started.html
3321
+ # @return [String]
3322
+ #
3287
3323
  # @see http://docs.aws.amazon.com/goto/WebAPI/pipes-2015-10-07/UpdatePipeRequest AWS API Documentation
3288
3324
  #
3289
3325
  class UpdatePipeRequest < Struct.new(
@@ -3296,7 +3332,8 @@ module Aws::Pipes
3296
3332
  :target,
3297
3333
  :target_parameters,
3298
3334
  :role_arn,
3299
- :log_configuration)
3335
+ :log_configuration,
3336
+ :kms_key_identifier)
3300
3337
  SENSITIVE = [:description]
3301
3338
  include Aws::Structure
3302
3339
  end
data/lib/aws-sdk-pipes.rb CHANGED
@@ -53,6 +53,6 @@ require_relative 'aws-sdk-pipes/customizations'
53
53
  # @!group service
54
54
  module Aws::Pipes
55
55
 
56
- GEM_VERSION = '1.25.0'
56
+ GEM_VERSION = '1.26.0'
57
57
 
58
58
  end
data/sig/client.rbs CHANGED
@@ -400,7 +400,8 @@ module Aws
400
400
  }?,
401
401
  level: ("OFF" | "ERROR" | "INFO" | "TRACE"),
402
402
  include_execution_data: Array[("ALL")]?
403
- }
403
+ },
404
+ ?kms_key_identifier: ::String
404
405
  ) -> _CreatePipeResponseSuccess
405
406
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreatePipeResponseSuccess
406
407
 
@@ -438,6 +439,7 @@ module Aws
438
439
  def creation_time: () -> ::Time
439
440
  def last_modified_time: () -> ::Time
440
441
  def log_configuration: () -> Types::PipeLogConfiguration
442
+ def kms_key_identifier: () -> ::String
441
443
  end
442
444
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Pipes/Client.html#describe_pipe-instance_method
443
445
  def describe_pipe: (
@@ -833,7 +835,8 @@ module Aws
833
835
  }?,
834
836
  level: ("OFF" | "ERROR" | "INFO" | "TRACE"),
835
837
  include_execution_data: Array[("ALL")]?
836
- }
838
+ },
839
+ ?kms_key_identifier: ::String
837
840
  ) -> _UpdatePipeResponseSuccess
838
841
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdatePipeResponseSuccess
839
842
  end
data/sig/types.rbs CHANGED
@@ -88,6 +88,7 @@ module Aws::Pipes
88
88
  attr_accessor role_arn: ::String
89
89
  attr_accessor tags: ::Hash[::String, ::String]
90
90
  attr_accessor log_configuration: Types::PipeLogConfigurationParameters
91
+ attr_accessor kms_key_identifier: ::String
91
92
  SENSITIVE: [:description]
92
93
  end
93
94
 
@@ -144,6 +145,7 @@ module Aws::Pipes
144
145
  attr_accessor creation_time: ::Time
145
146
  attr_accessor last_modified_time: ::Time
146
147
  attr_accessor log_configuration: Types::PipeLogConfiguration
148
+ attr_accessor kms_key_identifier: ::String
147
149
  SENSITIVE: [:description]
148
150
  end
149
151
 
@@ -701,6 +703,7 @@ module Aws::Pipes
701
703
  attr_accessor target_parameters: Types::PipeTargetParameters
702
704
  attr_accessor role_arn: ::String
703
705
  attr_accessor log_configuration: Types::PipeLogConfigurationParameters
706
+ attr_accessor kms_key_identifier: ::String
704
707
  SENSITIVE: [:description]
705
708
  end
706
709
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-pipes
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.25.0
4
+ version: 1.26.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: 2024-09-03 00:00:00.000000000 Z
11
+ date: 2024-09-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -36,14 +36,14 @@ dependencies:
36
36
  requirements:
37
37
  - - "~>"
38
38
  - !ruby/object:Gem::Version
39
- version: '1.1'
39
+ version: '1.5'
40
40
  type: :runtime
41
41
  prerelease: false
42
42
  version_requirements: !ruby/object:Gem::Requirement
43
43
  requirements:
44
44
  - - "~>"
45
45
  - !ruby/object:Gem::Version
46
- version: '1.1'
46
+ version: '1.5'
47
47
  description: Official AWS Ruby gem for Amazon EventBridge Pipes. This gem is part
48
48
  of the AWS SDK for Ruby.
49
49
  email: