aws-sdk-cloudwatchevents 1.0.0.rc4 → 1.0.0.rc5
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/lib/aws-sdk-cloudwatchevents.rb +1 -1
- data/lib/aws-sdk-cloudwatchevents/client.rb +26 -3
- data/lib/aws-sdk-cloudwatchevents/types.rb +37 -10
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c2dde8566ffd17be813acb1c53f4b853398ab87e
|
4
|
+
data.tar.gz: 0d377e792df87eb532a618904230f1114ca0b5a2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 032ef3e737e36f3e4eb15503c2ffafa29f6ab865996f262040fe8a58df521febca00125f40eabf064810f02beaf192d50d4e52e08453d69fbb1eed8286a1aae2
|
7
|
+
data.tar.gz: dcda11b262354b7fa7e0c07f15b0dc1edf437e700f233c4c76482a3095c0fbf6dd6345ab146737c9057c5b63d3638712decd8e02a3d63f82daee1e555806a3ca
|
@@ -494,7 +494,12 @@ module Aws::CloudWatchEvents
|
|
494
494
|
# "rate(5 minutes)".
|
495
495
|
#
|
496
496
|
# @option params [String] :event_pattern
|
497
|
-
# The event pattern.
|
497
|
+
# The event pattern. For more information, see [Events and Event
|
498
|
+
# Patterns][1] in the *Amazon CloudWatch Events User Guide*.
|
499
|
+
#
|
500
|
+
#
|
501
|
+
#
|
502
|
+
# [1]: http://docs.aws.amazon.com/AmazonCloudWatch/latest/events/CloudWatchEventsandEventPatterns.html
|
498
503
|
#
|
499
504
|
# @option params [String] :state
|
500
505
|
# Indicates whether the rule is enabled or disabled.
|
@@ -579,10 +584,18 @@ module Aws::CloudWatchEvents
|
|
579
584
|
# JSONPaths are extracted from the event and used as values in a
|
580
585
|
# template that you specify as the input to the target.
|
581
586
|
#
|
587
|
+
# When you specify `Input`, `InputPath`, or `InputTransformer`, you must
|
588
|
+
# use JSON dot notation, not bracket notation.
|
589
|
+
#
|
582
590
|
# When you add targets to a rule and the associated rule triggers soon
|
583
591
|
# after, new or updated targets might not be immediately invoked. Please
|
584
592
|
# allow a short period of time for changes to take effect.
|
585
593
|
#
|
594
|
+
# This action can partially fail if too many requests are made at the
|
595
|
+
# same time. If that happens, `FailedEntryCount` is non-zero in the
|
596
|
+
# response and each entry in `FailedEntries` provides the ID of the
|
597
|
+
# failed target and the error code.
|
598
|
+
#
|
586
599
|
#
|
587
600
|
#
|
588
601
|
# [1]: http://docs.aws.amazon.com/AmazonCloudWatch/latest/events/auth-and-access-control-cwe.html
|
@@ -658,6 +671,11 @@ module Aws::CloudWatchEvents
|
|
658
671
|
# targets might continue to be invoked. Please allow a short period of
|
659
672
|
# time for changes to take effect.
|
660
673
|
#
|
674
|
+
# This action can partially fail if too many requests are made at the
|
675
|
+
# same time. If that happens, `FailedEntryCount` is non-zero in the
|
676
|
+
# response and each entry in `FailedEntries` provides the ID of the
|
677
|
+
# failed target and the error code.
|
678
|
+
#
|
661
679
|
# @option params [required, String] :rule
|
662
680
|
# The name of the rule.
|
663
681
|
#
|
@@ -702,7 +720,12 @@ module Aws::CloudWatchEvents
|
|
702
720
|
# event you want to match.
|
703
721
|
#
|
704
722
|
# @option params [required, String] :event_pattern
|
705
|
-
# The event pattern.
|
723
|
+
# The event pattern. For more information, see [Events and Event
|
724
|
+
# Patterns][1] in the *Amazon CloudWatch Events User Guide*.
|
725
|
+
#
|
726
|
+
#
|
727
|
+
#
|
728
|
+
# [1]: http://docs.aws.amazon.com/AmazonCloudWatch/latest/events/CloudWatchEventsandEventPatterns.html
|
706
729
|
#
|
707
730
|
# @option params [required, String] :event
|
708
731
|
# The event, in JSON format, to test against the event pattern.
|
@@ -744,7 +767,7 @@ module Aws::CloudWatchEvents
|
|
744
767
|
params: params,
|
745
768
|
config: config)
|
746
769
|
context[:gem_name] = 'aws-sdk-cloudwatchevents'
|
747
|
-
context[:gem_version] = '1.0.0.
|
770
|
+
context[:gem_version] = '1.0.0.rc5'
|
748
771
|
Seahorse::Client::Request.new(handlers, context)
|
749
772
|
end
|
750
773
|
|
@@ -53,7 +53,12 @@ module Aws::CloudWatchEvents
|
|
53
53
|
# @return [String]
|
54
54
|
#
|
55
55
|
# @!attribute [rw] event_pattern
|
56
|
-
# The event pattern.
|
56
|
+
# The event pattern. For more information, see [Events and Event
|
57
|
+
# Patterns][1] in the *Amazon CloudWatch Events User Guide*.
|
58
|
+
#
|
59
|
+
#
|
60
|
+
#
|
61
|
+
# [1]: http://docs.aws.amazon.com/AmazonCloudWatch/latest/events/CloudWatchEventsandEventPatterns.html
|
57
62
|
# @return [String]
|
58
63
|
#
|
59
64
|
# @!attribute [rw] schedule_expression
|
@@ -167,7 +172,8 @@ module Aws::CloudWatchEvents
|
|
167
172
|
#
|
168
173
|
# @!attribute [rw] input_paths_map
|
169
174
|
# Map of JSON paths to be extracted from the event. These are
|
170
|
-
# key-value pairs, where each value is a JSON path.
|
175
|
+
# key-value pairs, where each value is a JSON path. You must use JSON
|
176
|
+
# dot notation, not bracket notation.
|
171
177
|
# @return [Hash<String,String>]
|
172
178
|
#
|
173
179
|
# @!attribute [rw] input_template
|
@@ -503,7 +509,12 @@ module Aws::CloudWatchEvents
|
|
503
509
|
# @return [String]
|
504
510
|
#
|
505
511
|
# @!attribute [rw] event_pattern
|
506
|
-
# The event pattern.
|
512
|
+
# The event pattern. For more information, see [Events and Event
|
513
|
+
# Patterns][1] in the *Amazon CloudWatch Events User Guide*.
|
514
|
+
#
|
515
|
+
#
|
516
|
+
#
|
517
|
+
# [1]: http://docs.aws.amazon.com/AmazonCloudWatch/latest/events/CloudWatchEventsandEventPatterns.html
|
507
518
|
# @return [String]
|
508
519
|
#
|
509
520
|
# @!attribute [rw] state
|
@@ -618,7 +629,9 @@ module Aws::CloudWatchEvents
|
|
618
629
|
# @return [String]
|
619
630
|
#
|
620
631
|
# @!attribute [rw] error_code
|
621
|
-
# The error code that indicates why the target addition failed.
|
632
|
+
# The error code that indicates why the target addition failed. If the
|
633
|
+
# value is `ConcurrentModificationException`, too many requests were
|
634
|
+
# made at the same time.
|
622
635
|
# @return [String]
|
623
636
|
#
|
624
637
|
# @!attribute [rw] error_message
|
@@ -681,7 +694,9 @@ module Aws::CloudWatchEvents
|
|
681
694
|
# @return [String]
|
682
695
|
#
|
683
696
|
# @!attribute [rw] error_code
|
684
|
-
# The error code that indicates why the target removal failed.
|
697
|
+
# The error code that indicates why the target removal failed. If the
|
698
|
+
# value is `ConcurrentModificationException`, too many requests were
|
699
|
+
# made at the same time.
|
685
700
|
# @return [String]
|
686
701
|
#
|
687
702
|
# @!attribute [rw] error_message
|
@@ -708,7 +723,12 @@ module Aws::CloudWatchEvents
|
|
708
723
|
# @return [String]
|
709
724
|
#
|
710
725
|
# @!attribute [rw] event_pattern
|
711
|
-
# The event pattern of the rule.
|
726
|
+
# The event pattern of the rule. For more information, see [Events and
|
727
|
+
# Event Patterns][1] in the *Amazon CloudWatch Events User Guide*.
|
728
|
+
#
|
729
|
+
#
|
730
|
+
#
|
731
|
+
# [1]: http://docs.aws.amazon.com/AmazonCloudWatch/latest/events/CloudWatchEventsandEventPatterns.html
|
712
732
|
# @return [String]
|
713
733
|
#
|
714
734
|
# @!attribute [rw] state
|
@@ -852,7 +872,8 @@ module Aws::CloudWatchEvents
|
|
852
872
|
#
|
853
873
|
# @!attribute [rw] input
|
854
874
|
# Valid JSON text passed to the target. In this case, nothing from the
|
855
|
-
# event itself is passed to the target.
|
875
|
+
# event itself is passed to the target. You must use JSON dot
|
876
|
+
# notation, not bracket notation. For more information, see [The
|
856
877
|
# JavaScript Object Notation (JSON) Data Interchange Format][1].
|
857
878
|
#
|
858
879
|
#
|
@@ -862,8 +883,9 @@ module Aws::CloudWatchEvents
|
|
862
883
|
#
|
863
884
|
# @!attribute [rw] input_path
|
864
885
|
# The value of the JSONPath that is used for extracting part of the
|
865
|
-
# matched event when passing it to the target.
|
866
|
-
#
|
886
|
+
# matched event when passing it to the target. You must use JSON dot
|
887
|
+
# notation, not bracket notation. For more information about JSON
|
888
|
+
# paths, see [JSONPath][1].
|
867
889
|
#
|
868
890
|
#
|
869
891
|
#
|
@@ -923,7 +945,12 @@ module Aws::CloudWatchEvents
|
|
923
945
|
# }
|
924
946
|
#
|
925
947
|
# @!attribute [rw] event_pattern
|
926
|
-
# The event pattern.
|
948
|
+
# The event pattern. For more information, see [Events and Event
|
949
|
+
# Patterns][1] in the *Amazon CloudWatch Events User Guide*.
|
950
|
+
#
|
951
|
+
#
|
952
|
+
#
|
953
|
+
# [1]: http://docs.aws.amazon.com/AmazonCloudWatch/latest/events/CloudWatchEventsandEventPatterns.html
|
927
954
|
# @return [String]
|
928
955
|
#
|
929
956
|
# @!attribute [rw] event
|
metadata
CHANGED
@@ -1,29 +1,29 @@
|
|
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.0.0.rc5
|
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-05-
|
11
|
+
date: 2017-05-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- -
|
17
|
+
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 3.0.0.
|
19
|
+
version: 3.0.0.rc12
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
|
-
- -
|
24
|
+
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: 3.0.0.
|
26
|
+
version: 3.0.0.rc12
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: aws-sigv4
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|