aws-sdk-pipes 1.25.0 → 1.27.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-pipes/client.rb +48 -1
- data/lib/aws-sdk-pipes/client_api.rb +5 -0
- data/lib/aws-sdk-pipes/endpoints.rb +10 -40
- data/lib/aws-sdk-pipes/plugins/endpoints.rb +10 -1
- data/lib/aws-sdk-pipes/types.rb +60 -23
- data/lib/aws-sdk-pipes.rb +1 -1
- data/sig/client.rbs +5 -2
- data/sig/types.rbs +3 -0
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 05a618f170b878ecdd03affb75e036a735d07fae9da4c54fae6eccffa9a1f60f
|
4
|
+
data.tar.gz: e0323922c889695f004f732cca3abea743e784fb66763514383022c09475aa3d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 38ab6b642f9ff751c22aa17f9aa07cc55e28656acb453f14bd6700daa459e0eda9b27a661d486bf607ed143777454c014ea2f7fab1ec747d861b6bc24ea5eb18
|
7
|
+
data.tar.gz: 5ef922775109191b13ebd76f507ca909d4e7ab5af52bc2636c85726689c34032e36ab5e2079ea9d381036e758d9aa289a2d65a2a2bdbebfaf191cb683f4ec804
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.27.0 (2024-09-11)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.26.0 (2024-09-10)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - This release adds support for customer managed KMS keys in Amazon EventBridge Pipe
|
13
|
+
|
4
14
|
1.25.0 (2024-09-03)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.27.0
|
data/lib/aws-sdk-pipes/client.rb
CHANGED
@@ -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.
|
1858
|
+
context[:gem_version] = '1.27.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"],
|
@@ -14,140 +14,110 @@ module Aws::Pipes
|
|
14
14
|
|
15
15
|
class CreatePipe
|
16
16
|
def self.build(context)
|
17
|
-
unless context.config.regional_endpoint
|
18
|
-
endpoint = context.config.endpoint.to_s
|
19
|
-
end
|
20
17
|
Aws::Pipes::EndpointParameters.new(
|
21
18
|
region: context.config.region,
|
22
19
|
use_dual_stack: context.config.use_dualstack_endpoint,
|
23
20
|
use_fips: context.config.use_fips_endpoint,
|
24
|
-
endpoint: endpoint,
|
21
|
+
endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
|
25
22
|
)
|
26
23
|
end
|
27
24
|
end
|
28
25
|
|
29
26
|
class DeletePipe
|
30
27
|
def self.build(context)
|
31
|
-
unless context.config.regional_endpoint
|
32
|
-
endpoint = context.config.endpoint.to_s
|
33
|
-
end
|
34
28
|
Aws::Pipes::EndpointParameters.new(
|
35
29
|
region: context.config.region,
|
36
30
|
use_dual_stack: context.config.use_dualstack_endpoint,
|
37
31
|
use_fips: context.config.use_fips_endpoint,
|
38
|
-
endpoint: endpoint,
|
32
|
+
endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
|
39
33
|
)
|
40
34
|
end
|
41
35
|
end
|
42
36
|
|
43
37
|
class DescribePipe
|
44
38
|
def self.build(context)
|
45
|
-
unless context.config.regional_endpoint
|
46
|
-
endpoint = context.config.endpoint.to_s
|
47
|
-
end
|
48
39
|
Aws::Pipes::EndpointParameters.new(
|
49
40
|
region: context.config.region,
|
50
41
|
use_dual_stack: context.config.use_dualstack_endpoint,
|
51
42
|
use_fips: context.config.use_fips_endpoint,
|
52
|
-
endpoint: endpoint,
|
43
|
+
endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
|
53
44
|
)
|
54
45
|
end
|
55
46
|
end
|
56
47
|
|
57
48
|
class ListPipes
|
58
49
|
def self.build(context)
|
59
|
-
unless context.config.regional_endpoint
|
60
|
-
endpoint = context.config.endpoint.to_s
|
61
|
-
end
|
62
50
|
Aws::Pipes::EndpointParameters.new(
|
63
51
|
region: context.config.region,
|
64
52
|
use_dual_stack: context.config.use_dualstack_endpoint,
|
65
53
|
use_fips: context.config.use_fips_endpoint,
|
66
|
-
endpoint: endpoint,
|
54
|
+
endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
|
67
55
|
)
|
68
56
|
end
|
69
57
|
end
|
70
58
|
|
71
59
|
class ListTagsForResource
|
72
60
|
def self.build(context)
|
73
|
-
unless context.config.regional_endpoint
|
74
|
-
endpoint = context.config.endpoint.to_s
|
75
|
-
end
|
76
61
|
Aws::Pipes::EndpointParameters.new(
|
77
62
|
region: context.config.region,
|
78
63
|
use_dual_stack: context.config.use_dualstack_endpoint,
|
79
64
|
use_fips: context.config.use_fips_endpoint,
|
80
|
-
endpoint: endpoint,
|
65
|
+
endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
|
81
66
|
)
|
82
67
|
end
|
83
68
|
end
|
84
69
|
|
85
70
|
class StartPipe
|
86
71
|
def self.build(context)
|
87
|
-
unless context.config.regional_endpoint
|
88
|
-
endpoint = context.config.endpoint.to_s
|
89
|
-
end
|
90
72
|
Aws::Pipes::EndpointParameters.new(
|
91
73
|
region: context.config.region,
|
92
74
|
use_dual_stack: context.config.use_dualstack_endpoint,
|
93
75
|
use_fips: context.config.use_fips_endpoint,
|
94
|
-
endpoint: endpoint,
|
76
|
+
endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
|
95
77
|
)
|
96
78
|
end
|
97
79
|
end
|
98
80
|
|
99
81
|
class StopPipe
|
100
82
|
def self.build(context)
|
101
|
-
unless context.config.regional_endpoint
|
102
|
-
endpoint = context.config.endpoint.to_s
|
103
|
-
end
|
104
83
|
Aws::Pipes::EndpointParameters.new(
|
105
84
|
region: context.config.region,
|
106
85
|
use_dual_stack: context.config.use_dualstack_endpoint,
|
107
86
|
use_fips: context.config.use_fips_endpoint,
|
108
|
-
endpoint: endpoint,
|
87
|
+
endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
|
109
88
|
)
|
110
89
|
end
|
111
90
|
end
|
112
91
|
|
113
92
|
class TagResource
|
114
93
|
def self.build(context)
|
115
|
-
unless context.config.regional_endpoint
|
116
|
-
endpoint = context.config.endpoint.to_s
|
117
|
-
end
|
118
94
|
Aws::Pipes::EndpointParameters.new(
|
119
95
|
region: context.config.region,
|
120
96
|
use_dual_stack: context.config.use_dualstack_endpoint,
|
121
97
|
use_fips: context.config.use_fips_endpoint,
|
122
|
-
endpoint: endpoint,
|
98
|
+
endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
|
123
99
|
)
|
124
100
|
end
|
125
101
|
end
|
126
102
|
|
127
103
|
class UntagResource
|
128
104
|
def self.build(context)
|
129
|
-
unless context.config.regional_endpoint
|
130
|
-
endpoint = context.config.endpoint.to_s
|
131
|
-
end
|
132
105
|
Aws::Pipes::EndpointParameters.new(
|
133
106
|
region: context.config.region,
|
134
107
|
use_dual_stack: context.config.use_dualstack_endpoint,
|
135
108
|
use_fips: context.config.use_fips_endpoint,
|
136
|
-
endpoint: endpoint,
|
109
|
+
endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
|
137
110
|
)
|
138
111
|
end
|
139
112
|
end
|
140
113
|
|
141
114
|
class UpdatePipe
|
142
115
|
def self.build(context)
|
143
|
-
unless context.config.regional_endpoint
|
144
|
-
endpoint = context.config.endpoint.to_s
|
145
|
-
end
|
146
116
|
Aws::Pipes::EndpointParameters.new(
|
147
117
|
region: context.config.region,
|
148
118
|
use_dual_stack: context.config.use_dualstack_endpoint,
|
149
119
|
use_fips: context.config.use_fips_endpoint,
|
150
|
-
endpoint: endpoint,
|
120
|
+
endpoint: context.config.regional_endpoint ? nil : context.config.endpoint.to_s,
|
151
121
|
)
|
152
122
|
end
|
153
123
|
end
|
@@ -40,11 +40,20 @@ module Aws::Pipes
|
|
40
40
|
context[:auth_scheme] =
|
41
41
|
Aws::Endpoints.resolve_auth_scheme(context, endpoint)
|
42
42
|
|
43
|
-
@handler.call(context)
|
43
|
+
with_metrics(context) { @handler.call(context) }
|
44
44
|
end
|
45
45
|
|
46
46
|
private
|
47
47
|
|
48
|
+
def with_metrics(context, &block)
|
49
|
+
metrics = []
|
50
|
+
metrics << 'ENDPOINT_OVERRIDE' unless context.config.regional_endpoint
|
51
|
+
if context[:auth_scheme] && context[:auth_scheme]['name'] == 'sigv4a'
|
52
|
+
metrics << 'SIGV4A_SIGNING'
|
53
|
+
end
|
54
|
+
Aws::Plugins::UserAgent.metric(*metrics, &block)
|
55
|
+
end
|
56
|
+
|
48
57
|
def apply_endpoint_headers(context, headers)
|
49
58
|
headers.each do |key, values|
|
50
59
|
value = values
|
data/lib/aws-sdk-pipes/types.rb
CHANGED
@@ -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
|
-
#
|
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
|
-
#
|
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.
|
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
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.
|
4
|
+
version: 1.27.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-
|
11
|
+
date: 2024-09-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.205.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,21 +29,21 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.205.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
36
36
|
requirements:
|
37
37
|
- - "~>"
|
38
38
|
- !ruby/object:Gem::Version
|
39
|
-
version: '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.
|
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:
|