aws-sdk-cloudwatchevents 1.0.0 → 1.1.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
  SHA1:
3
- metadata.gz: 4203269904a0b76a51516f062f0c5c977abe274b
4
- data.tar.gz: 3574abcfcd6f5ebc7692b752d53d04f17ba8484e
3
+ metadata.gz: 153f27b3bcee3afae955a9bb80d331d3bba9a157
4
+ data.tar.gz: 3ca39b43a98400d2b1cece4bdf3702eff68831c9
5
5
  SHA512:
6
- metadata.gz: d2fe987c1e188f46d37e344a28973b7eb0ea7182e61dea3b51de55d4a91d5d318e61bf5c5af17553ac7304ca89b26a68ebad7ef7cedfe653fc75b8bfd83a7dbd
7
- data.tar.gz: 3046e2455cbdcb19bc6b9bab0490e6029608ec693568f6f8440e5352f62af43412302227cca261cddd85fdc98a72572720916941fc5dbf0be56cb5a5c36657d0
6
+ metadata.gz: 1e4cfae1bce9d8b859fad0628c200dcf1b245cc81b3b8597618a6351f9a6bc7def8df4422ee5de68214ac92d92de1212bc4ce2d93a6d42495e0999ecc5f9be57
7
+ data.tar.gz: 3c711abd0ef3e5e8e87db3ee9e560a4eb1755268fa5e4edf52e0ab6213552c849c34dd90fb27c72dbda05a081c781b10430ad078dd5481317ffcc361f06b09ac
@@ -42,6 +42,6 @@ require_relative 'aws-sdk-cloudwatchevents/customizations'
42
42
  # @service
43
43
  module Aws::CloudWatchEvents
44
44
 
45
- GEM_VERSION = '1.0.0'
45
+ GEM_VERSION = '1.1.0'
46
46
 
47
47
  end
@@ -503,6 +503,9 @@ module Aws::CloudWatchEvents
503
503
  # To enable multiple AWS accounts to put events to your default event
504
504
  # bus, run `PutPermission` once for each of these accounts.
505
505
  #
506
+ # The permission policy on the default event bus cannot exceed 10KB in
507
+ # size.
508
+ #
506
509
  # @option params [required, String] :action
507
510
  # The action that you are enabling the other account to perform.
508
511
  # Currently, this must be `events:PutEvents`.
@@ -636,10 +639,16 @@ module Aws::CloudWatchEvents
636
639
  #
637
640
  # * AWS Step Functions state machines
638
641
  #
642
+ # * Pipelines in Amazon Code Pipeline
643
+ #
644
+ # * Amazon Inspector assessment templates
645
+ #
639
646
  # * Amazon SNS topics
640
647
  #
641
648
  # * Amazon SQS queues
642
649
  #
650
+ # * The default event bus of another AWS account
651
+ #
643
652
  # Note that creating rules with built-in targets is supported only in
644
653
  # the AWS Management Console.
645
654
  #
@@ -659,11 +668,18 @@ module Aws::CloudWatchEvents
659
668
  # *Amazon CloudWatch Events User Guide*.
660
669
  #
661
670
  # If another AWS account is in the same region and has granted you
662
- # permission (using `PutPermission`), you can set that account's event
663
- # bus as a target of the rules in your account. To send the matched
664
- # events to the other account, specify that account's event bus as the
665
- # `Arn` when you run `PutTargets`. For more information about enabling
666
- # cross-account events, see PutPermission.
671
+ # permission (using `PutPermission`), you can send events to that
672
+ # account by setting that account's event bus as a target of the rules
673
+ # in your account. To send the matched events to the other account,
674
+ # specify that account's event bus as the `Arn` when you run
675
+ # `PutTargets`. If your account sends events to another account, your
676
+ # account is charged for each sent event. Each event sent to antoher
677
+ # account is charged as a custom event. The account receiving the event
678
+ # is not charged. For more information on pricing, see [Amazon
679
+ # CloudWatch Pricing][2].
680
+ #
681
+ # For more information about enabling cross-account events, see
682
+ # PutPermission.
667
683
  #
668
684
  # **Input**, **InputPath** and **InputTransformer** are mutually
669
685
  # exclusive and optional parameters of a target. When a rule is
@@ -701,6 +717,7 @@ module Aws::CloudWatchEvents
701
717
  #
702
718
  #
703
719
  # [1]: http://docs.aws.amazon.com/AmazonCloudWatch/latest/events/auth-and-access-control-cwe.html
720
+ # [2]: https://aws.amazon.com/cloudwatch/pricing/
704
721
  #
705
722
  # @option params [required, String] :rule
706
723
  # The name of the rule.
@@ -896,7 +913,7 @@ module Aws::CloudWatchEvents
896
913
  params: params,
897
914
  config: config)
898
915
  context[:gem_name] = 'aws-sdk-cloudwatchevents'
899
- context[:gem_version] = '1.0.0'
916
+ context[:gem_version] = '1.1.0'
900
917
  Seahorse::Client::Request.new(handlers, context)
901
918
  end
902
919
 
@@ -399,6 +399,7 @@ module Aws::CloudWatchEvents
399
399
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
400
400
  o.errors << Shapes::ShapeRef.new(shape: PolicyLengthExceededException)
401
401
  o.errors << Shapes::ShapeRef.new(shape: InternalException)
402
+ o.errors << Shapes::ShapeRef.new(shape: ConcurrentModificationException)
402
403
  end)
403
404
 
404
405
  api.add_operation(:put_rule, Seahorse::Model::Operation.new.tap do |o|
@@ -433,6 +434,7 @@ module Aws::CloudWatchEvents
433
434
  o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
434
435
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
435
436
  o.errors << Shapes::ShapeRef.new(shape: InternalException)
437
+ o.errors << Shapes::ShapeRef.new(shape: ConcurrentModificationException)
436
438
  end)
437
439
 
438
440
  api.add_operation(:remove_targets, Seahorse::Model::Operation.new.tap do |o|
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-cloudwatchevents
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.1.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: 2017-08-29 00:00:00.000000000 Z
11
+ date: 2017-09-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -56,7 +56,9 @@ files:
56
56
  homepage: http://github.com/aws/aws-sdk-ruby
57
57
  licenses:
58
58
  - Apache-2.0
59
- metadata: {}
59
+ metadata:
60
+ source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/master/gems/aws-sdk-cloudwatchevents
61
+ changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/master/gems/aws-sdk-cloudwatchevents/CHANGELOG.md
60
62
  post_install_message:
61
63
  rdoc_options: []
62
64
  require_paths: