aws-sdk-lookoutmetrics 1.16.0 → 1.17.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: 6af63fa1ce2d955ad6e943eb815a875e717dc48fa929f4584b2538b74ff16b02
4
- data.tar.gz: b21550664cb5630a846d4ca0f6ec386aa620c53dc2cad09dfa7cedb20321b4b4
3
+ metadata.gz: 76535fbfb5f945c619f7001a1a6709a632b118d70017c0efe3a9badc098ea893
4
+ data.tar.gz: c73dedc572b8fc463493f9e928d5ef803afefee5445d4e4862d4764a3323390b
5
5
  SHA512:
6
- metadata.gz: 5fe67e0baeeead79accc3fd63779ab9489bddfde2a0c77582d1236317e631295c93b8a0bd7470ba585deb33bce204f32161c041802bcb6780e51f65de0cf9ad4
7
- data.tar.gz: cab5ad278ff7aa0ad7ef62a4a9734d14818f9f8ba7bf79ff8ad1b7b6f126b61d33f8e78f22b3fd684a376645d3642d0b8b0fa70572ef2c459536f7092395b0c9
6
+ metadata.gz: 030c68894b5bb5d28d77d5dd331361bef512f59037b58e2550981b71fc0f8be2d48f681db93254a3c8cad8f10e959145c6b8c55fb70d0a180ecabfc774e274dc
7
+ data.tar.gz: 07a6741ebf403f298c1824b2cf7bd5d8dfcfecc48198c7d0e7c12c035548ec136c81bb023000710a4d875e7316a32ebc5219bc0d6dca574a95981e7984db92c1
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.17.0 (2022-05-19)
5
+ ------------------
6
+
7
+ * Feature - In this release we added SnsFormat to SNSConfiguration to support human readable alert.
8
+
4
9
  1.16.0 (2022-04-21)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.16.0
1
+ 1.17.0
@@ -434,6 +434,7 @@ module Aws::LookoutMetrics
434
434
  # sns_configuration: {
435
435
  # role_arn: "Arn", # required
436
436
  # sns_topic_arn: "Arn", # required
437
+ # sns_format: "LONG_TEXT", # accepts LONG_TEXT, SHORT_TEXT, JSON
437
438
  # },
438
439
  # lambda_configuration: {
439
440
  # role_arn: "Arn", # required
@@ -742,6 +743,7 @@ module Aws::LookoutMetrics
742
743
  #
743
744
  # resp.alert.action.sns_configuration.role_arn #=> String
744
745
  # resp.alert.action.sns_configuration.sns_topic_arn #=> String
746
+ # resp.alert.action.sns_configuration.sns_format #=> String, one of "LONG_TEXT", "SHORT_TEXT", "JSON"
745
747
  # resp.alert.action.lambda_configuration.role_arn #=> String
746
748
  # resp.alert.action.lambda_configuration.lambda_arn #=> String
747
749
  # resp.alert.alert_description #=> String
@@ -1814,7 +1816,7 @@ module Aws::LookoutMetrics
1814
1816
  params: params,
1815
1817
  config: config)
1816
1818
  context[:gem_name] = 'aws-sdk-lookoutmetrics'
1817
- context[:gem_version] = '1.16.0'
1819
+ context[:gem_version] = '1.17.0'
1818
1820
  Seahorse::Client::Request.new(handlers, context)
1819
1821
  end
1820
1822
 
@@ -189,6 +189,7 @@ module Aws::LookoutMetrics
189
189
  SensitivityThreshold = Shapes::IntegerShape.new(name: 'SensitivityThreshold')
190
190
  ServiceCode = Shapes::StringShape.new(name: 'ServiceCode')
191
191
  ServiceQuotaExceededException = Shapes::StructureShape.new(name: 'ServiceQuotaExceededException')
192
+ SnsFormat = Shapes::StringShape.new(name: 'SnsFormat')
192
193
  StringAttributeValue = Shapes::StringShape.new(name: 'StringAttributeValue')
193
194
  StringListAttributeValue = Shapes::ListShape.new(name: 'StringListAttributeValue')
194
195
  SubnetId = Shapes::StringShape.new(name: 'SubnetId')
@@ -725,6 +726,7 @@ module Aws::LookoutMetrics
725
726
 
726
727
  SNSConfiguration.add_member(:role_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "RoleArn"))
727
728
  SNSConfiguration.add_member(:sns_topic_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "SnsTopicArn"))
729
+ SNSConfiguration.add_member(:sns_format, Shapes::ShapeRef.new(shape: SnsFormat, location_name: "SnsFormat"))
728
730
  SNSConfiguration.struct_class = Types::SNSConfiguration
729
731
 
730
732
  SampleDataS3SourceConfig.add_member(:role_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "RoleArn"))
@@ -33,6 +33,7 @@ module Aws::LookoutMetrics
33
33
  # sns_configuration: {
34
34
  # role_arn: "Arn", # required
35
35
  # sns_topic_arn: "Arn", # required
36
+ # sns_format: "LONG_TEXT", # accepts LONG_TEXT, SHORT_TEXT, JSON
36
37
  # },
37
38
  # lambda_configuration: {
38
39
  # role_arn: "Arn", # required
@@ -649,6 +650,7 @@ module Aws::LookoutMetrics
649
650
  # sns_configuration: {
650
651
  # role_arn: "Arn", # required
651
652
  # sns_topic_arn: "Arn", # required
653
+ # sns_format: "LONG_TEXT", # accepts LONG_TEXT, SHORT_TEXT, JSON
652
654
  # },
653
655
  # lambda_configuration: {
654
656
  # role_arn: "Arn", # required
@@ -2742,6 +2744,7 @@ module Aws::LookoutMetrics
2742
2744
  # {
2743
2745
  # role_arn: "Arn", # required
2744
2746
  # sns_topic_arn: "Arn", # required
2747
+ # sns_format: "LONG_TEXT", # accepts LONG_TEXT, SHORT_TEXT, JSON
2745
2748
  # }
2746
2749
  #
2747
2750
  # @!attribute [rw] role_arn
@@ -2752,11 +2755,16 @@ module Aws::LookoutMetrics
2752
2755
  # The ARN of the target SNS topic.
2753
2756
  # @return [String]
2754
2757
  #
2758
+ # @!attribute [rw] sns_format
2759
+ # The text format for alerts.
2760
+ # @return [String]
2761
+ #
2755
2762
  # @see http://docs.aws.amazon.com/goto/WebAPI/lookoutmetrics-2017-07-25/SNSConfiguration AWS API Documentation
2756
2763
  #
2757
2764
  class SNSConfiguration < Struct.new(
2758
2765
  :role_arn,
2759
- :sns_topic_arn)
2766
+ :sns_topic_arn,
2767
+ :sns_format)
2760
2768
  SENSITIVE = []
2761
2769
  include Aws::Structure
2762
2770
  end
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-lookoutmetrics/customizations'
48
48
  # @!group service
49
49
  module Aws::LookoutMetrics
50
50
 
51
- GEM_VERSION = '1.16.0'
51
+ GEM_VERSION = '1.17.0'
52
52
 
53
53
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-lookoutmetrics
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.16.0
4
+ version: 1.17.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: 2022-04-21 00:00:00.000000000 Z
11
+ date: 2022-05-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core