aws-sdk-eventbridge 1.22.0 → 1.23.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: 245908d4d2af755f0a291483e06dae3c3b8aaa28695b977e21ec038b990a08d4
4
- data.tar.gz: 98fc2b8183fbe535f778215a224d3fc0899722e2b7b8ba19836d5ae73cd32765
3
+ metadata.gz: bf8f36d86f23776eedac8c5d6adc6abbca22e2c56cb8d64953026efe6db2cbe5
4
+ data.tar.gz: 88707020be93e2726ddb46eb0d88f431eafcd07d977524899a58d3bb3a3b40c9
5
5
  SHA512:
6
- metadata.gz: 0f4233b498b513d44acf34530891cb64a912e15d6fcaaf2bf9d9e880e2dd8f7129640f745c7f64338f1290a7f40fedfb848628c08711d740297cd707c7e8a2f9
7
- data.tar.gz: a18f18567e57bb629255ceafea415737ae44104dc654d3a2b30ddf17a5f1988027af655ef607b9b8110319321eca6be5e3ca4b0e3f081c917c4d9a4b07ba82c7
6
+ metadata.gz: c8bf29b1cfc2f07c6c4fea831ea5491bc712e4bd29acd46bc96f5d063fa9dc029cb3e67daa793110906455a3f517e2851fdd5981720b847f5d9a2bf813aac16f
7
+ data.tar.gz: 8d41040f53490510de998abade7f7b30905e5e1649e01c38c0440f7f1e911e972c04dfb10d3465df4b5137dda181531a3321d245ca85b521b4c5e954ee8c3108
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.23.0 (2021-03-26)
5
+ ------------------
6
+
7
+ * Feature - Add support for SageMaker Model Builder Pipelines Targets to EventBridge
8
+
4
9
  1.22.0 (2021-03-10)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.22.0
1
+ 1.23.0
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-eventbridge/customizations'
48
48
  # @!group service
49
49
  module Aws::EventBridge
50
50
 
51
- GEM_VERSION = '1.22.0'
51
+ GEM_VERSION = '1.23.0'
52
52
 
53
53
  end
@@ -2069,6 +2069,9 @@ module Aws::EventBridge
2069
2069
  # resp.targets[0].redshift_data_parameters.sql #=> String
2070
2070
  # resp.targets[0].redshift_data_parameters.statement_name #=> String
2071
2071
  # resp.targets[0].redshift_data_parameters.with_event #=> Boolean
2072
+ # resp.targets[0].sage_maker_pipeline_parameters.pipeline_parameter_list #=> Array
2073
+ # resp.targets[0].sage_maker_pipeline_parameters.pipeline_parameter_list[0].name #=> String
2074
+ # resp.targets[0].sage_maker_pipeline_parameters.pipeline_parameter_list[0].value #=> String
2072
2075
  # resp.targets[0].dead_letter_config.arn #=> String
2073
2076
  # resp.targets[0].retry_policy.maximum_retry_attempts #=> Integer
2074
2077
  # resp.targets[0].retry_policy.maximum_event_age_in_seconds #=> Integer
@@ -2449,6 +2452,8 @@ module Aws::EventBridge
2449
2452
  #
2450
2453
  # * Custom/SaaS HTTPS APIs via EventBridge API Destinations
2451
2454
  #
2455
+ # * Amazon SageMaker Model Building Pipelines
2456
+ #
2452
2457
  # Creating rules with built-in targets is supported only in the AWS
2453
2458
  # Management Console. The built-in targets are `EC2 CreateSnapshot API
2454
2459
  # call`, `EC2 RebootInstances API call`, `EC2 StopInstances API call`,
@@ -2622,6 +2627,14 @@ module Aws::EventBridge
2622
2627
  # statement_name: "StatementName",
2623
2628
  # with_event: false,
2624
2629
  # },
2630
+ # sage_maker_pipeline_parameters: {
2631
+ # pipeline_parameter_list: [
2632
+ # {
2633
+ # name: "SageMakerPipelineParameterName", # required
2634
+ # value: "SageMakerPipelineParameterValue", # required
2635
+ # },
2636
+ # ],
2637
+ # },
2625
2638
  # dead_letter_config: {
2626
2639
  # arn: "ResourceArn",
2627
2640
  # },
@@ -3177,7 +3190,7 @@ module Aws::EventBridge
3177
3190
  params: params,
3178
3191
  config: config)
3179
3192
  context[:gem_name] = 'aws-sdk-eventbridge'
3180
- context[:gem_version] = '1.22.0'
3193
+ context[:gem_version] = '1.23.0'
3181
3194
  Seahorse::Client::Request.new(handlers, context)
3182
3195
  end
3183
3196
 
@@ -248,6 +248,11 @@ module Aws::EventBridge
248
248
  RunCommandTargetValue = Shapes::StringShape.new(name: 'RunCommandTargetValue')
249
249
  RunCommandTargetValues = Shapes::ListShape.new(name: 'RunCommandTargetValues')
250
250
  RunCommandTargets = Shapes::ListShape.new(name: 'RunCommandTargets')
251
+ SageMakerPipelineParameter = Shapes::StructureShape.new(name: 'SageMakerPipelineParameter')
252
+ SageMakerPipelineParameterList = Shapes::ListShape.new(name: 'SageMakerPipelineParameterList')
253
+ SageMakerPipelineParameterName = Shapes::StringShape.new(name: 'SageMakerPipelineParameterName')
254
+ SageMakerPipelineParameterValue = Shapes::StringShape.new(name: 'SageMakerPipelineParameterValue')
255
+ SageMakerPipelineParameters = Shapes::StructureShape.new(name: 'SageMakerPipelineParameters')
251
256
  ScheduleExpression = Shapes::StringShape.new(name: 'ScheduleExpression')
252
257
  SecretsManagerSecretArn = Shapes::StringShape.new(name: 'SecretsManagerSecretArn')
253
258
  Sql = Shapes::StringShape.new(name: 'Sql')
@@ -1014,6 +1019,15 @@ module Aws::EventBridge
1014
1019
 
1015
1020
  RunCommandTargets.member = Shapes::ShapeRef.new(shape: RunCommandTarget)
1016
1021
 
1022
+ SageMakerPipelineParameter.add_member(:name, Shapes::ShapeRef.new(shape: SageMakerPipelineParameterName, required: true, location_name: "Name"))
1023
+ SageMakerPipelineParameter.add_member(:value, Shapes::ShapeRef.new(shape: SageMakerPipelineParameterValue, required: true, location_name: "Value"))
1024
+ SageMakerPipelineParameter.struct_class = Types::SageMakerPipelineParameter
1025
+
1026
+ SageMakerPipelineParameterList.member = Shapes::ShapeRef.new(shape: SageMakerPipelineParameter)
1027
+
1028
+ SageMakerPipelineParameters.add_member(:pipeline_parameter_list, Shapes::ShapeRef.new(shape: SageMakerPipelineParameterList, location_name: "PipelineParameterList"))
1029
+ SageMakerPipelineParameters.struct_class = Types::SageMakerPipelineParameters
1030
+
1017
1031
  SqsParameters.add_member(:message_group_id, Shapes::ShapeRef.new(shape: MessageGroupId, location_name: "MessageGroupId"))
1018
1032
  SqsParameters.struct_class = Types::SqsParameters
1019
1033
 
@@ -1060,6 +1074,7 @@ module Aws::EventBridge
1060
1074
  Target.add_member(:sqs_parameters, Shapes::ShapeRef.new(shape: SqsParameters, location_name: "SqsParameters"))
1061
1075
  Target.add_member(:http_parameters, Shapes::ShapeRef.new(shape: HttpParameters, location_name: "HttpParameters"))
1062
1076
  Target.add_member(:redshift_data_parameters, Shapes::ShapeRef.new(shape: RedshiftDataParameters, location_name: "RedshiftDataParameters"))
1077
+ Target.add_member(:sage_maker_pipeline_parameters, Shapes::ShapeRef.new(shape: SageMakerPipelineParameters, location_name: "SageMakerPipelineParameters"))
1063
1078
  Target.add_member(:dead_letter_config, Shapes::ShapeRef.new(shape: DeadLetterConfig, location_name: "DeadLetterConfig"))
1064
1079
  Target.add_member(:retry_policy, Shapes::ShapeRef.new(shape: RetryPolicy, location_name: "RetryPolicy"))
1065
1080
  Target.struct_class = Types::Target
@@ -3865,6 +3865,14 @@ module Aws::EventBridge
3865
3865
  # statement_name: "StatementName",
3866
3866
  # with_event: false,
3867
3867
  # },
3868
+ # sage_maker_pipeline_parameters: {
3869
+ # pipeline_parameter_list: [
3870
+ # {
3871
+ # name: "SageMakerPipelineParameterName", # required
3872
+ # value: "SageMakerPipelineParameterValue", # required
3873
+ # },
3874
+ # ],
3875
+ # },
3868
3876
  # dead_letter_config: {
3869
3877
  # arn: "ResourceArn",
3870
3878
  # },
@@ -4373,6 +4381,64 @@ module Aws::EventBridge
4373
4381
  include Aws::Structure
4374
4382
  end
4375
4383
 
4384
+ # Name/Value pair of a parameter to start execution of a SageMaker Model
4385
+ # Building Pipeline.
4386
+ #
4387
+ # @note When making an API call, you may pass SageMakerPipelineParameter
4388
+ # data as a hash:
4389
+ #
4390
+ # {
4391
+ # name: "SageMakerPipelineParameterName", # required
4392
+ # value: "SageMakerPipelineParameterValue", # required
4393
+ # }
4394
+ #
4395
+ # @!attribute [rw] name
4396
+ # Name of parameter to start execution of a SageMaker Model Building
4397
+ # Pipeline.
4398
+ # @return [String]
4399
+ #
4400
+ # @!attribute [rw] value
4401
+ # Value of parameter to start execution of a SageMaker Model Building
4402
+ # Pipeline.
4403
+ # @return [String]
4404
+ #
4405
+ # @see http://docs.aws.amazon.com/goto/WebAPI/eventbridge-2015-10-07/SageMakerPipelineParameter AWS API Documentation
4406
+ #
4407
+ class SageMakerPipelineParameter < Struct.new(
4408
+ :name,
4409
+ :value)
4410
+ SENSITIVE = []
4411
+ include Aws::Structure
4412
+ end
4413
+
4414
+ # These are custom parameters to use when the target is a SageMaker
4415
+ # Model Building Pipeline that starts based on EventBridge events.
4416
+ #
4417
+ # @note When making an API call, you may pass SageMakerPipelineParameters
4418
+ # data as a hash:
4419
+ #
4420
+ # {
4421
+ # pipeline_parameter_list: [
4422
+ # {
4423
+ # name: "SageMakerPipelineParameterName", # required
4424
+ # value: "SageMakerPipelineParameterValue", # required
4425
+ # },
4426
+ # ],
4427
+ # }
4428
+ #
4429
+ # @!attribute [rw] pipeline_parameter_list
4430
+ # List of Parameter names and values for SageMaker Model Building
4431
+ # Pipeline execution.
4432
+ # @return [Array<Types::SageMakerPipelineParameter>]
4433
+ #
4434
+ # @see http://docs.aws.amazon.com/goto/WebAPI/eventbridge-2015-10-07/SageMakerPipelineParameters AWS API Documentation
4435
+ #
4436
+ class SageMakerPipelineParameters < Struct.new(
4437
+ :pipeline_parameter_list)
4438
+ SENSITIVE = []
4439
+ include Aws::Structure
4440
+ end
4441
+
4376
4442
  # This structure includes the custom parameter to be used when the
4377
4443
  # target is an SQS FIFO queue.
4378
4444
  #
@@ -4627,6 +4693,14 @@ module Aws::EventBridge
4627
4693
  # statement_name: "StatementName",
4628
4694
  # with_event: false,
4629
4695
  # },
4696
+ # sage_maker_pipeline_parameters: {
4697
+ # pipeline_parameter_list: [
4698
+ # {
4699
+ # name: "SageMakerPipelineParameterName", # required
4700
+ # value: "SageMakerPipelineParameterValue", # required
4701
+ # },
4702
+ # ],
4703
+ # },
4630
4704
  # dead_letter_config: {
4631
4705
  # arn: "ResourceArn",
4632
4706
  # },
@@ -4740,6 +4814,15 @@ module Aws::EventBridge
4740
4814
  # based on EventBridge events.
4741
4815
  # @return [Types::RedshiftDataParameters]
4742
4816
  #
4817
+ # @!attribute [rw] sage_maker_pipeline_parameters
4818
+ # Contains the SageMaker Model Building Pipeline parameters to start
4819
+ # execution of a SageMaker Model Building Pipeline.
4820
+ #
4821
+ # If you specify a SageMaker Model Building Pipeline as a target, you
4822
+ # can use this to specify parameters to start a pipeline execution
4823
+ # based on EventBridge events.
4824
+ # @return [Types::SageMakerPipelineParameters]
4825
+ #
4743
4826
  # @!attribute [rw] dead_letter_config
4744
4827
  # The `DeadLetterConfig` that defines the target queue to send
4745
4828
  # dead-letter queue events to.
@@ -4766,6 +4849,7 @@ module Aws::EventBridge
4766
4849
  :sqs_parameters,
4767
4850
  :http_parameters,
4768
4851
  :redshift_data_parameters,
4852
+ :sage_maker_pipeline_parameters,
4769
4853
  :dead_letter_config,
4770
4854
  :retry_policy)
4771
4855
  SENSITIVE = []
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-eventbridge
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.22.0
4
+ version: 1.23.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: 2021-03-10 00:00:00.000000000 Z
11
+ date: 2021-03-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -66,8 +66,8 @@ homepage: https://github.com/aws/aws-sdk-ruby
66
66
  licenses:
67
67
  - Apache-2.0
68
68
  metadata:
69
- source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/master/gems/aws-sdk-eventbridge
70
- changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/master/gems/aws-sdk-eventbridge/CHANGELOG.md
69
+ source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-eventbridge
70
+ changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-eventbridge/CHANGELOG.md
71
71
  post_install_message:
72
72
  rdoc_options: []
73
73
  require_paths: