aws-sdk-pipes 1.10.0 → 1.11.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1191c820d94a66bf64d783c2b37e616e9d7fab6cf93f4560523f0e0a1014b1d7
4
- data.tar.gz: 946d9776ebeca71500f6a9c77079b7c4295fe2841675eaa795069a7597b63454
3
+ metadata.gz: 99665a849a27e0e62d2e7a080e44f494cce96da1fb05bd95047d2de6887f9a5c
4
+ data.tar.gz: ee2f932728778aa6bf92a41c50fc819e53b13bf129d42ca7a413d7a179fe9a01
5
5
  SHA512:
6
- metadata.gz: a8c52e3466feb02b8481a59e7dc6a9d378ad03ae07d56ba21148fa17bc394c8a9d09d7a2610926ced8b0c29fa0befee2eafd98306d0908bbd63c10e6e7a720cf
7
- data.tar.gz: e25cf53ace16163d1cffdc87d2657fd48e618f9b0f829182a7386719c92727e40605f273b3ac34dd6c65fa03de93f5887075498e3dd97ded2ba7938445003068
6
+ metadata.gz: 5bab3ffa2c4a9a8d617d4e663e8c6cadb9a7575ae106b074580ed0fc6c6a14877484ed2ffad7da2f7509f1cd450040cc4558f210f0aeba35356b75c262ea8949
7
+ data.tar.gz: d1b8caba951fb3fd7ee4a539407bd40e48493371ed8edf99a3ebbf89a3e292ca4f5864cf1b3fb1cfb811a62ff82c016c03df7c4502ebec32d7fafb2c9bdf62a9
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.11.0 (2023-11-14)
5
+ ------------------
6
+
7
+ * Feature - Added support (via new LogConfiguration field in CreatePipe and UpdatePipe APIs) for logging to Amazon CloudWatch Logs, Amazon Simple Storage Service (Amazon S3), and Amazon Kinesis Data Firehose
8
+
4
9
  1.10.0 (2023-09-27)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.10.0
1
+ 1.11.0
@@ -404,6 +404,9 @@ module Aws::Pipes
404
404
  # @option params [Types::PipeEnrichmentParameters] :enrichment_parameters
405
405
  # The parameters required to set up enrichment on your pipe.
406
406
  #
407
+ # @option params [Types::PipeLogConfigurationParameters] :log_configuration
408
+ # The logging configuration settings for the pipe.
409
+ #
407
410
  # @option params [required, String] :name
408
411
  # The name of the pipe.
409
412
  #
@@ -425,6 +428,14 @@ module Aws::Pipes
425
428
  # @option params [Types::PipeTargetParameters] :target_parameters
426
429
  # The parameters required to set up a target for your pipe.
427
430
  #
431
+ # For more information about pipe target parameters, including how to
432
+ # use dynamic path parameters, see [Target parameters][1] in the *Amazon
433
+ # EventBridge User Guide*.
434
+ #
435
+ #
436
+ #
437
+ # [1]: https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-pipes-event-target.html
438
+ #
428
439
  # @return [Types::CreatePipeResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
429
440
  #
430
441
  # * {Types::CreatePipeResponse#arn #arn} => String
@@ -452,6 +463,22 @@ module Aws::Pipes
452
463
  # },
453
464
  # input_template: "InputTemplate",
454
465
  # },
466
+ # log_configuration: {
467
+ # cloudwatch_logs_log_destination: {
468
+ # log_group_arn: "CloudwatchLogGroupArn", # required
469
+ # },
470
+ # firehose_log_destination: {
471
+ # delivery_stream_arn: "FirehoseArn", # required
472
+ # },
473
+ # include_execution_data: ["ALL"], # accepts ALL
474
+ # level: "OFF", # required, accepts OFF, ERROR, INFO, TRACE
475
+ # s3_log_destination: {
476
+ # bucket_name: "S3LogDestinationParametersBucketNameString", # required
477
+ # bucket_owner: "S3LogDestinationParametersBucketOwnerString", # required
478
+ # output_format: "json", # accepts json, plain, w3c
479
+ # prefix: "S3LogDestinationParametersPrefixString",
480
+ # },
481
+ # },
455
482
  # name: "PipeName", # required
456
483
  # role_arn: "RoleArn", # required
457
484
  # source: "ArnOrUrl", # required
@@ -722,7 +749,7 @@ module Aws::Pipes
722
749
  #
723
750
  # resp.arn #=> String
724
751
  # resp.creation_time #=> Time
725
- # resp.current_state #=> String, one of "RUNNING", "STOPPED", "CREATING", "UPDATING", "DELETING", "STARTING", "STOPPING", "CREATE_FAILED", "UPDATE_FAILED", "START_FAILED", "STOP_FAILED"
752
+ # resp.current_state #=> String, one of "RUNNING", "STOPPED", "CREATING", "UPDATING", "DELETING", "STARTING", "STOPPING", "CREATE_FAILED", "UPDATE_FAILED", "START_FAILED", "STOP_FAILED", "DELETE_FAILED", "CREATE_ROLLBACK_FAILED", "DELETE_ROLLBACK_FAILED", "UPDATE_ROLLBACK_FAILED"
726
753
  # resp.desired_state #=> String, one of "RUNNING", "STOPPED"
727
754
  # resp.last_modified_time #=> Time
728
755
  # resp.name #=> String
@@ -765,7 +792,7 @@ module Aws::Pipes
765
792
  #
766
793
  # resp.arn #=> String
767
794
  # resp.creation_time #=> Time
768
- # resp.current_state #=> String, one of "RUNNING", "STOPPED", "CREATING", "UPDATING", "DELETING", "STARTING", "STOPPING", "CREATE_FAILED", "UPDATE_FAILED", "START_FAILED", "STOP_FAILED"
795
+ # resp.current_state #=> String, one of "RUNNING", "STOPPED", "CREATING", "UPDATING", "DELETING", "STARTING", "STOPPING", "CREATE_FAILED", "UPDATE_FAILED", "START_FAILED", "STOP_FAILED", "DELETE_FAILED", "CREATE_ROLLBACK_FAILED", "DELETE_ROLLBACK_FAILED", "UPDATE_ROLLBACK_FAILED"
769
796
  # resp.desired_state #=> String, one of "RUNNING", "STOPPED", "DELETED"
770
797
  # resp.last_modified_time #=> Time
771
798
  # resp.name #=> String
@@ -800,6 +827,7 @@ module Aws::Pipes
800
827
  # * {Types::DescribePipeResponse#enrichment #enrichment} => String
801
828
  # * {Types::DescribePipeResponse#enrichment_parameters #enrichment_parameters} => Types::PipeEnrichmentParameters
802
829
  # * {Types::DescribePipeResponse#last_modified_time #last_modified_time} => Time
830
+ # * {Types::DescribePipeResponse#log_configuration #log_configuration} => Types::PipeLogConfiguration
803
831
  # * {Types::DescribePipeResponse#name #name} => String
804
832
  # * {Types::DescribePipeResponse#role_arn #role_arn} => String
805
833
  # * {Types::DescribePipeResponse#source #source} => String
@@ -819,7 +847,7 @@ module Aws::Pipes
819
847
  #
820
848
  # resp.arn #=> String
821
849
  # resp.creation_time #=> Time
822
- # resp.current_state #=> String, one of "RUNNING", "STOPPED", "CREATING", "UPDATING", "DELETING", "STARTING", "STOPPING", "CREATE_FAILED", "UPDATE_FAILED", "START_FAILED", "STOP_FAILED"
850
+ # resp.current_state #=> String, one of "RUNNING", "STOPPED", "CREATING", "UPDATING", "DELETING", "STARTING", "STOPPING", "CREATE_FAILED", "UPDATE_FAILED", "START_FAILED", "STOP_FAILED", "DELETE_FAILED", "CREATE_ROLLBACK_FAILED", "DELETE_ROLLBACK_FAILED", "UPDATE_ROLLBACK_FAILED"
823
851
  # resp.description #=> String
824
852
  # resp.desired_state #=> String, one of "RUNNING", "STOPPED", "DELETED"
825
853
  # resp.enrichment #=> String
@@ -831,6 +859,15 @@ module Aws::Pipes
831
859
  # resp.enrichment_parameters.http_parameters.query_string_parameters["QueryStringKey"] #=> String
832
860
  # resp.enrichment_parameters.input_template #=> String
833
861
  # resp.last_modified_time #=> Time
862
+ # resp.log_configuration.cloudwatch_logs_log_destination.log_group_arn #=> String
863
+ # resp.log_configuration.firehose_log_destination.delivery_stream_arn #=> String
864
+ # resp.log_configuration.include_execution_data #=> Array
865
+ # resp.log_configuration.include_execution_data[0] #=> String, one of "ALL"
866
+ # resp.log_configuration.level #=> String, one of "OFF", "ERROR", "INFO", "TRACE"
867
+ # resp.log_configuration.s3_log_destination.bucket_name #=> String
868
+ # resp.log_configuration.s3_log_destination.bucket_owner #=> String
869
+ # resp.log_configuration.s3_log_destination.output_format #=> String, one of "json", "plain", "w3c"
870
+ # resp.log_configuration.s3_log_destination.prefix #=> String
834
871
  # resp.name #=> String
835
872
  # resp.role_arn #=> String
836
873
  # resp.source #=> String
@@ -1046,7 +1083,7 @@ module Aws::Pipes
1046
1083
  # @example Request syntax with placeholder values
1047
1084
  #
1048
1085
  # resp = client.list_pipes({
1049
- # current_state: "RUNNING", # accepts RUNNING, STOPPED, CREATING, UPDATING, DELETING, STARTING, STOPPING, CREATE_FAILED, UPDATE_FAILED, START_FAILED, STOP_FAILED
1086
+ # current_state: "RUNNING", # accepts RUNNING, STOPPED, CREATING, UPDATING, DELETING, STARTING, STOPPING, CREATE_FAILED, UPDATE_FAILED, START_FAILED, STOP_FAILED, DELETE_FAILED, CREATE_ROLLBACK_FAILED, DELETE_ROLLBACK_FAILED, UPDATE_ROLLBACK_FAILED
1050
1087
  # desired_state: "RUNNING", # accepts RUNNING, STOPPED
1051
1088
  # limit: 1,
1052
1089
  # name_prefix: "PipeName",
@@ -1061,7 +1098,7 @@ module Aws::Pipes
1061
1098
  # resp.pipes #=> Array
1062
1099
  # resp.pipes[0].arn #=> String
1063
1100
  # resp.pipes[0].creation_time #=> Time
1064
- # resp.pipes[0].current_state #=> String, one of "RUNNING", "STOPPED", "CREATING", "UPDATING", "DELETING", "STARTING", "STOPPING", "CREATE_FAILED", "UPDATE_FAILED", "START_FAILED", "STOP_FAILED"
1101
+ # resp.pipes[0].current_state #=> String, one of "RUNNING", "STOPPED", "CREATING", "UPDATING", "DELETING", "STARTING", "STOPPING", "CREATE_FAILED", "UPDATE_FAILED", "START_FAILED", "STOP_FAILED", "DELETE_FAILED", "CREATE_ROLLBACK_FAILED", "DELETE_ROLLBACK_FAILED", "UPDATE_ROLLBACK_FAILED"
1065
1102
  # resp.pipes[0].desired_state #=> String, one of "RUNNING", "STOPPED"
1066
1103
  # resp.pipes[0].enrichment #=> String
1067
1104
  # resp.pipes[0].last_modified_time #=> Time
@@ -1132,7 +1169,7 @@ module Aws::Pipes
1132
1169
  #
1133
1170
  # resp.arn #=> String
1134
1171
  # resp.creation_time #=> Time
1135
- # resp.current_state #=> String, one of "RUNNING", "STOPPED", "CREATING", "UPDATING", "DELETING", "STARTING", "STOPPING", "CREATE_FAILED", "UPDATE_FAILED", "START_FAILED", "STOP_FAILED"
1172
+ # resp.current_state #=> String, one of "RUNNING", "STOPPED", "CREATING", "UPDATING", "DELETING", "STARTING", "STOPPING", "CREATE_FAILED", "UPDATE_FAILED", "START_FAILED", "STOP_FAILED", "DELETE_FAILED", "CREATE_ROLLBACK_FAILED", "DELETE_ROLLBACK_FAILED", "UPDATE_ROLLBACK_FAILED"
1136
1173
  # resp.desired_state #=> String, one of "RUNNING", "STOPPED"
1137
1174
  # resp.last_modified_time #=> Time
1138
1175
  # resp.name #=> String
@@ -1170,7 +1207,7 @@ module Aws::Pipes
1170
1207
  #
1171
1208
  # resp.arn #=> String
1172
1209
  # resp.creation_time #=> Time
1173
- # resp.current_state #=> String, one of "RUNNING", "STOPPED", "CREATING", "UPDATING", "DELETING", "STARTING", "STOPPING", "CREATE_FAILED", "UPDATE_FAILED", "START_FAILED", "STOP_FAILED"
1210
+ # resp.current_state #=> String, one of "RUNNING", "STOPPED", "CREATING", "UPDATING", "DELETING", "STARTING", "STOPPING", "CREATE_FAILED", "UPDATE_FAILED", "START_FAILED", "STOP_FAILED", "DELETE_FAILED", "CREATE_ROLLBACK_FAILED", "DELETE_ROLLBACK_FAILED", "UPDATE_ROLLBACK_FAILED"
1174
1211
  # resp.desired_state #=> String, one of "RUNNING", "STOPPED"
1175
1212
  # resp.last_modified_time #=> Time
1176
1213
  # resp.name #=> String
@@ -1252,15 +1289,17 @@ module Aws::Pipes
1252
1289
  req.send_request(options)
1253
1290
  end
1254
1291
 
1255
- # Update an existing pipe. When you call `UpdatePipe`, only the fields
1256
- # that are included in the request are changed, the rest are unchanged.
1257
- # The exception to this is if you modify any Amazon Web Services-service
1258
- # specific fields in the `SourceParameters`, `EnrichmentParameters`, or
1259
- # `TargetParameters` objects. The fields in these objects are updated
1260
- # atomically as one and override existing values. This is by design and
1261
- # means that if you don't specify an optional field in one of these
1262
- # Parameters objects, that field will be set to its system-default value
1263
- # after the update.
1292
+ # Update an existing pipe. When you call `UpdatePipe`, EventBridge only
1293
+ # the updates fields you have specified in the request; the rest remain
1294
+ # unchanged. The exception to this is if you modify any Amazon Web
1295
+ # Services-service specific fields in the `SourceParameters`,
1296
+ # `EnrichmentParameters`, or `TargetParameters` objects. For example,
1297
+ # `DynamoDBStreamParameters` or `EventBridgeEventBusParameters`.
1298
+ # EventBridge updates the fields in these objects atomically as one and
1299
+ # overrides existing values. This is by design, and means that if you
1300
+ # don't specify an optional field in one of these `Parameters` objects,
1301
+ # EventBridge sets that field to its system-default value during the
1302
+ # update.
1264
1303
  #
1265
1304
  # For more information about pipes, see [ Amazon EventBridge Pipes][1]
1266
1305
  # in the Amazon EventBridge User Guide.
@@ -1281,6 +1320,9 @@ module Aws::Pipes
1281
1320
  # @option params [Types::PipeEnrichmentParameters] :enrichment_parameters
1282
1321
  # The parameters required to set up enrichment on your pipe.
1283
1322
  #
1323
+ # @option params [Types::PipeLogConfigurationParameters] :log_configuration
1324
+ # The logging configuration settings for the pipe.
1325
+ #
1284
1326
  # @option params [required, String] :name
1285
1327
  # The name of the pipe.
1286
1328
  #
@@ -1296,6 +1338,14 @@ module Aws::Pipes
1296
1338
  # @option params [Types::PipeTargetParameters] :target_parameters
1297
1339
  # The parameters required to set up a target for your pipe.
1298
1340
  #
1341
+ # For more information about pipe target parameters, including how to
1342
+ # use dynamic path parameters, see [Target parameters][1] in the *Amazon
1343
+ # EventBridge User Guide*.
1344
+ #
1345
+ #
1346
+ #
1347
+ # [1]: https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-pipes-event-target.html
1348
+ #
1299
1349
  # @return [Types::UpdatePipeResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1300
1350
  #
1301
1351
  # * {Types::UpdatePipeResponse#arn #arn} => String
@@ -1323,6 +1373,22 @@ module Aws::Pipes
1323
1373
  # },
1324
1374
  # input_template: "InputTemplate",
1325
1375
  # },
1376
+ # log_configuration: {
1377
+ # cloudwatch_logs_log_destination: {
1378
+ # log_group_arn: "CloudwatchLogGroupArn", # required
1379
+ # },
1380
+ # firehose_log_destination: {
1381
+ # delivery_stream_arn: "FirehoseArn", # required
1382
+ # },
1383
+ # include_execution_data: ["ALL"], # accepts ALL
1384
+ # level: "OFF", # required, accepts OFF, ERROR, INFO, TRACE
1385
+ # s3_log_destination: {
1386
+ # bucket_name: "S3LogDestinationParametersBucketNameString", # required
1387
+ # bucket_owner: "S3LogDestinationParametersBucketOwnerString", # required
1388
+ # output_format: "json", # accepts json, plain, w3c
1389
+ # prefix: "S3LogDestinationParametersPrefixString",
1390
+ # },
1391
+ # },
1326
1392
  # name: "PipeName", # required
1327
1393
  # role_arn: "RoleArn", # required
1328
1394
  # source_parameters: {
@@ -1576,7 +1642,7 @@ module Aws::Pipes
1576
1642
  #
1577
1643
  # resp.arn #=> String
1578
1644
  # resp.creation_time #=> Time
1579
- # resp.current_state #=> String, one of "RUNNING", "STOPPED", "CREATING", "UPDATING", "DELETING", "STARTING", "STOPPING", "CREATE_FAILED", "UPDATE_FAILED", "START_FAILED", "STOP_FAILED"
1645
+ # resp.current_state #=> String, one of "RUNNING", "STOPPED", "CREATING", "UPDATING", "DELETING", "STARTING", "STOPPING", "CREATE_FAILED", "UPDATE_FAILED", "START_FAILED", "STOP_FAILED", "DELETE_FAILED", "CREATE_ROLLBACK_FAILED", "DELETE_ROLLBACK_FAILED", "UPDATE_ROLLBACK_FAILED"
1580
1646
  # resp.desired_state #=> String, one of "RUNNING", "STOPPED"
1581
1647
  # resp.last_modified_time #=> Time
1582
1648
  # resp.name #=> String
@@ -1603,7 +1669,7 @@ module Aws::Pipes
1603
1669
  params: params,
1604
1670
  config: config)
1605
1671
  context[:gem_name] = 'aws-sdk-pipes'
1606
- context[:gem_version] = '1.10.0'
1672
+ context[:gem_version] = '1.11.0'
1607
1673
  Seahorse::Client::Request.new(handlers, context)
1608
1674
  end
1609
1675
 
@@ -38,6 +38,9 @@ module Aws::Pipes
38
38
  CapacityProviderStrategyItem = Shapes::StructureShape.new(name: 'CapacityProviderStrategyItem')
39
39
  CapacityProviderStrategyItemBase = Shapes::IntegerShape.new(name: 'CapacityProviderStrategyItemBase')
40
40
  CapacityProviderStrategyItemWeight = Shapes::IntegerShape.new(name: 'CapacityProviderStrategyItemWeight')
41
+ CloudwatchLogGroupArn = Shapes::StringShape.new(name: 'CloudwatchLogGroupArn')
42
+ CloudwatchLogsLogDestination = Shapes::StructureShape.new(name: 'CloudwatchLogsLogDestination')
43
+ CloudwatchLogsLogDestinationParameters = Shapes::StructureShape.new(name: 'CloudwatchLogsLogDestinationParameters')
41
44
  ConflictException = Shapes::StructureShape.new(name: 'ConflictException')
42
45
  CreatePipeRequest = Shapes::StructureShape.new(name: 'CreatePipeRequest')
43
46
  CreatePipeResponse = Shapes::StructureShape.new(name: 'CreatePipeResponse')
@@ -74,9 +77,14 @@ module Aws::Pipes
74
77
  Filter = Shapes::StructureShape.new(name: 'Filter')
75
78
  FilterCriteria = Shapes::StructureShape.new(name: 'FilterCriteria')
76
79
  FilterList = Shapes::ListShape.new(name: 'FilterList')
80
+ FirehoseArn = Shapes::StringShape.new(name: 'FirehoseArn')
81
+ FirehoseLogDestination = Shapes::StructureShape.new(name: 'FirehoseLogDestination')
82
+ FirehoseLogDestinationParameters = Shapes::StructureShape.new(name: 'FirehoseLogDestinationParameters')
77
83
  HeaderKey = Shapes::StringShape.new(name: 'HeaderKey')
78
84
  HeaderParametersMap = Shapes::MapShape.new(name: 'HeaderParametersMap')
79
85
  HeaderValue = Shapes::StringShape.new(name: 'HeaderValue')
86
+ IncludeExecutionData = Shapes::ListShape.new(name: 'IncludeExecutionData')
87
+ IncludeExecutionDataOption = Shapes::StringShape.new(name: 'IncludeExecutionDataOption')
80
88
  InputTemplate = Shapes::StringShape.new(name: 'InputTemplate')
81
89
  Integer = Shapes::IntegerShape.new(name: 'Integer')
82
90
  InternalException = Shapes::StructureShape.new(name: 'InternalException')
@@ -94,6 +102,7 @@ module Aws::Pipes
94
102
  ListPipesResponse = Shapes::StructureShape.new(name: 'ListPipesResponse')
95
103
  ListTagsForResourceRequest = Shapes::StructureShape.new(name: 'ListTagsForResourceRequest')
96
104
  ListTagsForResourceResponse = Shapes::StructureShape.new(name: 'ListTagsForResourceResponse')
105
+ LogLevel = Shapes::StringShape.new(name: 'LogLevel')
97
106
  LogStreamName = Shapes::StringShape.new(name: 'LogStreamName')
98
107
  MQBrokerAccessCredentials = Shapes::UnionShape.new(name: 'MQBrokerAccessCredentials')
99
108
  MQBrokerQueueName = Shapes::StringShape.new(name: 'MQBrokerQueueName')
@@ -117,6 +126,8 @@ module Aws::Pipes
117
126
  PipeEnrichmentHttpParameters = Shapes::StructureShape.new(name: 'PipeEnrichmentHttpParameters')
118
127
  PipeEnrichmentParameters = Shapes::StructureShape.new(name: 'PipeEnrichmentParameters')
119
128
  PipeList = Shapes::ListShape.new(name: 'PipeList')
129
+ PipeLogConfiguration = Shapes::StructureShape.new(name: 'PipeLogConfiguration')
130
+ PipeLogConfigurationParameters = Shapes::StructureShape.new(name: 'PipeLogConfigurationParameters')
120
131
  PipeName = Shapes::StringShape.new(name: 'PipeName')
121
132
  PipeSourceActiveMQBrokerParameters = Shapes::StructureShape.new(name: 'PipeSourceActiveMQBrokerParameters')
122
133
  PipeSourceDynamoDBStreamParameters = Shapes::StructureShape.new(name: 'PipeSourceDynamoDBStreamParameters')
@@ -158,6 +169,12 @@ module Aws::Pipes
158
169
  RequestedPipeStateDescribeResponse = Shapes::StringShape.new(name: 'RequestedPipeStateDescribeResponse')
159
170
  ResourceArn = Shapes::StringShape.new(name: 'ResourceArn')
160
171
  RoleArn = Shapes::StringShape.new(name: 'RoleArn')
172
+ S3LogDestination = Shapes::StructureShape.new(name: 'S3LogDestination')
173
+ S3LogDestinationParameters = Shapes::StructureShape.new(name: 'S3LogDestinationParameters')
174
+ S3LogDestinationParametersBucketNameString = Shapes::StringShape.new(name: 'S3LogDestinationParametersBucketNameString')
175
+ S3LogDestinationParametersBucketOwnerString = Shapes::StringShape.new(name: 'S3LogDestinationParametersBucketOwnerString')
176
+ S3LogDestinationParametersPrefixString = Shapes::StringShape.new(name: 'S3LogDestinationParametersPrefixString')
177
+ S3OutputFormat = Shapes::StringShape.new(name: 'S3OutputFormat')
161
178
  SageMakerPipelineParameter = Shapes::StructureShape.new(name: 'SageMakerPipelineParameter')
162
179
  SageMakerPipelineParameterList = Shapes::ListShape.new(name: 'SageMakerPipelineParameterList')
163
180
  SageMakerPipelineParameterName = Shapes::StringShape.new(name: 'SageMakerPipelineParameterName')
@@ -257,6 +274,12 @@ module Aws::Pipes
257
274
  CapacityProviderStrategyItem.add_member(:weight, Shapes::ShapeRef.new(shape: CapacityProviderStrategyItemWeight, location_name: "weight"))
258
275
  CapacityProviderStrategyItem.struct_class = Types::CapacityProviderStrategyItem
259
276
 
277
+ CloudwatchLogsLogDestination.add_member(:log_group_arn, Shapes::ShapeRef.new(shape: CloudwatchLogGroupArn, location_name: "LogGroupArn"))
278
+ CloudwatchLogsLogDestination.struct_class = Types::CloudwatchLogsLogDestination
279
+
280
+ CloudwatchLogsLogDestinationParameters.add_member(:log_group_arn, Shapes::ShapeRef.new(shape: CloudwatchLogGroupArn, required: true, location_name: "LogGroupArn"))
281
+ CloudwatchLogsLogDestinationParameters.struct_class = Types::CloudwatchLogsLogDestinationParameters
282
+
260
283
  ConflictException.add_member(:message, Shapes::ShapeRef.new(shape: String, required: true, location_name: "message"))
261
284
  ConflictException.add_member(:resource_id, Shapes::ShapeRef.new(shape: String, required: true, location_name: "resourceId"))
262
285
  ConflictException.add_member(:resource_type, Shapes::ShapeRef.new(shape: String, required: true, location_name: "resourceType"))
@@ -266,6 +289,7 @@ module Aws::Pipes
266
289
  CreatePipeRequest.add_member(:desired_state, Shapes::ShapeRef.new(shape: RequestedPipeState, location_name: "DesiredState"))
267
290
  CreatePipeRequest.add_member(:enrichment, Shapes::ShapeRef.new(shape: OptionalArn, location_name: "Enrichment"))
268
291
  CreatePipeRequest.add_member(:enrichment_parameters, Shapes::ShapeRef.new(shape: PipeEnrichmentParameters, location_name: "EnrichmentParameters"))
292
+ CreatePipeRequest.add_member(:log_configuration, Shapes::ShapeRef.new(shape: PipeLogConfigurationParameters, location_name: "LogConfiguration"))
269
293
  CreatePipeRequest.add_member(:name, Shapes::ShapeRef.new(shape: PipeName, required: true, location: "uri", location_name: "Name"))
270
294
  CreatePipeRequest.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleArn, required: true, location_name: "RoleArn"))
271
295
  CreatePipeRequest.add_member(:source, Shapes::ShapeRef.new(shape: ArnOrUrl, required: true, location_name: "Source"))
@@ -308,6 +332,7 @@ module Aws::Pipes
308
332
  DescribePipeResponse.add_member(:enrichment, Shapes::ShapeRef.new(shape: OptionalArn, location_name: "Enrichment"))
309
333
  DescribePipeResponse.add_member(:enrichment_parameters, Shapes::ShapeRef.new(shape: PipeEnrichmentParameters, location_name: "EnrichmentParameters"))
310
334
  DescribePipeResponse.add_member(:last_modified_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LastModifiedTime"))
335
+ DescribePipeResponse.add_member(:log_configuration, Shapes::ShapeRef.new(shape: PipeLogConfiguration, location_name: "LogConfiguration"))
311
336
  DescribePipeResponse.add_member(:name, Shapes::ShapeRef.new(shape: PipeName, location_name: "Name"))
312
337
  DescribePipeResponse.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleArn, location_name: "RoleArn"))
313
338
  DescribePipeResponse.add_member(:source, Shapes::ShapeRef.new(shape: ArnOrUrl, location_name: "Source"))
@@ -376,9 +401,17 @@ module Aws::Pipes
376
401
 
377
402
  FilterList.member = Shapes::ShapeRef.new(shape: Filter)
378
403
 
404
+ FirehoseLogDestination.add_member(:delivery_stream_arn, Shapes::ShapeRef.new(shape: FirehoseArn, location_name: "DeliveryStreamArn"))
405
+ FirehoseLogDestination.struct_class = Types::FirehoseLogDestination
406
+
407
+ FirehoseLogDestinationParameters.add_member(:delivery_stream_arn, Shapes::ShapeRef.new(shape: FirehoseArn, required: true, location_name: "DeliveryStreamArn"))
408
+ FirehoseLogDestinationParameters.struct_class = Types::FirehoseLogDestinationParameters
409
+
379
410
  HeaderParametersMap.key = Shapes::ShapeRef.new(shape: HeaderKey)
380
411
  HeaderParametersMap.value = Shapes::ShapeRef.new(shape: HeaderValue)
381
412
 
413
+ IncludeExecutionData.member = Shapes::ShapeRef.new(shape: IncludeExecutionDataOption)
414
+
382
415
  InternalException.add_member(:message, Shapes::ShapeRef.new(shape: String, required: true, location_name: "message"))
383
416
  InternalException.add_member(:retry_after_seconds, Shapes::ShapeRef.new(shape: Integer, location: "header", location_name: "Retry-After"))
384
417
  InternalException.struct_class = Types::InternalException
@@ -449,6 +482,20 @@ module Aws::Pipes
449
482
 
450
483
  PipeList.member = Shapes::ShapeRef.new(shape: Pipe)
451
484
 
485
+ PipeLogConfiguration.add_member(:cloudwatch_logs_log_destination, Shapes::ShapeRef.new(shape: CloudwatchLogsLogDestination, location_name: "CloudwatchLogsLogDestination"))
486
+ PipeLogConfiguration.add_member(:firehose_log_destination, Shapes::ShapeRef.new(shape: FirehoseLogDestination, location_name: "FirehoseLogDestination"))
487
+ PipeLogConfiguration.add_member(:include_execution_data, Shapes::ShapeRef.new(shape: IncludeExecutionData, location_name: "IncludeExecutionData"))
488
+ PipeLogConfiguration.add_member(:level, Shapes::ShapeRef.new(shape: LogLevel, location_name: "Level"))
489
+ PipeLogConfiguration.add_member(:s3_log_destination, Shapes::ShapeRef.new(shape: S3LogDestination, location_name: "S3LogDestination"))
490
+ PipeLogConfiguration.struct_class = Types::PipeLogConfiguration
491
+
492
+ PipeLogConfigurationParameters.add_member(:cloudwatch_logs_log_destination, Shapes::ShapeRef.new(shape: CloudwatchLogsLogDestinationParameters, location_name: "CloudwatchLogsLogDestination"))
493
+ PipeLogConfigurationParameters.add_member(:firehose_log_destination, Shapes::ShapeRef.new(shape: FirehoseLogDestinationParameters, location_name: "FirehoseLogDestination"))
494
+ PipeLogConfigurationParameters.add_member(:include_execution_data, Shapes::ShapeRef.new(shape: IncludeExecutionData, location_name: "IncludeExecutionData"))
495
+ PipeLogConfigurationParameters.add_member(:level, Shapes::ShapeRef.new(shape: LogLevel, required: true, location_name: "Level"))
496
+ PipeLogConfigurationParameters.add_member(:s3_log_destination, Shapes::ShapeRef.new(shape: S3LogDestinationParameters, location_name: "S3LogDestination"))
497
+ PipeLogConfigurationParameters.struct_class = Types::PipeLogConfigurationParameters
498
+
452
499
  PipeSourceActiveMQBrokerParameters.add_member(:batch_size, Shapes::ShapeRef.new(shape: LimitMax10000, location_name: "BatchSize"))
453
500
  PipeSourceActiveMQBrokerParameters.add_member(:credentials, Shapes::ShapeRef.new(shape: MQBrokerAccessCredentials, required: true, location_name: "Credentials"))
454
501
  PipeSourceActiveMQBrokerParameters.add_member(:maximum_batching_window_in_seconds, Shapes::ShapeRef.new(shape: MaximumBatchingWindowInSeconds, location_name: "MaximumBatchingWindowInSeconds"))
@@ -611,6 +658,18 @@ module Aws::Pipes
611
658
  QueryStringParametersMap.key = Shapes::ShapeRef.new(shape: QueryStringKey)
612
659
  QueryStringParametersMap.value = Shapes::ShapeRef.new(shape: QueryStringValue)
613
660
 
661
+ S3LogDestination.add_member(:bucket_name, Shapes::ShapeRef.new(shape: String, location_name: "BucketName"))
662
+ S3LogDestination.add_member(:bucket_owner, Shapes::ShapeRef.new(shape: String, location_name: "BucketOwner"))
663
+ S3LogDestination.add_member(:output_format, Shapes::ShapeRef.new(shape: S3OutputFormat, location_name: "OutputFormat"))
664
+ S3LogDestination.add_member(:prefix, Shapes::ShapeRef.new(shape: String, location_name: "Prefix"))
665
+ S3LogDestination.struct_class = Types::S3LogDestination
666
+
667
+ S3LogDestinationParameters.add_member(:bucket_name, Shapes::ShapeRef.new(shape: S3LogDestinationParametersBucketNameString, required: true, location_name: "BucketName"))
668
+ S3LogDestinationParameters.add_member(:bucket_owner, Shapes::ShapeRef.new(shape: S3LogDestinationParametersBucketOwnerString, required: true, location_name: "BucketOwner"))
669
+ S3LogDestinationParameters.add_member(:output_format, Shapes::ShapeRef.new(shape: S3OutputFormat, location_name: "OutputFormat"))
670
+ S3LogDestinationParameters.add_member(:prefix, Shapes::ShapeRef.new(shape: S3LogDestinationParametersPrefixString, location_name: "Prefix"))
671
+ S3LogDestinationParameters.struct_class = Types::S3LogDestinationParameters
672
+
614
673
  SageMakerPipelineParameter.add_member(:name, Shapes::ShapeRef.new(shape: SageMakerPipelineParameterName, required: true, location_name: "Name"))
615
674
  SageMakerPipelineParameter.add_member(:value, Shapes::ShapeRef.new(shape: SageMakerPipelineParameterValue, required: true, location_name: "Value"))
616
675
  SageMakerPipelineParameter.struct_class = Types::SageMakerPipelineParameter
@@ -707,6 +766,7 @@ module Aws::Pipes
707
766
  UpdatePipeRequest.add_member(:desired_state, Shapes::ShapeRef.new(shape: RequestedPipeState, location_name: "DesiredState"))
708
767
  UpdatePipeRequest.add_member(:enrichment, Shapes::ShapeRef.new(shape: OptionalArn, location_name: "Enrichment"))
709
768
  UpdatePipeRequest.add_member(:enrichment_parameters, Shapes::ShapeRef.new(shape: PipeEnrichmentParameters, location_name: "EnrichmentParameters"))
769
+ UpdatePipeRequest.add_member(:log_configuration, Shapes::ShapeRef.new(shape: PipeLogConfigurationParameters, location_name: "LogConfiguration"))
710
770
  UpdatePipeRequest.add_member(:name, Shapes::ShapeRef.new(shape: PipeName, required: true, location: "uri", location_name: "Name"))
711
771
  UpdatePipeRequest.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleArn, required: true, location_name: "RoleArn"))
712
772
  UpdatePipeRequest.add_member(:source_parameters, Shapes::ShapeRef.new(shape: UpdatePipeSourceParameters, location_name: "SourceParameters"))
@@ -32,7 +32,7 @@ module Aws::Pipes
32
32
  raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
33
33
  end
34
34
  if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
35
- if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
35
+ if Aws::Endpoints::Matchers.boolean_equals?(Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"), true)
36
36
  return Aws::Endpoints::Endpoint.new(url: "https://pipes-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
37
37
  end
38
38
  raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
@@ -385,6 +385,38 @@ module Aws::Pipes
385
385
  include Aws::Structure
386
386
  end
387
387
 
388
+ # The Amazon CloudWatch Logs logging configuration settings for the
389
+ # pipe.
390
+ #
391
+ # @!attribute [rw] log_group_arn
392
+ # The Amazon Web Services Resource Name (ARN) for the CloudWatch log
393
+ # group to which EventBridge sends the log records.
394
+ # @return [String]
395
+ #
396
+ # @see http://docs.aws.amazon.com/goto/WebAPI/pipes-2015-10-07/CloudwatchLogsLogDestination AWS API Documentation
397
+ #
398
+ class CloudwatchLogsLogDestination < Struct.new(
399
+ :log_group_arn)
400
+ SENSITIVE = []
401
+ include Aws::Structure
402
+ end
403
+
404
+ # The Amazon CloudWatch Logs logging configuration settings for the
405
+ # pipe.
406
+ #
407
+ # @!attribute [rw] log_group_arn
408
+ # The Amazon Web Services Resource Name (ARN) for the CloudWatch log
409
+ # group to which EventBridge sends the log records.
410
+ # @return [String]
411
+ #
412
+ # @see http://docs.aws.amazon.com/goto/WebAPI/pipes-2015-10-07/CloudwatchLogsLogDestinationParameters AWS API Documentation
413
+ #
414
+ class CloudwatchLogsLogDestinationParameters < Struct.new(
415
+ :log_group_arn)
416
+ SENSITIVE = []
417
+ include Aws::Structure
418
+ end
419
+
388
420
  # An action you attempted resulted in an exception.
389
421
  #
390
422
  # @!attribute [rw] message
@@ -424,6 +456,10 @@ module Aws::Pipes
424
456
  # The parameters required to set up enrichment on your pipe.
425
457
  # @return [Types::PipeEnrichmentParameters]
426
458
  #
459
+ # @!attribute [rw] log_configuration
460
+ # The logging configuration settings for the pipe.
461
+ # @return [Types::PipeLogConfigurationParameters]
462
+ #
427
463
  # @!attribute [rw] name
428
464
  # The name of the pipe.
429
465
  # @return [String]
@@ -450,6 +486,14 @@ module Aws::Pipes
450
486
  #
451
487
  # @!attribute [rw] target_parameters
452
488
  # The parameters required to set up a target for your pipe.
489
+ #
490
+ # For more information about pipe target parameters, including how to
491
+ # use dynamic path parameters, see [Target parameters][1] in the
492
+ # *Amazon EventBridge User Guide*.
493
+ #
494
+ #
495
+ #
496
+ # [1]: https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-pipes-event-target.html
453
497
  # @return [Types::PipeTargetParameters]
454
498
  #
455
499
  # @see http://docs.aws.amazon.com/goto/WebAPI/pipes-2015-10-07/CreatePipeRequest AWS API Documentation
@@ -459,6 +503,7 @@ module Aws::Pipes
459
503
  :desired_state,
460
504
  :enrichment,
461
505
  :enrichment_parameters,
506
+ :log_configuration,
462
507
  :name,
463
508
  :role_arn,
464
509
  :source,
@@ -516,8 +561,10 @@ module Aws::Pipes
516
561
  # dead-letter queue configuration.
517
562
  #
518
563
  # @!attribute [rw] arn
519
- # The ARN of the Amazon SQS queue specified as the target for the
520
- # dead-letter queue.
564
+ # The ARN of the specified target for the dead-letter queue.
565
+ #
566
+ # For Amazon Kinesis stream and Amazon DynamoDB stream sources,
567
+ # specify either an Amazon SNS topic or Amazon SQS queue ARN.
521
568
  # @return [String]
522
569
  #
523
570
  # @see http://docs.aws.amazon.com/goto/WebAPI/pipes-2015-10-07/DeadLetterConfig AWS API Documentation
@@ -631,6 +678,10 @@ module Aws::Pipes
631
678
  # [1]: https://www.w3.org/TR/NOTE-datetime
632
679
  # @return [Time]
633
680
  #
681
+ # @!attribute [rw] log_configuration
682
+ # The logging configuration settings for the pipe.
683
+ # @return [Types::PipeLogConfiguration]
684
+ #
634
685
  # @!attribute [rw] name
635
686
  # The name of the pipe.
636
687
  # @return [String]
@@ -661,6 +712,14 @@ module Aws::Pipes
661
712
  #
662
713
  # @!attribute [rw] target_parameters
663
714
  # The parameters required to set up a target for your pipe.
715
+ #
716
+ # For more information about pipe target parameters, including how to
717
+ # use dynamic path parameters, see [Target parameters][1] in the
718
+ # *Amazon EventBridge User Guide*.
719
+ #
720
+ #
721
+ #
722
+ # [1]: https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-pipes-event-target.html
664
723
  # @return [Types::PipeTargetParameters]
665
724
  #
666
725
  # @see http://docs.aws.amazon.com/goto/WebAPI/pipes-2015-10-07/DescribePipeResponse AWS API Documentation
@@ -674,6 +733,7 @@ module Aws::Pipes
674
733
  :enrichment,
675
734
  :enrichment_parameters,
676
735
  :last_modified_time,
736
+ :log_configuration,
677
737
  :name,
678
738
  :role_arn,
679
739
  :source,
@@ -1011,9 +1071,13 @@ module Aws::Pipes
1011
1071
  include Aws::Structure
1012
1072
  end
1013
1073
 
1014
- # The collection of event patterns used to filter events. For more
1015
- # information, see [Events and Event Patterns][1] in the *Amazon
1016
- # EventBridge User Guide*.
1074
+ # The collection of event patterns used to filter events.
1075
+ #
1076
+ # To remove a filter, specify a `FilterCriteria` object with an empty
1077
+ # array of `Filter` objects.
1078
+ #
1079
+ # For more information, see [Events and Event Patterns][1] in the
1080
+ # *Amazon EventBridge User Guide*.
1017
1081
  #
1018
1082
  #
1019
1083
  #
@@ -1031,6 +1095,39 @@ module Aws::Pipes
1031
1095
  include Aws::Structure
1032
1096
  end
1033
1097
 
1098
+ # The Amazon Kinesis Data Firehose logging configuration settings for
1099
+ # the pipe.
1100
+ #
1101
+ # @!attribute [rw] delivery_stream_arn
1102
+ # The Amazon Resource Name (ARN) of the Kinesis Data Firehose delivery
1103
+ # stream to which EventBridge delivers the pipe log records.
1104
+ # @return [String]
1105
+ #
1106
+ # @see http://docs.aws.amazon.com/goto/WebAPI/pipes-2015-10-07/FirehoseLogDestination AWS API Documentation
1107
+ #
1108
+ class FirehoseLogDestination < Struct.new(
1109
+ :delivery_stream_arn)
1110
+ SENSITIVE = []
1111
+ include Aws::Structure
1112
+ end
1113
+
1114
+ # The Amazon Kinesis Data Firehose logging configuration settings for
1115
+ # the pipe.
1116
+ #
1117
+ # @!attribute [rw] delivery_stream_arn
1118
+ # Specifies the Amazon Resource Name (ARN) of the Kinesis Data
1119
+ # Firehose delivery stream to which EventBridge delivers the pipe log
1120
+ # records.
1121
+ # @return [String]
1122
+ #
1123
+ # @see http://docs.aws.amazon.com/goto/WebAPI/pipes-2015-10-07/FirehoseLogDestinationParameters AWS API Documentation
1124
+ #
1125
+ class FirehoseLogDestinationParameters < Struct.new(
1126
+ :delivery_stream_arn)
1127
+ SENSITIVE = []
1128
+ include Aws::Structure
1129
+ end
1130
+
1034
1131
  # This exception occurs due to unexpected causes.
1035
1132
  #
1036
1133
  # @!attribute [rw] message
@@ -1345,6 +1442,8 @@ module Aws::Pipes
1345
1442
  # see [The JavaScript Object Notation (JSON) Data Interchange
1346
1443
  # Format][1].
1347
1444
  #
1445
+ # To remove an input template, specify an empty string.
1446
+ #
1348
1447
  #
1349
1448
  #
1350
1449
  # [1]: http://www.rfc-editor.org/rfc/rfc7159.txt
@@ -1359,6 +1458,132 @@ module Aws::Pipes
1359
1458
  include Aws::Structure
1360
1459
  end
1361
1460
 
1461
+ # The logging configuration settings for the pipe.
1462
+ #
1463
+ # @!attribute [rw] cloudwatch_logs_log_destination
1464
+ # The Amazon CloudWatch Logs logging configuration settings for the
1465
+ # pipe.
1466
+ # @return [Types::CloudwatchLogsLogDestination]
1467
+ #
1468
+ # @!attribute [rw] firehose_log_destination
1469
+ # The Amazon Kinesis Data Firehose logging configuration settings for
1470
+ # the pipe.
1471
+ # @return [Types::FirehoseLogDestination]
1472
+ #
1473
+ # @!attribute [rw] include_execution_data
1474
+ # Whether the execution data (specifically, the `payload`,
1475
+ # `awsRequest`, and `awsResponse` fields) is included in the log
1476
+ # messages for this pipe.
1477
+ #
1478
+ # This applies to all log destinations for the pipe.
1479
+ #
1480
+ # For more information, see [Including execution data in logs][1] in
1481
+ # the *Amazon EventBridge User Guide*.
1482
+ #
1483
+ #
1484
+ #
1485
+ # [1]: https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-pipes-logs.html#eb-pipes-logs-execution-data
1486
+ # @return [Array<String>]
1487
+ #
1488
+ # @!attribute [rw] level
1489
+ # The level of logging detail to include. This applies to all log
1490
+ # destinations for the pipe.
1491
+ # @return [String]
1492
+ #
1493
+ # @!attribute [rw] s3_log_destination
1494
+ # The Amazon S3 logging configuration settings for the pipe.
1495
+ # @return [Types::S3LogDestination]
1496
+ #
1497
+ # @see http://docs.aws.amazon.com/goto/WebAPI/pipes-2015-10-07/PipeLogConfiguration AWS API Documentation
1498
+ #
1499
+ class PipeLogConfiguration < Struct.new(
1500
+ :cloudwatch_logs_log_destination,
1501
+ :firehose_log_destination,
1502
+ :include_execution_data,
1503
+ :level,
1504
+ :s3_log_destination)
1505
+ SENSITIVE = []
1506
+ include Aws::Structure
1507
+ end
1508
+
1509
+ # Specifies the logging configuration settings for the pipe.
1510
+ #
1511
+ # When you call `UpdatePipe`, EventBridge updates the fields in the
1512
+ # `PipeLogConfigurationParameters` object atomically as one and
1513
+ # overrides existing values. This is by design. If you don't specify an
1514
+ # optional field in any of the Amazon Web Services service parameters
1515
+ # objects (`CloudwatchLogsLogDestinationParameters`,
1516
+ # `FirehoseLogDestinationParameters`, or `S3LogDestinationParameters`),
1517
+ # EventBridge sets that field to its system-default value during the
1518
+ # update.
1519
+ #
1520
+ # For example, suppose when you created the pipe you specified a Kinesis
1521
+ # Data Firehose stream log destination. You then update the pipe to add
1522
+ # an Amazon S3 log destination. In addition to specifying the
1523
+ # `S3LogDestinationParameters` for the new log destination, you must
1524
+ # also specify the fields in the `FirehoseLogDestinationParameters`
1525
+ # object in order to retain the Kinesis Data Firehose stream log
1526
+ # destination.
1527
+ #
1528
+ # For more information on generating pipe log records, see [Log
1529
+ # EventBridge Pipes](eventbridge/latest/userguide/eb-pipes-logs.html) in
1530
+ # the *Amazon EventBridge User Guide*.
1531
+ #
1532
+ # @!attribute [rw] cloudwatch_logs_log_destination
1533
+ # The Amazon CloudWatch Logs logging configuration settings for the
1534
+ # pipe.
1535
+ # @return [Types::CloudwatchLogsLogDestinationParameters]
1536
+ #
1537
+ # @!attribute [rw] firehose_log_destination
1538
+ # The Amazon Kinesis Data Firehose logging configuration settings for
1539
+ # the pipe.
1540
+ # @return [Types::FirehoseLogDestinationParameters]
1541
+ #
1542
+ # @!attribute [rw] include_execution_data
1543
+ # Specify `ON` to include the execution data (specifically, the
1544
+ # `payload` and `awsRequest` fields) in the log messages for this
1545
+ # pipe.
1546
+ #
1547
+ # This applies to all log destinations for the pipe.
1548
+ #
1549
+ # For more information, see [Including execution data in logs][1] in
1550
+ # the *Amazon EventBridge User Guide*.
1551
+ #
1552
+ # The default is `OFF`.
1553
+ #
1554
+ #
1555
+ #
1556
+ # [1]: https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-pipes-logs.html#eb-pipes-logs-execution-data
1557
+ # @return [Array<String>]
1558
+ #
1559
+ # @!attribute [rw] level
1560
+ # The level of logging detail to include. This applies to all log
1561
+ # destinations for the pipe.
1562
+ #
1563
+ # For more information, see [Specifying EventBridge Pipes log
1564
+ # level][1] in the *Amazon EventBridge User Guide*.
1565
+ #
1566
+ #
1567
+ #
1568
+ # [1]: https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-pipes-logs.html#eb-pipes-logs-level
1569
+ # @return [String]
1570
+ #
1571
+ # @!attribute [rw] s3_log_destination
1572
+ # The Amazon S3 logging configuration settings for the pipe.
1573
+ # @return [Types::S3LogDestinationParameters]
1574
+ #
1575
+ # @see http://docs.aws.amazon.com/goto/WebAPI/pipes-2015-10-07/PipeLogConfigurationParameters AWS API Documentation
1576
+ #
1577
+ class PipeLogConfigurationParameters < Struct.new(
1578
+ :cloudwatch_logs_log_destination,
1579
+ :firehose_log_destination,
1580
+ :include_execution_data,
1581
+ :level,
1582
+ :s3_log_destination)
1583
+ SENSITIVE = []
1584
+ include Aws::Structure
1585
+ end
1586
+
1362
1587
  # The parameters for using an Active MQ broker as a source.
1363
1588
  #
1364
1589
  # @!attribute [rw] batch_size
@@ -1564,9 +1789,13 @@ module Aws::Pipes
1564
1789
  # @return [Types::PipeSourceDynamoDBStreamParameters]
1565
1790
  #
1566
1791
  # @!attribute [rw] filter_criteria
1567
- # The collection of event patterns used to filter events. For more
1568
- # information, see [Events and Event Patterns][1] in the *Amazon
1569
- # EventBridge User Guide*.
1792
+ # The collection of event patterns used to filter events.
1793
+ #
1794
+ # To remove a filter, specify a `FilterCriteria` object with an empty
1795
+ # array of `Filter` objects.
1796
+ #
1797
+ # For more information, see [Events and Event Patterns][1] in the
1798
+ # *Amazon EventBridge User Guide*.
1570
1799
  #
1571
1800
  #
1572
1801
  #
@@ -1953,8 +2182,6 @@ module Aws::Pipes
1953
2182
  # The URL subdomain of the endpoint. For example, if the URL for
1954
2183
  # Endpoint is https://abcde.veo.endpoints.event.amazonaws.com, then
1955
2184
  # the EndpointId is `abcde.veo`.
1956
- #
1957
- # When using Java, you must include `auth-crt` on the class path.
1958
2185
  # @return [String]
1959
2186
  #
1960
2187
  # @!attribute [rw] resources
@@ -2017,7 +2244,7 @@ module Aws::Pipes
2017
2244
  include Aws::Structure
2018
2245
  end
2019
2246
 
2020
- # The parameters for using a Kinesis stream as a source.
2247
+ # The parameters for using a Kinesis stream as a target.
2021
2248
  #
2022
2249
  # @!attribute [rw] partition_key
2023
2250
  # Determines which shard in the stream the data record is assigned to.
@@ -2042,19 +2269,24 @@ module Aws::Pipes
2042
2269
  # The parameters for using a Lambda function as a target.
2043
2270
  #
2044
2271
  # @!attribute [rw] invocation_type
2045
- # Choose from the following options.
2272
+ # Specify whether to invoke the function synchronously or
2273
+ # asynchronously.
2274
+ #
2275
+ # * `REQUEST_RESPONSE` (default) - Invoke synchronously. This
2276
+ # corresponds to the `RequestResponse` option in the
2277
+ # `InvocationType` parameter for the Lambda [Invoke][1] API.
2278
+ #
2279
+ # * `FIRE_AND_FORGET` - Invoke asynchronously. This corresponds to the
2280
+ # `Event` option in the `InvocationType` parameter for the Lambda
2281
+ # [Invoke][1] API.
2282
+ #
2283
+ # For more information, see [Invocation types][2] in the *Amazon
2284
+ # EventBridge User Guide*.
2046
2285
  #
2047
- # * `RequestResponse` (default) - Invoke the function synchronously.
2048
- # Keep the connection open until the function returns a response or
2049
- # times out. The API response includes the function response and
2050
- # additional data.
2051
2286
  #
2052
- # * `Event` - Invoke the function asynchronously. Send events that
2053
- # fail multiple times to the function's dead-letter queue (if it's
2054
- # configured). The API response only includes a status code.
2055
2287
  #
2056
- # * `DryRun` - Validate parameter values and verify that the user or
2057
- # role has permission to invoke the function.
2288
+ # [1]: https://docs.aws.amazon.com/lambda/latest/dg/API_Invoke.html#API_Invoke_RequestSyntax
2289
+ # [2]: https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-pipes.html#pipes-invocation
2058
2290
  # @return [String]
2059
2291
  #
2060
2292
  # @see http://docs.aws.amazon.com/goto/WebAPI/pipes-2015-10-07/PipeTargetLambdaFunctionParameters AWS API Documentation
@@ -2067,6 +2299,14 @@ module Aws::Pipes
2067
2299
 
2068
2300
  # The parameters required to set up a target for your pipe.
2069
2301
  #
2302
+ # For more information about pipe target parameters, including how to
2303
+ # use dynamic path parameters, see [Target parameters][1] in the *Amazon
2304
+ # EventBridge User Guide*.
2305
+ #
2306
+ #
2307
+ #
2308
+ # [1]: https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-pipes-event-target.html
2309
+ #
2070
2310
  # @!attribute [rw] batch_job_parameters
2071
2311
  # The parameters for using an Batch job as a target.
2072
2312
  # @return [Types::PipeTargetBatchJobParameters]
@@ -2093,13 +2333,15 @@ module Aws::Pipes
2093
2333
  # event itself is passed to the target. For more information, see [The
2094
2334
  # JavaScript Object Notation (JSON) Data Interchange Format][1].
2095
2335
  #
2336
+ # To remove an input template, specify an empty string.
2337
+ #
2096
2338
  #
2097
2339
  #
2098
2340
  # [1]: http://www.rfc-editor.org/rfc/rfc7159.txt
2099
2341
  # @return [String]
2100
2342
  #
2101
2343
  # @!attribute [rw] kinesis_stream_parameters
2102
- # The parameters for using a Kinesis stream as a source.
2344
+ # The parameters for using a Kinesis stream as a target.
2103
2345
  # @return [Types::PipeTargetKinesisStreamParameters]
2104
2346
  #
2105
2347
  # @!attribute [rw] lambda_function_parameters
@@ -2109,7 +2351,7 @@ module Aws::Pipes
2109
2351
  # @!attribute [rw] redshift_data_parameters
2110
2352
  # These are custom parameters to be used when the target is a Amazon
2111
2353
  # Redshift cluster to invoke the Amazon Redshift Data API
2112
- # ExecuteStatement.
2354
+ # BatchExecuteStatement.
2113
2355
  # @return [Types::PipeTargetRedshiftDataParameters]
2114
2356
  #
2115
2357
  # @!attribute [rw] sage_maker_pipeline_parameters
@@ -2117,7 +2359,7 @@ module Aws::Pipes
2117
2359
  # @return [Types::PipeTargetSageMakerPipelineParameters]
2118
2360
  #
2119
2361
  # @!attribute [rw] sqs_queue_parameters
2120
- # The parameters for using a Amazon SQS stream as a source.
2362
+ # The parameters for using a Amazon SQS stream as a target.
2121
2363
  # @return [Types::PipeTargetSqsQueueParameters]
2122
2364
  #
2123
2365
  # @!attribute [rw] step_function_state_machine_parameters
@@ -2145,7 +2387,7 @@ module Aws::Pipes
2145
2387
 
2146
2388
  # These are custom parameters to be used when the target is a Amazon
2147
2389
  # Redshift cluster to invoke the Amazon Redshift Data API
2148
- # ExecuteStatement.
2390
+ # BatchExecuteStatement.
2149
2391
  #
2150
2392
  # @!attribute [rw] database
2151
2393
  # The name of the database. Required when authenticating using
@@ -2159,7 +2401,7 @@ module Aws::Pipes
2159
2401
  #
2160
2402
  # @!attribute [rw] secret_manager_arn
2161
2403
  # The name or ARN of the secret that enables access to the database.
2162
- # Required when authenticating using SageMaker.
2404
+ # Required when authenticating using Secrets Manager.
2163
2405
  # @return [String]
2164
2406
  #
2165
2407
  # @!attribute [rw] sqls
@@ -2204,7 +2446,7 @@ module Aws::Pipes
2204
2446
  include Aws::Structure
2205
2447
  end
2206
2448
 
2207
- # The parameters for using a Amazon SQS stream as a source.
2449
+ # The parameters for using a Amazon SQS stream as a target.
2208
2450
  #
2209
2451
  # @!attribute [rw] message_deduplication_id
2210
2452
  # This parameter applies only to FIFO (first-in-first-out) queues.
@@ -2228,7 +2470,29 @@ module Aws::Pipes
2228
2470
  # The parameters for using a Step Functions state machine as a target.
2229
2471
  #
2230
2472
  # @!attribute [rw] invocation_type
2231
- # Specify whether to wait for the state machine to finish or not.
2473
+ # Specify whether to invoke the Step Functions state machine
2474
+ # synchronously or asynchronously.
2475
+ #
2476
+ # * `REQUEST_RESPONSE` (default) - Invoke synchronously. For more
2477
+ # information, see [StartSyncExecution][1] in the *Step Functions
2478
+ # API Reference*.
2479
+ #
2480
+ # <note markdown="1"> `REQUEST_RESPONSE` is not supported for `STANDARD` state machine
2481
+ # workflows.
2482
+ #
2483
+ # </note>
2484
+ #
2485
+ # * `FIRE_AND_FORGET` - Invoke asynchronously. For more information,
2486
+ # see [StartExecution][2] in the *Step Functions API Reference*.
2487
+ #
2488
+ # For more information, see [Invocation types][3] in the *Amazon
2489
+ # EventBridge User Guide*.
2490
+ #
2491
+ #
2492
+ #
2493
+ # [1]: https://docs.aws.amazon.com/step-functions/latest/apireference/API_StartSyncExecution.html
2494
+ # [2]: https://docs.aws.amazon.com/step-functions/latest/apireference/API_StartExecution.html
2495
+ # [3]: https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-pipes.html#pipes-invocation
2232
2496
  # @return [String]
2233
2497
  #
2234
2498
  # @see http://docs.aws.amazon.com/goto/WebAPI/pipes-2015-10-07/PipeTargetStateMachineParameters AWS API Documentation
@@ -2312,6 +2576,107 @@ module Aws::Pipes
2312
2576
  include Aws::Structure
2313
2577
  end
2314
2578
 
2579
+ # The Amazon S3 logging configuration settings for the pipe.
2580
+ #
2581
+ # @!attribute [rw] bucket_name
2582
+ # The name of the Amazon S3 bucket to which EventBridge delivers the
2583
+ # log records for the pipe.
2584
+ # @return [String]
2585
+ #
2586
+ # @!attribute [rw] bucket_owner
2587
+ # The Amazon Web Services account that owns the Amazon S3 bucket to
2588
+ # which EventBridge delivers the log records for the pipe.
2589
+ # @return [String]
2590
+ #
2591
+ # @!attribute [rw] output_format
2592
+ # The format EventBridge uses for the log records.
2593
+ #
2594
+ # * `json`: JSON
2595
+ #
2596
+ # * `plain`: Plain text
2597
+ #
2598
+ # * `w3c`: [W3C extended logging file format][1]
2599
+ #
2600
+ #
2601
+ #
2602
+ # [1]: https://www.w3.org/TR/WD-logfile
2603
+ # @return [String]
2604
+ #
2605
+ # @!attribute [rw] prefix
2606
+ # The prefix text with which to begin Amazon S3 log object names.
2607
+ #
2608
+ # For more information, see [Organizing objects using prefixes][1] in
2609
+ # the *Amazon Simple Storage Service User Guide*.
2610
+ #
2611
+ #
2612
+ #
2613
+ # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-prefixes.html
2614
+ # @return [String]
2615
+ #
2616
+ # @see http://docs.aws.amazon.com/goto/WebAPI/pipes-2015-10-07/S3LogDestination AWS API Documentation
2617
+ #
2618
+ class S3LogDestination < Struct.new(
2619
+ :bucket_name,
2620
+ :bucket_owner,
2621
+ :output_format,
2622
+ :prefix)
2623
+ SENSITIVE = []
2624
+ include Aws::Structure
2625
+ end
2626
+
2627
+ # The Amazon S3 logging configuration settings for the pipe.
2628
+ #
2629
+ # @!attribute [rw] bucket_name
2630
+ # Specifies the name of the Amazon S3 bucket to which EventBridge
2631
+ # delivers the log records for the pipe.
2632
+ # @return [String]
2633
+ #
2634
+ # @!attribute [rw] bucket_owner
2635
+ # Specifies the Amazon Web Services account that owns the Amazon S3
2636
+ # bucket to which EventBridge delivers the log records for the pipe.
2637
+ # @return [String]
2638
+ #
2639
+ # @!attribute [rw] output_format
2640
+ # How EventBridge should format the log records.
2641
+ #
2642
+ # * `json`: JSON
2643
+ #
2644
+ # * `plain`: Plain text
2645
+ #
2646
+ # * `w3c`: [W3C extended logging file format][1]
2647
+ #
2648
+ #
2649
+ #
2650
+ # [1]: https://www.w3.org/TR/WD-logfile
2651
+ # @return [String]
2652
+ #
2653
+ # @!attribute [rw] prefix
2654
+ # Specifies any prefix text with which to begin Amazon S3 log object
2655
+ # names.
2656
+ #
2657
+ # You can use prefixes to organize the data that you store in Amazon
2658
+ # S3 buckets. A prefix is a string of characters at the beginning of
2659
+ # the object key name. A prefix can be any length, subject to the
2660
+ # maximum length of the object key name (1,024 bytes). For more
2661
+ # information, see [Organizing objects using prefixes][1] in the
2662
+ # *Amazon Simple Storage Service User Guide*.
2663
+ #
2664
+ #
2665
+ #
2666
+ # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/using-prefixes.html
2667
+ # @return [String]
2668
+ #
2669
+ # @see http://docs.aws.amazon.com/goto/WebAPI/pipes-2015-10-07/S3LogDestinationParameters AWS API Documentation
2670
+ #
2671
+ class S3LogDestinationParameters < Struct.new(
2672
+ :bucket_name,
2673
+ :bucket_owner,
2674
+ :output_format,
2675
+ :prefix)
2676
+ SENSITIVE = []
2677
+ include Aws::Structure
2678
+ end
2679
+
2315
2680
  # Name/Value pair of a parameter to start execution of a SageMaker Model
2316
2681
  # Building Pipeline.
2317
2682
  #
@@ -2648,6 +3013,10 @@ module Aws::Pipes
2648
3013
  # The parameters required to set up enrichment on your pipe.
2649
3014
  # @return [Types::PipeEnrichmentParameters]
2650
3015
  #
3016
+ # @!attribute [rw] log_configuration
3017
+ # The logging configuration settings for the pipe.
3018
+ # @return [Types::PipeLogConfigurationParameters]
3019
+ #
2651
3020
  # @!attribute [rw] name
2652
3021
  # The name of the pipe.
2653
3022
  # @return [String]
@@ -2666,6 +3035,14 @@ module Aws::Pipes
2666
3035
  #
2667
3036
  # @!attribute [rw] target_parameters
2668
3037
  # The parameters required to set up a target for your pipe.
3038
+ #
3039
+ # For more information about pipe target parameters, including how to
3040
+ # use dynamic path parameters, see [Target parameters][1] in the
3041
+ # *Amazon EventBridge User Guide*.
3042
+ #
3043
+ #
3044
+ #
3045
+ # [1]: https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-pipes-event-target.html
2669
3046
  # @return [Types::PipeTargetParameters]
2670
3047
  #
2671
3048
  # @see http://docs.aws.amazon.com/goto/WebAPI/pipes-2015-10-07/UpdatePipeRequest AWS API Documentation
@@ -2675,6 +3052,7 @@ module Aws::Pipes
2675
3052
  :desired_state,
2676
3053
  :enrichment,
2677
3054
  :enrichment_parameters,
3055
+ :log_configuration,
2678
3056
  :name,
2679
3057
  :role_arn,
2680
3058
  :source_parameters,
@@ -2895,9 +3273,13 @@ module Aws::Pipes
2895
3273
  # @return [Types::UpdatePipeSourceDynamoDBStreamParameters]
2896
3274
  #
2897
3275
  # @!attribute [rw] filter_criteria
2898
- # The collection of event patterns used to filter events. For more
2899
- # information, see [Events and Event Patterns][1] in the *Amazon
2900
- # EventBridge User Guide*.
3276
+ # The collection of event patterns used to filter events.
3277
+ #
3278
+ # To remove a filter, specify a `FilterCriteria` object with an empty
3279
+ # array of `Filter` objects.
3280
+ #
3281
+ # For more information, see [Events and Event Patterns][1] in the
3282
+ # *Amazon EventBridge User Guide*.
2901
3283
  #
2902
3284
  #
2903
3285
  #
data/lib/aws-sdk-pipes.rb CHANGED
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-pipes/customizations'
52
52
  # @!group service
53
53
  module Aws::Pipes
54
54
 
55
- GEM_VERSION = '1.10.0'
55
+ GEM_VERSION = '1.11.0'
56
56
 
57
57
  end
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.10.0
4
+ version: 1.11.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: 2023-09-27 00:00:00.000000000 Z
11
+ date: 2023-11-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core