aws-sdk-medialive 1.118.0 → 1.120.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -22,6 +22,7 @@ require 'aws-sdk-core/plugins/endpoint_pattern.rb'
22
22
  require 'aws-sdk-core/plugins/response_paging.rb'
23
23
  require 'aws-sdk-core/plugins/stub_responses.rb'
24
24
  require 'aws-sdk-core/plugins/idempotency_token.rb'
25
+ require 'aws-sdk-core/plugins/invocation_id.rb'
25
26
  require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
26
27
  require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
27
28
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
@@ -72,6 +73,7 @@ module Aws::MediaLive
72
73
  add_plugin(Aws::Plugins::ResponsePaging)
73
74
  add_plugin(Aws::Plugins::StubResponses)
74
75
  add_plugin(Aws::Plugins::IdempotencyToken)
76
+ add_plugin(Aws::Plugins::InvocationId)
75
77
  add_plugin(Aws::Plugins::JsonvalueConverter)
76
78
  add_plugin(Aws::Plugins::ClientMetricsPlugin)
77
79
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
@@ -196,10 +198,17 @@ module Aws::MediaLive
196
198
  # When set to 'true' the request body will not be compressed
197
199
  # for supported operations.
198
200
  #
199
- # @option options [String] :endpoint
200
- # The client endpoint is normally constructed from the `:region`
201
- # option. You should only configure an `:endpoint` when connecting
202
- # to test or custom endpoints. This should be a valid HTTP(S) URI.
201
+ # @option options [String, URI::HTTPS, URI::HTTP] :endpoint
202
+ # Normally you should not configure the `:endpoint` option
203
+ # directly. This is normally constructed from the `:region`
204
+ # option. Configuring `:endpoint` is normally reserved for
205
+ # connecting to test or custom endpoints. The endpoint should
206
+ # be a URI formatted like:
207
+ #
208
+ # 'http://example.com'
209
+ # 'https://example.com'
210
+ # 'http://example.com:123'
211
+ #
203
212
  #
204
213
  # @option options [Integer] :endpoint_cache_max_entries (1000)
205
214
  # Used for the maximum size limit of the LRU cache storing endpoints data
@@ -337,50 +346,65 @@ module Aws::MediaLive
337
346
  # @option options [Aws::MediaLive::EndpointProvider] :endpoint_provider
338
347
  # The endpoint provider used to resolve endpoints. Any object that responds to `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to `Aws::MediaLive::EndpointParameters`
339
348
  #
340
- # @option options [URI::HTTP,String] :http_proxy A proxy to send
341
- # requests through. Formatted like 'http://proxy.com:123'.
342
- #
343
- # @option options [Float] :http_open_timeout (15) The number of
344
- # seconds to wait when opening a HTTP session before raising a
345
- # `Timeout::Error`.
346
- #
347
- # @option options [Float] :http_read_timeout (60) The default
348
- # number of seconds to wait for response data. This value can
349
- # safely be set per-request on the session.
350
- #
351
- # @option options [Float] :http_idle_timeout (5) The number of
352
- # seconds a connection is allowed to sit idle before it is
353
- # considered stale. Stale connections are closed and removed
354
- # from the pool before making a request.
355
- #
356
- # @option options [Float] :http_continue_timeout (1) The number of
357
- # seconds to wait for a 100-continue response before sending the
358
- # request body. This option has no effect unless the request has
359
- # "Expect" header set to "100-continue". Defaults to `nil` which
360
- # disables this behaviour. This value can safely be set per
361
- # request on the session.
362
- #
363
- # @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
364
- # in seconds.
365
- #
366
- # @option options [Boolean] :http_wire_trace (false) When `true`,
367
- # HTTP debug output will be sent to the `:logger`.
349
+ # @option options [Float] :http_continue_timeout (1)
350
+ # The number of seconds to wait for a 100-continue response before sending the
351
+ # request body. This option has no effect unless the request has "Expect"
352
+ # header set to "100-continue". Defaults to `nil` which disables this
353
+ # behaviour. This value can safely be set per request on the session.
354
+ #
355
+ # @option options [Float] :http_idle_timeout (5)
356
+ # The number of seconds a connection is allowed to sit idle before it
357
+ # is considered stale. Stale connections are closed and removed from the
358
+ # pool before making a request.
359
+ #
360
+ # @option options [Float] :http_open_timeout (15)
361
+ # The default number of seconds to wait for response data.
362
+ # This value can safely be set per-request on the session.
363
+ #
364
+ # @option options [URI::HTTP,String] :http_proxy
365
+ # A proxy to send requests through. Formatted like 'http://proxy.com:123'.
366
+ #
367
+ # @option options [Float] :http_read_timeout (60)
368
+ # The default number of seconds to wait for response data.
369
+ # This value can safely be set per-request on the session.
370
+ #
371
+ # @option options [Boolean] :http_wire_trace (false)
372
+ # When `true`, HTTP debug output will be sent to the `:logger`.
373
+ #
374
+ # @option options [Proc] :on_chunk_received
375
+ # When a Proc object is provided, it will be used as callback when each chunk
376
+ # of the response body is received. It provides three arguments: the chunk,
377
+ # the number of bytes received, and the total number of
378
+ # bytes in the response (or nil if the server did not send a `content-length`).
379
+ #
380
+ # @option options [Proc] :on_chunk_sent
381
+ # When a Proc object is provided, it will be used as callback when each chunk
382
+ # of the request body is sent. It provides three arguments: the chunk,
383
+ # the number of bytes read from the body, and the total number of
384
+ # bytes in the body.
385
+ #
386
+ # @option options [Boolean] :raise_response_errors (true)
387
+ # When `true`, response errors are raised.
388
+ #
389
+ # @option options [String] :ssl_ca_bundle
390
+ # Full path to the SSL certificate authority bundle file that should be used when
391
+ # verifying peer certificates. If you do not pass `:ssl_ca_bundle` or
392
+ # `:ssl_ca_directory` the the system default will be used if available.
393
+ #
394
+ # @option options [String] :ssl_ca_directory
395
+ # Full path of the directory that contains the unbundled SSL certificate
396
+ # authority files for verifying peer certificates. If you do
397
+ # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the system
398
+ # default will be used if available.
368
399
  #
369
- # @option options [Boolean] :ssl_verify_peer (true) When `true`,
370
- # SSL peer certificates are verified when establishing a
371
- # connection.
400
+ # @option options [String] :ssl_ca_store
401
+ # Sets the X509::Store to verify peer certificate.
372
402
  #
373
- # @option options [String] :ssl_ca_bundle Full path to the SSL
374
- # certificate authority bundle file that should be used when
375
- # verifying peer certificates. If you do not pass
376
- # `:ssl_ca_bundle` or `:ssl_ca_directory` the the system default
377
- # will be used if available.
403
+ # @option options [Float] :ssl_timeout
404
+ # Sets the SSL timeout in seconds
378
405
  #
379
- # @option options [String] :ssl_ca_directory Full path of the
380
- # directory that contains the unbundled SSL certificate
381
- # authority files for verifying peer certificates. If you do
382
- # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the
383
- # system default will be used if available.
406
+ # @option options [Boolean] :ssl_verify_peer (true)
407
+ # When `true`, SSL peer certificates are verified when establishing a connection.
384
408
  #
385
409
  def initialize(*args)
386
410
  super
@@ -9569,6 +9593,1551 @@ module Aws::MediaLive
9569
9593
  req.send_request(options)
9570
9594
  end
9571
9595
 
9596
+ # Creates a cloudwatch alarm template to dynamically generate cloudwatch
9597
+ # metric alarms on targeted resource types.
9598
+ #
9599
+ # @option params [required, String] :comparison_operator
9600
+ # The comparison operator used to compare the specified statistic and
9601
+ # the threshold.
9602
+ #
9603
+ # @option params [Integer] :datapoints_to_alarm
9604
+ #
9605
+ # @option params [String] :description
9606
+ #
9607
+ # @option params [required, Integer] :evaluation_periods
9608
+ #
9609
+ # @option params [required, String] :group_identifier
9610
+ #
9611
+ # @option params [required, String] :metric_name
9612
+ #
9613
+ # @option params [required, String] :name
9614
+ #
9615
+ # @option params [required, Integer] :period
9616
+ #
9617
+ # @option params [required, String] :statistic
9618
+ # The statistic to apply to the alarm's metric data.
9619
+ #
9620
+ # @option params [Hash<String,String>] :tags
9621
+ # Represents the tags associated with a resource.
9622
+ #
9623
+ # @option params [required, String] :target_resource_type
9624
+ # The resource type this template should dynamically generate cloudwatch
9625
+ # metric alarms for.
9626
+ #
9627
+ # @option params [required, Float] :threshold
9628
+ #
9629
+ # @option params [required, String] :treat_missing_data
9630
+ # Specifies how missing data points are treated when evaluating the
9631
+ # alarm's condition.
9632
+ #
9633
+ # @return [Types::CreateCloudWatchAlarmTemplateResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
9634
+ #
9635
+ # * {Types::CreateCloudWatchAlarmTemplateResponse#arn #arn} => String
9636
+ # * {Types::CreateCloudWatchAlarmTemplateResponse#comparison_operator #comparison_operator} => String
9637
+ # * {Types::CreateCloudWatchAlarmTemplateResponse#created_at #created_at} => Time
9638
+ # * {Types::CreateCloudWatchAlarmTemplateResponse#datapoints_to_alarm #datapoints_to_alarm} => Integer
9639
+ # * {Types::CreateCloudWatchAlarmTemplateResponse#description #description} => String
9640
+ # * {Types::CreateCloudWatchAlarmTemplateResponse#evaluation_periods #evaluation_periods} => Integer
9641
+ # * {Types::CreateCloudWatchAlarmTemplateResponse#group_id #group_id} => String
9642
+ # * {Types::CreateCloudWatchAlarmTemplateResponse#id #id} => String
9643
+ # * {Types::CreateCloudWatchAlarmTemplateResponse#metric_name #metric_name} => String
9644
+ # * {Types::CreateCloudWatchAlarmTemplateResponse#modified_at #modified_at} => Time
9645
+ # * {Types::CreateCloudWatchAlarmTemplateResponse#name #name} => String
9646
+ # * {Types::CreateCloudWatchAlarmTemplateResponse#period #period} => Integer
9647
+ # * {Types::CreateCloudWatchAlarmTemplateResponse#statistic #statistic} => String
9648
+ # * {Types::CreateCloudWatchAlarmTemplateResponse#tags #tags} => Hash&lt;String,String&gt;
9649
+ # * {Types::CreateCloudWatchAlarmTemplateResponse#target_resource_type #target_resource_type} => String
9650
+ # * {Types::CreateCloudWatchAlarmTemplateResponse#threshold #threshold} => Float
9651
+ # * {Types::CreateCloudWatchAlarmTemplateResponse#treat_missing_data #treat_missing_data} => String
9652
+ #
9653
+ # @example Request syntax with placeholder values
9654
+ #
9655
+ # resp = client.create_cloud_watch_alarm_template({
9656
+ # comparison_operator: "GreaterThanOrEqualToThreshold", # required, accepts GreaterThanOrEqualToThreshold, GreaterThanThreshold, LessThanThreshold, LessThanOrEqualToThreshold
9657
+ # datapoints_to_alarm: 1,
9658
+ # description: "__stringMin0Max1024",
9659
+ # evaluation_periods: 1, # required
9660
+ # group_identifier: "__stringPatternS", # required
9661
+ # metric_name: "__stringMax64", # required
9662
+ # name: "__stringMin1Max255PatternS", # required
9663
+ # period: 1, # required
9664
+ # statistic: "SampleCount", # required, accepts SampleCount, Average, Sum, Minimum, Maximum
9665
+ # tags: {
9666
+ # "__string" => "__string",
9667
+ # },
9668
+ # target_resource_type: "CLOUDFRONT_DISTRIBUTION", # required, accepts CLOUDFRONT_DISTRIBUTION, MEDIALIVE_MULTIPLEX, MEDIALIVE_CHANNEL, MEDIALIVE_INPUT_DEVICE, MEDIAPACKAGE_CHANNEL, MEDIAPACKAGE_ORIGIN_ENDPOINT, MEDIACONNECT_FLOW, S3_BUCKET
9669
+ # threshold: 1.0, # required
9670
+ # treat_missing_data: "notBreaching", # required, accepts notBreaching, breaching, ignore, missing
9671
+ # })
9672
+ #
9673
+ # @example Response structure
9674
+ #
9675
+ # resp.arn #=> String
9676
+ # resp.comparison_operator #=> String, one of "GreaterThanOrEqualToThreshold", "GreaterThanThreshold", "LessThanThreshold", "LessThanOrEqualToThreshold"
9677
+ # resp.created_at #=> Time
9678
+ # resp.datapoints_to_alarm #=> Integer
9679
+ # resp.description #=> String
9680
+ # resp.evaluation_periods #=> Integer
9681
+ # resp.group_id #=> String
9682
+ # resp.id #=> String
9683
+ # resp.metric_name #=> String
9684
+ # resp.modified_at #=> Time
9685
+ # resp.name #=> String
9686
+ # resp.period #=> Integer
9687
+ # resp.statistic #=> String, one of "SampleCount", "Average", "Sum", "Minimum", "Maximum"
9688
+ # resp.tags #=> Hash
9689
+ # resp.tags["__string"] #=> String
9690
+ # resp.target_resource_type #=> String, one of "CLOUDFRONT_DISTRIBUTION", "MEDIALIVE_MULTIPLEX", "MEDIALIVE_CHANNEL", "MEDIALIVE_INPUT_DEVICE", "MEDIAPACKAGE_CHANNEL", "MEDIAPACKAGE_ORIGIN_ENDPOINT", "MEDIACONNECT_FLOW", "S3_BUCKET"
9691
+ # resp.threshold #=> Float
9692
+ # resp.treat_missing_data #=> String, one of "notBreaching", "breaching", "ignore", "missing"
9693
+ #
9694
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CreateCloudWatchAlarmTemplate AWS API Documentation
9695
+ #
9696
+ # @overload create_cloud_watch_alarm_template(params = {})
9697
+ # @param [Hash] params ({})
9698
+ def create_cloud_watch_alarm_template(params = {}, options = {})
9699
+ req = build_request(:create_cloud_watch_alarm_template, params)
9700
+ req.send_request(options)
9701
+ end
9702
+
9703
+ # Creates a cloudwatch alarm template group to group your cloudwatch
9704
+ # alarm templates and to attach to signal maps for dynamically creating
9705
+ # alarms.
9706
+ #
9707
+ # @option params [String] :description
9708
+ #
9709
+ # @option params [required, String] :name
9710
+ #
9711
+ # @option params [Hash<String,String>] :tags
9712
+ # Represents the tags associated with a resource.
9713
+ #
9714
+ # @return [Types::CreateCloudWatchAlarmTemplateGroupResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
9715
+ #
9716
+ # * {Types::CreateCloudWatchAlarmTemplateGroupResponse#arn #arn} => String
9717
+ # * {Types::CreateCloudWatchAlarmTemplateGroupResponse#created_at #created_at} => Time
9718
+ # * {Types::CreateCloudWatchAlarmTemplateGroupResponse#description #description} => String
9719
+ # * {Types::CreateCloudWatchAlarmTemplateGroupResponse#id #id} => String
9720
+ # * {Types::CreateCloudWatchAlarmTemplateGroupResponse#modified_at #modified_at} => Time
9721
+ # * {Types::CreateCloudWatchAlarmTemplateGroupResponse#name #name} => String
9722
+ # * {Types::CreateCloudWatchAlarmTemplateGroupResponse#tags #tags} => Hash&lt;String,String&gt;
9723
+ #
9724
+ # @example Request syntax with placeholder values
9725
+ #
9726
+ # resp = client.create_cloud_watch_alarm_template_group({
9727
+ # description: "__stringMin0Max1024",
9728
+ # name: "__stringMin1Max255PatternS", # required
9729
+ # tags: {
9730
+ # "__string" => "__string",
9731
+ # },
9732
+ # })
9733
+ #
9734
+ # @example Response structure
9735
+ #
9736
+ # resp.arn #=> String
9737
+ # resp.created_at #=> Time
9738
+ # resp.description #=> String
9739
+ # resp.id #=> String
9740
+ # resp.modified_at #=> Time
9741
+ # resp.name #=> String
9742
+ # resp.tags #=> Hash
9743
+ # resp.tags["__string"] #=> String
9744
+ #
9745
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CreateCloudWatchAlarmTemplateGroup AWS API Documentation
9746
+ #
9747
+ # @overload create_cloud_watch_alarm_template_group(params = {})
9748
+ # @param [Hash] params ({})
9749
+ def create_cloud_watch_alarm_template_group(params = {}, options = {})
9750
+ req = build_request(:create_cloud_watch_alarm_template_group, params)
9751
+ req.send_request(options)
9752
+ end
9753
+
9754
+ # Creates an eventbridge rule template to monitor events and send
9755
+ # notifications to your targeted resources.
9756
+ #
9757
+ # @option params [String] :description
9758
+ #
9759
+ # @option params [Array<Types::EventBridgeRuleTemplateTarget>] :event_targets
9760
+ #
9761
+ # @option params [required, String] :event_type
9762
+ # The type of event to match with the rule.
9763
+ #
9764
+ # @option params [required, String] :group_identifier
9765
+ #
9766
+ # @option params [required, String] :name
9767
+ #
9768
+ # @option params [Hash<String,String>] :tags
9769
+ # Represents the tags associated with a resource.
9770
+ #
9771
+ # @return [Types::CreateEventBridgeRuleTemplateResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
9772
+ #
9773
+ # * {Types::CreateEventBridgeRuleTemplateResponse#arn #arn} => String
9774
+ # * {Types::CreateEventBridgeRuleTemplateResponse#created_at #created_at} => Time
9775
+ # * {Types::CreateEventBridgeRuleTemplateResponse#description #description} => String
9776
+ # * {Types::CreateEventBridgeRuleTemplateResponse#event_targets #event_targets} => Array&lt;Types::EventBridgeRuleTemplateTarget&gt;
9777
+ # * {Types::CreateEventBridgeRuleTemplateResponse#event_type #event_type} => String
9778
+ # * {Types::CreateEventBridgeRuleTemplateResponse#group_id #group_id} => String
9779
+ # * {Types::CreateEventBridgeRuleTemplateResponse#id #id} => String
9780
+ # * {Types::CreateEventBridgeRuleTemplateResponse#modified_at #modified_at} => Time
9781
+ # * {Types::CreateEventBridgeRuleTemplateResponse#name #name} => String
9782
+ # * {Types::CreateEventBridgeRuleTemplateResponse#tags #tags} => Hash&lt;String,String&gt;
9783
+ #
9784
+ # @example Request syntax with placeholder values
9785
+ #
9786
+ # resp = client.create_event_bridge_rule_template({
9787
+ # description: "__stringMin0Max1024",
9788
+ # event_targets: [
9789
+ # {
9790
+ # arn: "__stringMin1Max2048PatternArn", # required
9791
+ # },
9792
+ # ],
9793
+ # event_type: "MEDIALIVE_MULTIPLEX_ALERT", # required, accepts MEDIALIVE_MULTIPLEX_ALERT, MEDIALIVE_MULTIPLEX_STATE_CHANGE, MEDIALIVE_CHANNEL_ALERT, MEDIALIVE_CHANNEL_INPUT_CHANGE, MEDIALIVE_CHANNEL_STATE_CHANGE, MEDIAPACKAGE_INPUT_NOTIFICATION, MEDIAPACKAGE_KEY_PROVIDER_NOTIFICATION, MEDIAPACKAGE_HARVEST_JOB_NOTIFICATION, SIGNAL_MAP_ACTIVE_ALARM, MEDIACONNECT_ALERT, MEDIACONNECT_SOURCE_HEALTH, MEDIACONNECT_OUTPUT_HEALTH, MEDIACONNECT_FLOW_STATUS_CHANGE
9794
+ # group_identifier: "__stringPatternS", # required
9795
+ # name: "__stringMin1Max255PatternS", # required
9796
+ # tags: {
9797
+ # "__string" => "__string",
9798
+ # },
9799
+ # })
9800
+ #
9801
+ # @example Response structure
9802
+ #
9803
+ # resp.arn #=> String
9804
+ # resp.created_at #=> Time
9805
+ # resp.description #=> String
9806
+ # resp.event_targets #=> Array
9807
+ # resp.event_targets[0].arn #=> String
9808
+ # resp.event_type #=> String, one of "MEDIALIVE_MULTIPLEX_ALERT", "MEDIALIVE_MULTIPLEX_STATE_CHANGE", "MEDIALIVE_CHANNEL_ALERT", "MEDIALIVE_CHANNEL_INPUT_CHANGE", "MEDIALIVE_CHANNEL_STATE_CHANGE", "MEDIAPACKAGE_INPUT_NOTIFICATION", "MEDIAPACKAGE_KEY_PROVIDER_NOTIFICATION", "MEDIAPACKAGE_HARVEST_JOB_NOTIFICATION", "SIGNAL_MAP_ACTIVE_ALARM", "MEDIACONNECT_ALERT", "MEDIACONNECT_SOURCE_HEALTH", "MEDIACONNECT_OUTPUT_HEALTH", "MEDIACONNECT_FLOW_STATUS_CHANGE"
9809
+ # resp.group_id #=> String
9810
+ # resp.id #=> String
9811
+ # resp.modified_at #=> Time
9812
+ # resp.name #=> String
9813
+ # resp.tags #=> Hash
9814
+ # resp.tags["__string"] #=> String
9815
+ #
9816
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CreateEventBridgeRuleTemplate AWS API Documentation
9817
+ #
9818
+ # @overload create_event_bridge_rule_template(params = {})
9819
+ # @param [Hash] params ({})
9820
+ def create_event_bridge_rule_template(params = {}, options = {})
9821
+ req = build_request(:create_event_bridge_rule_template, params)
9822
+ req.send_request(options)
9823
+ end
9824
+
9825
+ # Creates an eventbridge rule template group to group your eventbridge
9826
+ # rule templates and to attach to signal maps for dynamically creating
9827
+ # notification rules.
9828
+ #
9829
+ # @option params [String] :description
9830
+ #
9831
+ # @option params [required, String] :name
9832
+ #
9833
+ # @option params [Hash<String,String>] :tags
9834
+ # Represents the tags associated with a resource.
9835
+ #
9836
+ # @return [Types::CreateEventBridgeRuleTemplateGroupResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
9837
+ #
9838
+ # * {Types::CreateEventBridgeRuleTemplateGroupResponse#arn #arn} => String
9839
+ # * {Types::CreateEventBridgeRuleTemplateGroupResponse#created_at #created_at} => Time
9840
+ # * {Types::CreateEventBridgeRuleTemplateGroupResponse#description #description} => String
9841
+ # * {Types::CreateEventBridgeRuleTemplateGroupResponse#id #id} => String
9842
+ # * {Types::CreateEventBridgeRuleTemplateGroupResponse#modified_at #modified_at} => Time
9843
+ # * {Types::CreateEventBridgeRuleTemplateGroupResponse#name #name} => String
9844
+ # * {Types::CreateEventBridgeRuleTemplateGroupResponse#tags #tags} => Hash&lt;String,String&gt;
9845
+ #
9846
+ # @example Request syntax with placeholder values
9847
+ #
9848
+ # resp = client.create_event_bridge_rule_template_group({
9849
+ # description: "__stringMin0Max1024",
9850
+ # name: "__stringMin1Max255PatternS", # required
9851
+ # tags: {
9852
+ # "__string" => "__string",
9853
+ # },
9854
+ # })
9855
+ #
9856
+ # @example Response structure
9857
+ #
9858
+ # resp.arn #=> String
9859
+ # resp.created_at #=> Time
9860
+ # resp.description #=> String
9861
+ # resp.id #=> String
9862
+ # resp.modified_at #=> Time
9863
+ # resp.name #=> String
9864
+ # resp.tags #=> Hash
9865
+ # resp.tags["__string"] #=> String
9866
+ #
9867
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CreateEventBridgeRuleTemplateGroup AWS API Documentation
9868
+ #
9869
+ # @overload create_event_bridge_rule_template_group(params = {})
9870
+ # @param [Hash] params ({})
9871
+ def create_event_bridge_rule_template_group(params = {}, options = {})
9872
+ req = build_request(:create_event_bridge_rule_template_group, params)
9873
+ req.send_request(options)
9874
+ end
9875
+
9876
+ # Initiates the creation of a new signal map. Will discover a new
9877
+ # mediaResourceMap based on the provided discoveryEntryPointArn.
9878
+ #
9879
+ # @option params [Array<String>] :cloud_watch_alarm_template_group_identifiers
9880
+ #
9881
+ # @option params [String] :description
9882
+ #
9883
+ # @option params [required, String] :discovery_entry_point_arn
9884
+ #
9885
+ # @option params [Array<String>] :event_bridge_rule_template_group_identifiers
9886
+ #
9887
+ # @option params [required, String] :name
9888
+ #
9889
+ # @option params [Hash<String,String>] :tags
9890
+ # Represents the tags associated with a resource.
9891
+ #
9892
+ # @return [Types::CreateSignalMapResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
9893
+ #
9894
+ # * {Types::CreateSignalMapResponse#arn #arn} => String
9895
+ # * {Types::CreateSignalMapResponse#cloud_watch_alarm_template_group_ids #cloud_watch_alarm_template_group_ids} => Array&lt;String&gt;
9896
+ # * {Types::CreateSignalMapResponse#created_at #created_at} => Time
9897
+ # * {Types::CreateSignalMapResponse#description #description} => String
9898
+ # * {Types::CreateSignalMapResponse#discovery_entry_point_arn #discovery_entry_point_arn} => String
9899
+ # * {Types::CreateSignalMapResponse#error_message #error_message} => String
9900
+ # * {Types::CreateSignalMapResponse#event_bridge_rule_template_group_ids #event_bridge_rule_template_group_ids} => Array&lt;String&gt;
9901
+ # * {Types::CreateSignalMapResponse#failed_media_resource_map #failed_media_resource_map} => Hash&lt;String,Types::MediaResource&gt;
9902
+ # * {Types::CreateSignalMapResponse#id #id} => String
9903
+ # * {Types::CreateSignalMapResponse#last_discovered_at #last_discovered_at} => Time
9904
+ # * {Types::CreateSignalMapResponse#last_successful_monitor_deployment #last_successful_monitor_deployment} => Types::SuccessfulMonitorDeployment
9905
+ # * {Types::CreateSignalMapResponse#media_resource_map #media_resource_map} => Hash&lt;String,Types::MediaResource&gt;
9906
+ # * {Types::CreateSignalMapResponse#modified_at #modified_at} => Time
9907
+ # * {Types::CreateSignalMapResponse#monitor_changes_pending_deployment #monitor_changes_pending_deployment} => Boolean
9908
+ # * {Types::CreateSignalMapResponse#monitor_deployment #monitor_deployment} => Types::MonitorDeployment
9909
+ # * {Types::CreateSignalMapResponse#name #name} => String
9910
+ # * {Types::CreateSignalMapResponse#status #status} => String
9911
+ # * {Types::CreateSignalMapResponse#tags #tags} => Hash&lt;String,String&gt;
9912
+ #
9913
+ # @example Request syntax with placeholder values
9914
+ #
9915
+ # resp = client.create_signal_map({
9916
+ # cloud_watch_alarm_template_group_identifiers: ["__stringPatternS"],
9917
+ # description: "__stringMin0Max1024",
9918
+ # discovery_entry_point_arn: "__stringMin1Max2048", # required
9919
+ # event_bridge_rule_template_group_identifiers: ["__stringPatternS"],
9920
+ # name: "__stringMin1Max255PatternS", # required
9921
+ # tags: {
9922
+ # "__string" => "__string",
9923
+ # },
9924
+ # })
9925
+ #
9926
+ # @example Response structure
9927
+ #
9928
+ # resp.arn #=> String
9929
+ # resp.cloud_watch_alarm_template_group_ids #=> Array
9930
+ # resp.cloud_watch_alarm_template_group_ids[0] #=> String
9931
+ # resp.created_at #=> Time
9932
+ # resp.description #=> String
9933
+ # resp.discovery_entry_point_arn #=> String
9934
+ # resp.error_message #=> String
9935
+ # resp.event_bridge_rule_template_group_ids #=> Array
9936
+ # resp.event_bridge_rule_template_group_ids[0] #=> String
9937
+ # resp.failed_media_resource_map #=> Hash
9938
+ # resp.failed_media_resource_map["__string"].destinations #=> Array
9939
+ # resp.failed_media_resource_map["__string"].destinations[0].arn #=> String
9940
+ # resp.failed_media_resource_map["__string"].destinations[0].name #=> String
9941
+ # resp.failed_media_resource_map["__string"].name #=> String
9942
+ # resp.failed_media_resource_map["__string"].sources #=> Array
9943
+ # resp.failed_media_resource_map["__string"].sources[0].arn #=> String
9944
+ # resp.failed_media_resource_map["__string"].sources[0].name #=> String
9945
+ # resp.id #=> String
9946
+ # resp.last_discovered_at #=> Time
9947
+ # resp.last_successful_monitor_deployment.details_uri #=> String
9948
+ # resp.last_successful_monitor_deployment.status #=> String, one of "NOT_DEPLOYED", "DRY_RUN_DEPLOYMENT_COMPLETE", "DRY_RUN_DEPLOYMENT_FAILED", "DRY_RUN_DEPLOYMENT_IN_PROGRESS", "DEPLOYMENT_COMPLETE", "DEPLOYMENT_FAILED", "DEPLOYMENT_IN_PROGRESS", "DELETE_COMPLETE", "DELETE_FAILED", "DELETE_IN_PROGRESS"
9949
+ # resp.media_resource_map #=> Hash
9950
+ # resp.media_resource_map["__string"].destinations #=> Array
9951
+ # resp.media_resource_map["__string"].destinations[0].arn #=> String
9952
+ # resp.media_resource_map["__string"].destinations[0].name #=> String
9953
+ # resp.media_resource_map["__string"].name #=> String
9954
+ # resp.media_resource_map["__string"].sources #=> Array
9955
+ # resp.media_resource_map["__string"].sources[0].arn #=> String
9956
+ # resp.media_resource_map["__string"].sources[0].name #=> String
9957
+ # resp.modified_at #=> Time
9958
+ # resp.monitor_changes_pending_deployment #=> Boolean
9959
+ # resp.monitor_deployment.details_uri #=> String
9960
+ # resp.monitor_deployment.error_message #=> String
9961
+ # resp.monitor_deployment.status #=> String, one of "NOT_DEPLOYED", "DRY_RUN_DEPLOYMENT_COMPLETE", "DRY_RUN_DEPLOYMENT_FAILED", "DRY_RUN_DEPLOYMENT_IN_PROGRESS", "DEPLOYMENT_COMPLETE", "DEPLOYMENT_FAILED", "DEPLOYMENT_IN_PROGRESS", "DELETE_COMPLETE", "DELETE_FAILED", "DELETE_IN_PROGRESS"
9962
+ # resp.name #=> String
9963
+ # resp.status #=> String, one of "CREATE_IN_PROGRESS", "CREATE_COMPLETE", "CREATE_FAILED", "UPDATE_IN_PROGRESS", "UPDATE_COMPLETE", "UPDATE_REVERTED", "UPDATE_FAILED", "READY", "NOT_READY"
9964
+ # resp.tags #=> Hash
9965
+ # resp.tags["__string"] #=> String
9966
+ #
9967
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CreateSignalMap AWS API Documentation
9968
+ #
9969
+ # @overload create_signal_map(params = {})
9970
+ # @param [Hash] params ({})
9971
+ def create_signal_map(params = {}, options = {})
9972
+ req = build_request(:create_signal_map, params)
9973
+ req.send_request(options)
9974
+ end
9975
+
9976
+ # Deletes a cloudwatch alarm template.
9977
+ #
9978
+ # @option params [required, String] :identifier
9979
+ #
9980
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
9981
+ #
9982
+ # @example Request syntax with placeholder values
9983
+ #
9984
+ # resp = client.delete_cloud_watch_alarm_template({
9985
+ # identifier: "__string", # required
9986
+ # })
9987
+ #
9988
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DeleteCloudWatchAlarmTemplate AWS API Documentation
9989
+ #
9990
+ # @overload delete_cloud_watch_alarm_template(params = {})
9991
+ # @param [Hash] params ({})
9992
+ def delete_cloud_watch_alarm_template(params = {}, options = {})
9993
+ req = build_request(:delete_cloud_watch_alarm_template, params)
9994
+ req.send_request(options)
9995
+ end
9996
+
9997
+ # Deletes a cloudwatch alarm template group. You must detach this group
9998
+ # from all signal maps and ensure its existing templates are moved to
9999
+ # another group or deleted.
10000
+ #
10001
+ # @option params [required, String] :identifier
10002
+ #
10003
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
10004
+ #
10005
+ # @example Request syntax with placeholder values
10006
+ #
10007
+ # resp = client.delete_cloud_watch_alarm_template_group({
10008
+ # identifier: "__string", # required
10009
+ # })
10010
+ #
10011
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DeleteCloudWatchAlarmTemplateGroup AWS API Documentation
10012
+ #
10013
+ # @overload delete_cloud_watch_alarm_template_group(params = {})
10014
+ # @param [Hash] params ({})
10015
+ def delete_cloud_watch_alarm_template_group(params = {}, options = {})
10016
+ req = build_request(:delete_cloud_watch_alarm_template_group, params)
10017
+ req.send_request(options)
10018
+ end
10019
+
10020
+ # Deletes an eventbridge rule template.
10021
+ #
10022
+ # @option params [required, String] :identifier
10023
+ #
10024
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
10025
+ #
10026
+ # @example Request syntax with placeholder values
10027
+ #
10028
+ # resp = client.delete_event_bridge_rule_template({
10029
+ # identifier: "__string", # required
10030
+ # })
10031
+ #
10032
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DeleteEventBridgeRuleTemplate AWS API Documentation
10033
+ #
10034
+ # @overload delete_event_bridge_rule_template(params = {})
10035
+ # @param [Hash] params ({})
10036
+ def delete_event_bridge_rule_template(params = {}, options = {})
10037
+ req = build_request(:delete_event_bridge_rule_template, params)
10038
+ req.send_request(options)
10039
+ end
10040
+
10041
+ # Deletes an eventbridge rule template group. You must detach this group
10042
+ # from all signal maps and ensure its existing templates are moved to
10043
+ # another group or deleted.
10044
+ #
10045
+ # @option params [required, String] :identifier
10046
+ #
10047
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
10048
+ #
10049
+ # @example Request syntax with placeholder values
10050
+ #
10051
+ # resp = client.delete_event_bridge_rule_template_group({
10052
+ # identifier: "__string", # required
10053
+ # })
10054
+ #
10055
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DeleteEventBridgeRuleTemplateGroup AWS API Documentation
10056
+ #
10057
+ # @overload delete_event_bridge_rule_template_group(params = {})
10058
+ # @param [Hash] params ({})
10059
+ def delete_event_bridge_rule_template_group(params = {}, options = {})
10060
+ req = build_request(:delete_event_bridge_rule_template_group, params)
10061
+ req.send_request(options)
10062
+ end
10063
+
10064
+ # Deletes the specified signal map.
10065
+ #
10066
+ # @option params [required, String] :identifier
10067
+ #
10068
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
10069
+ #
10070
+ # @example Request syntax with placeholder values
10071
+ #
10072
+ # resp = client.delete_signal_map({
10073
+ # identifier: "__string", # required
10074
+ # })
10075
+ #
10076
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DeleteSignalMap AWS API Documentation
10077
+ #
10078
+ # @overload delete_signal_map(params = {})
10079
+ # @param [Hash] params ({})
10080
+ def delete_signal_map(params = {}, options = {})
10081
+ req = build_request(:delete_signal_map, params)
10082
+ req.send_request(options)
10083
+ end
10084
+
10085
+ # Retrieves the specified cloudwatch alarm template.
10086
+ #
10087
+ # @option params [required, String] :identifier
10088
+ #
10089
+ # @return [Types::GetCloudWatchAlarmTemplateResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
10090
+ #
10091
+ # * {Types::GetCloudWatchAlarmTemplateResponse#arn #arn} => String
10092
+ # * {Types::GetCloudWatchAlarmTemplateResponse#comparison_operator #comparison_operator} => String
10093
+ # * {Types::GetCloudWatchAlarmTemplateResponse#created_at #created_at} => Time
10094
+ # * {Types::GetCloudWatchAlarmTemplateResponse#datapoints_to_alarm #datapoints_to_alarm} => Integer
10095
+ # * {Types::GetCloudWatchAlarmTemplateResponse#description #description} => String
10096
+ # * {Types::GetCloudWatchAlarmTemplateResponse#evaluation_periods #evaluation_periods} => Integer
10097
+ # * {Types::GetCloudWatchAlarmTemplateResponse#group_id #group_id} => String
10098
+ # * {Types::GetCloudWatchAlarmTemplateResponse#id #id} => String
10099
+ # * {Types::GetCloudWatchAlarmTemplateResponse#metric_name #metric_name} => String
10100
+ # * {Types::GetCloudWatchAlarmTemplateResponse#modified_at #modified_at} => Time
10101
+ # * {Types::GetCloudWatchAlarmTemplateResponse#name #name} => String
10102
+ # * {Types::GetCloudWatchAlarmTemplateResponse#period #period} => Integer
10103
+ # * {Types::GetCloudWatchAlarmTemplateResponse#statistic #statistic} => String
10104
+ # * {Types::GetCloudWatchAlarmTemplateResponse#tags #tags} => Hash&lt;String,String&gt;
10105
+ # * {Types::GetCloudWatchAlarmTemplateResponse#target_resource_type #target_resource_type} => String
10106
+ # * {Types::GetCloudWatchAlarmTemplateResponse#threshold #threshold} => Float
10107
+ # * {Types::GetCloudWatchAlarmTemplateResponse#treat_missing_data #treat_missing_data} => String
10108
+ #
10109
+ # @example Request syntax with placeholder values
10110
+ #
10111
+ # resp = client.get_cloud_watch_alarm_template({
10112
+ # identifier: "__string", # required
10113
+ # })
10114
+ #
10115
+ # @example Response structure
10116
+ #
10117
+ # resp.arn #=> String
10118
+ # resp.comparison_operator #=> String, one of "GreaterThanOrEqualToThreshold", "GreaterThanThreshold", "LessThanThreshold", "LessThanOrEqualToThreshold"
10119
+ # resp.created_at #=> Time
10120
+ # resp.datapoints_to_alarm #=> Integer
10121
+ # resp.description #=> String
10122
+ # resp.evaluation_periods #=> Integer
10123
+ # resp.group_id #=> String
10124
+ # resp.id #=> String
10125
+ # resp.metric_name #=> String
10126
+ # resp.modified_at #=> Time
10127
+ # resp.name #=> String
10128
+ # resp.period #=> Integer
10129
+ # resp.statistic #=> String, one of "SampleCount", "Average", "Sum", "Minimum", "Maximum"
10130
+ # resp.tags #=> Hash
10131
+ # resp.tags["__string"] #=> String
10132
+ # resp.target_resource_type #=> String, one of "CLOUDFRONT_DISTRIBUTION", "MEDIALIVE_MULTIPLEX", "MEDIALIVE_CHANNEL", "MEDIALIVE_INPUT_DEVICE", "MEDIAPACKAGE_CHANNEL", "MEDIAPACKAGE_ORIGIN_ENDPOINT", "MEDIACONNECT_FLOW", "S3_BUCKET"
10133
+ # resp.threshold #=> Float
10134
+ # resp.treat_missing_data #=> String, one of "notBreaching", "breaching", "ignore", "missing"
10135
+ #
10136
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/GetCloudWatchAlarmTemplate AWS API Documentation
10137
+ #
10138
+ # @overload get_cloud_watch_alarm_template(params = {})
10139
+ # @param [Hash] params ({})
10140
+ def get_cloud_watch_alarm_template(params = {}, options = {})
10141
+ req = build_request(:get_cloud_watch_alarm_template, params)
10142
+ req.send_request(options)
10143
+ end
10144
+
10145
+ # Retrieves the specified cloudwatch alarm template group.
10146
+ #
10147
+ # @option params [required, String] :identifier
10148
+ #
10149
+ # @return [Types::GetCloudWatchAlarmTemplateGroupResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
10150
+ #
10151
+ # * {Types::GetCloudWatchAlarmTemplateGroupResponse#arn #arn} => String
10152
+ # * {Types::GetCloudWatchAlarmTemplateGroupResponse#created_at #created_at} => Time
10153
+ # * {Types::GetCloudWatchAlarmTemplateGroupResponse#description #description} => String
10154
+ # * {Types::GetCloudWatchAlarmTemplateGroupResponse#id #id} => String
10155
+ # * {Types::GetCloudWatchAlarmTemplateGroupResponse#modified_at #modified_at} => Time
10156
+ # * {Types::GetCloudWatchAlarmTemplateGroupResponse#name #name} => String
10157
+ # * {Types::GetCloudWatchAlarmTemplateGroupResponse#tags #tags} => Hash&lt;String,String&gt;
10158
+ #
10159
+ # @example Request syntax with placeholder values
10160
+ #
10161
+ # resp = client.get_cloud_watch_alarm_template_group({
10162
+ # identifier: "__string", # required
10163
+ # })
10164
+ #
10165
+ # @example Response structure
10166
+ #
10167
+ # resp.arn #=> String
10168
+ # resp.created_at #=> Time
10169
+ # resp.description #=> String
10170
+ # resp.id #=> String
10171
+ # resp.modified_at #=> Time
10172
+ # resp.name #=> String
10173
+ # resp.tags #=> Hash
10174
+ # resp.tags["__string"] #=> String
10175
+ #
10176
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/GetCloudWatchAlarmTemplateGroup AWS API Documentation
10177
+ #
10178
+ # @overload get_cloud_watch_alarm_template_group(params = {})
10179
+ # @param [Hash] params ({})
10180
+ def get_cloud_watch_alarm_template_group(params = {}, options = {})
10181
+ req = build_request(:get_cloud_watch_alarm_template_group, params)
10182
+ req.send_request(options)
10183
+ end
10184
+
10185
+ # Retrieves the specified eventbridge rule template.
10186
+ #
10187
+ # @option params [required, String] :identifier
10188
+ #
10189
+ # @return [Types::GetEventBridgeRuleTemplateResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
10190
+ #
10191
+ # * {Types::GetEventBridgeRuleTemplateResponse#arn #arn} => String
10192
+ # * {Types::GetEventBridgeRuleTemplateResponse#created_at #created_at} => Time
10193
+ # * {Types::GetEventBridgeRuleTemplateResponse#description #description} => String
10194
+ # * {Types::GetEventBridgeRuleTemplateResponse#event_targets #event_targets} => Array&lt;Types::EventBridgeRuleTemplateTarget&gt;
10195
+ # * {Types::GetEventBridgeRuleTemplateResponse#event_type #event_type} => String
10196
+ # * {Types::GetEventBridgeRuleTemplateResponse#group_id #group_id} => String
10197
+ # * {Types::GetEventBridgeRuleTemplateResponse#id #id} => String
10198
+ # * {Types::GetEventBridgeRuleTemplateResponse#modified_at #modified_at} => Time
10199
+ # * {Types::GetEventBridgeRuleTemplateResponse#name #name} => String
10200
+ # * {Types::GetEventBridgeRuleTemplateResponse#tags #tags} => Hash&lt;String,String&gt;
10201
+ #
10202
+ # @example Request syntax with placeholder values
10203
+ #
10204
+ # resp = client.get_event_bridge_rule_template({
10205
+ # identifier: "__string", # required
10206
+ # })
10207
+ #
10208
+ # @example Response structure
10209
+ #
10210
+ # resp.arn #=> String
10211
+ # resp.created_at #=> Time
10212
+ # resp.description #=> String
10213
+ # resp.event_targets #=> Array
10214
+ # resp.event_targets[0].arn #=> String
10215
+ # resp.event_type #=> String, one of "MEDIALIVE_MULTIPLEX_ALERT", "MEDIALIVE_MULTIPLEX_STATE_CHANGE", "MEDIALIVE_CHANNEL_ALERT", "MEDIALIVE_CHANNEL_INPUT_CHANGE", "MEDIALIVE_CHANNEL_STATE_CHANGE", "MEDIAPACKAGE_INPUT_NOTIFICATION", "MEDIAPACKAGE_KEY_PROVIDER_NOTIFICATION", "MEDIAPACKAGE_HARVEST_JOB_NOTIFICATION", "SIGNAL_MAP_ACTIVE_ALARM", "MEDIACONNECT_ALERT", "MEDIACONNECT_SOURCE_HEALTH", "MEDIACONNECT_OUTPUT_HEALTH", "MEDIACONNECT_FLOW_STATUS_CHANGE"
10216
+ # resp.group_id #=> String
10217
+ # resp.id #=> String
10218
+ # resp.modified_at #=> Time
10219
+ # resp.name #=> String
10220
+ # resp.tags #=> Hash
10221
+ # resp.tags["__string"] #=> String
10222
+ #
10223
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/GetEventBridgeRuleTemplate AWS API Documentation
10224
+ #
10225
+ # @overload get_event_bridge_rule_template(params = {})
10226
+ # @param [Hash] params ({})
10227
+ def get_event_bridge_rule_template(params = {}, options = {})
10228
+ req = build_request(:get_event_bridge_rule_template, params)
10229
+ req.send_request(options)
10230
+ end
10231
+
10232
+ # Retrieves the specified eventbridge rule template group.
10233
+ #
10234
+ # @option params [required, String] :identifier
10235
+ #
10236
+ # @return [Types::GetEventBridgeRuleTemplateGroupResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
10237
+ #
10238
+ # * {Types::GetEventBridgeRuleTemplateGroupResponse#arn #arn} => String
10239
+ # * {Types::GetEventBridgeRuleTemplateGroupResponse#created_at #created_at} => Time
10240
+ # * {Types::GetEventBridgeRuleTemplateGroupResponse#description #description} => String
10241
+ # * {Types::GetEventBridgeRuleTemplateGroupResponse#id #id} => String
10242
+ # * {Types::GetEventBridgeRuleTemplateGroupResponse#modified_at #modified_at} => Time
10243
+ # * {Types::GetEventBridgeRuleTemplateGroupResponse#name #name} => String
10244
+ # * {Types::GetEventBridgeRuleTemplateGroupResponse#tags #tags} => Hash&lt;String,String&gt;
10245
+ #
10246
+ # @example Request syntax with placeholder values
10247
+ #
10248
+ # resp = client.get_event_bridge_rule_template_group({
10249
+ # identifier: "__string", # required
10250
+ # })
10251
+ #
10252
+ # @example Response structure
10253
+ #
10254
+ # resp.arn #=> String
10255
+ # resp.created_at #=> Time
10256
+ # resp.description #=> String
10257
+ # resp.id #=> String
10258
+ # resp.modified_at #=> Time
10259
+ # resp.name #=> String
10260
+ # resp.tags #=> Hash
10261
+ # resp.tags["__string"] #=> String
10262
+ #
10263
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/GetEventBridgeRuleTemplateGroup AWS API Documentation
10264
+ #
10265
+ # @overload get_event_bridge_rule_template_group(params = {})
10266
+ # @param [Hash] params ({})
10267
+ def get_event_bridge_rule_template_group(params = {}, options = {})
10268
+ req = build_request(:get_event_bridge_rule_template_group, params)
10269
+ req.send_request(options)
10270
+ end
10271
+
10272
+ # Retrieves the specified signal map.
10273
+ #
10274
+ # @option params [required, String] :identifier
10275
+ #
10276
+ # @return [Types::GetSignalMapResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
10277
+ #
10278
+ # * {Types::GetSignalMapResponse#arn #arn} => String
10279
+ # * {Types::GetSignalMapResponse#cloud_watch_alarm_template_group_ids #cloud_watch_alarm_template_group_ids} => Array&lt;String&gt;
10280
+ # * {Types::GetSignalMapResponse#created_at #created_at} => Time
10281
+ # * {Types::GetSignalMapResponse#description #description} => String
10282
+ # * {Types::GetSignalMapResponse#discovery_entry_point_arn #discovery_entry_point_arn} => String
10283
+ # * {Types::GetSignalMapResponse#error_message #error_message} => String
10284
+ # * {Types::GetSignalMapResponse#event_bridge_rule_template_group_ids #event_bridge_rule_template_group_ids} => Array&lt;String&gt;
10285
+ # * {Types::GetSignalMapResponse#failed_media_resource_map #failed_media_resource_map} => Hash&lt;String,Types::MediaResource&gt;
10286
+ # * {Types::GetSignalMapResponse#id #id} => String
10287
+ # * {Types::GetSignalMapResponse#last_discovered_at #last_discovered_at} => Time
10288
+ # * {Types::GetSignalMapResponse#last_successful_monitor_deployment #last_successful_monitor_deployment} => Types::SuccessfulMonitorDeployment
10289
+ # * {Types::GetSignalMapResponse#media_resource_map #media_resource_map} => Hash&lt;String,Types::MediaResource&gt;
10290
+ # * {Types::GetSignalMapResponse#modified_at #modified_at} => Time
10291
+ # * {Types::GetSignalMapResponse#monitor_changes_pending_deployment #monitor_changes_pending_deployment} => Boolean
10292
+ # * {Types::GetSignalMapResponse#monitor_deployment #monitor_deployment} => Types::MonitorDeployment
10293
+ # * {Types::GetSignalMapResponse#name #name} => String
10294
+ # * {Types::GetSignalMapResponse#status #status} => String
10295
+ # * {Types::GetSignalMapResponse#tags #tags} => Hash&lt;String,String&gt;
10296
+ #
10297
+ # @example Request syntax with placeholder values
10298
+ #
10299
+ # resp = client.get_signal_map({
10300
+ # identifier: "__string", # required
10301
+ # })
10302
+ #
10303
+ # @example Response structure
10304
+ #
10305
+ # resp.arn #=> String
10306
+ # resp.cloud_watch_alarm_template_group_ids #=> Array
10307
+ # resp.cloud_watch_alarm_template_group_ids[0] #=> String
10308
+ # resp.created_at #=> Time
10309
+ # resp.description #=> String
10310
+ # resp.discovery_entry_point_arn #=> String
10311
+ # resp.error_message #=> String
10312
+ # resp.event_bridge_rule_template_group_ids #=> Array
10313
+ # resp.event_bridge_rule_template_group_ids[0] #=> String
10314
+ # resp.failed_media_resource_map #=> Hash
10315
+ # resp.failed_media_resource_map["__string"].destinations #=> Array
10316
+ # resp.failed_media_resource_map["__string"].destinations[0].arn #=> String
10317
+ # resp.failed_media_resource_map["__string"].destinations[0].name #=> String
10318
+ # resp.failed_media_resource_map["__string"].name #=> String
10319
+ # resp.failed_media_resource_map["__string"].sources #=> Array
10320
+ # resp.failed_media_resource_map["__string"].sources[0].arn #=> String
10321
+ # resp.failed_media_resource_map["__string"].sources[0].name #=> String
10322
+ # resp.id #=> String
10323
+ # resp.last_discovered_at #=> Time
10324
+ # resp.last_successful_monitor_deployment.details_uri #=> String
10325
+ # resp.last_successful_monitor_deployment.status #=> String, one of "NOT_DEPLOYED", "DRY_RUN_DEPLOYMENT_COMPLETE", "DRY_RUN_DEPLOYMENT_FAILED", "DRY_RUN_DEPLOYMENT_IN_PROGRESS", "DEPLOYMENT_COMPLETE", "DEPLOYMENT_FAILED", "DEPLOYMENT_IN_PROGRESS", "DELETE_COMPLETE", "DELETE_FAILED", "DELETE_IN_PROGRESS"
10326
+ # resp.media_resource_map #=> Hash
10327
+ # resp.media_resource_map["__string"].destinations #=> Array
10328
+ # resp.media_resource_map["__string"].destinations[0].arn #=> String
10329
+ # resp.media_resource_map["__string"].destinations[0].name #=> String
10330
+ # resp.media_resource_map["__string"].name #=> String
10331
+ # resp.media_resource_map["__string"].sources #=> Array
10332
+ # resp.media_resource_map["__string"].sources[0].arn #=> String
10333
+ # resp.media_resource_map["__string"].sources[0].name #=> String
10334
+ # resp.modified_at #=> Time
10335
+ # resp.monitor_changes_pending_deployment #=> Boolean
10336
+ # resp.monitor_deployment.details_uri #=> String
10337
+ # resp.monitor_deployment.error_message #=> String
10338
+ # resp.monitor_deployment.status #=> String, one of "NOT_DEPLOYED", "DRY_RUN_DEPLOYMENT_COMPLETE", "DRY_RUN_DEPLOYMENT_FAILED", "DRY_RUN_DEPLOYMENT_IN_PROGRESS", "DEPLOYMENT_COMPLETE", "DEPLOYMENT_FAILED", "DEPLOYMENT_IN_PROGRESS", "DELETE_COMPLETE", "DELETE_FAILED", "DELETE_IN_PROGRESS"
10339
+ # resp.name #=> String
10340
+ # resp.status #=> String, one of "CREATE_IN_PROGRESS", "CREATE_COMPLETE", "CREATE_FAILED", "UPDATE_IN_PROGRESS", "UPDATE_COMPLETE", "UPDATE_REVERTED", "UPDATE_FAILED", "READY", "NOT_READY"
10341
+ # resp.tags #=> Hash
10342
+ # resp.tags["__string"] #=> String
10343
+ #
10344
+ #
10345
+ # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
10346
+ #
10347
+ # * signal_map_created
10348
+ # * signal_map_monitor_deleted
10349
+ # * signal_map_monitor_deployed
10350
+ # * signal_map_updated
10351
+ #
10352
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/GetSignalMap AWS API Documentation
10353
+ #
10354
+ # @overload get_signal_map(params = {})
10355
+ # @param [Hash] params ({})
10356
+ def get_signal_map(params = {}, options = {})
10357
+ req = build_request(:get_signal_map, params)
10358
+ req.send_request(options)
10359
+ end
10360
+
10361
+ # Lists cloudwatch alarm template groups.
10362
+ #
10363
+ # @option params [Integer] :max_results
10364
+ #
10365
+ # @option params [String] :next_token
10366
+ #
10367
+ # @option params [String] :scope
10368
+ #
10369
+ # @option params [String] :signal_map_identifier
10370
+ #
10371
+ # @return [Types::ListCloudWatchAlarmTemplateGroupsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
10372
+ #
10373
+ # * {Types::ListCloudWatchAlarmTemplateGroupsResponse#cloud_watch_alarm_template_groups #cloud_watch_alarm_template_groups} => Array&lt;Types::CloudWatchAlarmTemplateGroupSummary&gt;
10374
+ # * {Types::ListCloudWatchAlarmTemplateGroupsResponse#next_token #next_token} => String
10375
+ #
10376
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
10377
+ #
10378
+ # @example Request syntax with placeholder values
10379
+ #
10380
+ # resp = client.list_cloud_watch_alarm_template_groups({
10381
+ # max_results: 1,
10382
+ # next_token: "__string",
10383
+ # scope: "__string",
10384
+ # signal_map_identifier: "__string",
10385
+ # })
10386
+ #
10387
+ # @example Response structure
10388
+ #
10389
+ # resp.cloud_watch_alarm_template_groups #=> Array
10390
+ # resp.cloud_watch_alarm_template_groups[0].arn #=> String
10391
+ # resp.cloud_watch_alarm_template_groups[0].created_at #=> Time
10392
+ # resp.cloud_watch_alarm_template_groups[0].description #=> String
10393
+ # resp.cloud_watch_alarm_template_groups[0].id #=> String
10394
+ # resp.cloud_watch_alarm_template_groups[0].modified_at #=> Time
10395
+ # resp.cloud_watch_alarm_template_groups[0].name #=> String
10396
+ # resp.cloud_watch_alarm_template_groups[0].tags #=> Hash
10397
+ # resp.cloud_watch_alarm_template_groups[0].tags["__string"] #=> String
10398
+ # resp.cloud_watch_alarm_template_groups[0].template_count #=> Integer
10399
+ # resp.next_token #=> String
10400
+ #
10401
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ListCloudWatchAlarmTemplateGroups AWS API Documentation
10402
+ #
10403
+ # @overload list_cloud_watch_alarm_template_groups(params = {})
10404
+ # @param [Hash] params ({})
10405
+ def list_cloud_watch_alarm_template_groups(params = {}, options = {})
10406
+ req = build_request(:list_cloud_watch_alarm_template_groups, params)
10407
+ req.send_request(options)
10408
+ end
10409
+
10410
+ # Lists cloudwatch alarm templates.
10411
+ #
10412
+ # @option params [String] :group_identifier
10413
+ #
10414
+ # @option params [Integer] :max_results
10415
+ #
10416
+ # @option params [String] :next_token
10417
+ #
10418
+ # @option params [String] :scope
10419
+ #
10420
+ # @option params [String] :signal_map_identifier
10421
+ #
10422
+ # @return [Types::ListCloudWatchAlarmTemplatesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
10423
+ #
10424
+ # * {Types::ListCloudWatchAlarmTemplatesResponse#cloud_watch_alarm_templates #cloud_watch_alarm_templates} => Array&lt;Types::CloudWatchAlarmTemplateSummary&gt;
10425
+ # * {Types::ListCloudWatchAlarmTemplatesResponse#next_token #next_token} => String
10426
+ #
10427
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
10428
+ #
10429
+ # @example Request syntax with placeholder values
10430
+ #
10431
+ # resp = client.list_cloud_watch_alarm_templates({
10432
+ # group_identifier: "__string",
10433
+ # max_results: 1,
10434
+ # next_token: "__string",
10435
+ # scope: "__string",
10436
+ # signal_map_identifier: "__string",
10437
+ # })
10438
+ #
10439
+ # @example Response structure
10440
+ #
10441
+ # resp.cloud_watch_alarm_templates #=> Array
10442
+ # resp.cloud_watch_alarm_templates[0].arn #=> String
10443
+ # resp.cloud_watch_alarm_templates[0].comparison_operator #=> String, one of "GreaterThanOrEqualToThreshold", "GreaterThanThreshold", "LessThanThreshold", "LessThanOrEqualToThreshold"
10444
+ # resp.cloud_watch_alarm_templates[0].created_at #=> Time
10445
+ # resp.cloud_watch_alarm_templates[0].datapoints_to_alarm #=> Integer
10446
+ # resp.cloud_watch_alarm_templates[0].description #=> String
10447
+ # resp.cloud_watch_alarm_templates[0].evaluation_periods #=> Integer
10448
+ # resp.cloud_watch_alarm_templates[0].group_id #=> String
10449
+ # resp.cloud_watch_alarm_templates[0].id #=> String
10450
+ # resp.cloud_watch_alarm_templates[0].metric_name #=> String
10451
+ # resp.cloud_watch_alarm_templates[0].modified_at #=> Time
10452
+ # resp.cloud_watch_alarm_templates[0].name #=> String
10453
+ # resp.cloud_watch_alarm_templates[0].period #=> Integer
10454
+ # resp.cloud_watch_alarm_templates[0].statistic #=> String, one of "SampleCount", "Average", "Sum", "Minimum", "Maximum"
10455
+ # resp.cloud_watch_alarm_templates[0].tags #=> Hash
10456
+ # resp.cloud_watch_alarm_templates[0].tags["__string"] #=> String
10457
+ # resp.cloud_watch_alarm_templates[0].target_resource_type #=> String, one of "CLOUDFRONT_DISTRIBUTION", "MEDIALIVE_MULTIPLEX", "MEDIALIVE_CHANNEL", "MEDIALIVE_INPUT_DEVICE", "MEDIAPACKAGE_CHANNEL", "MEDIAPACKAGE_ORIGIN_ENDPOINT", "MEDIACONNECT_FLOW", "S3_BUCKET"
10458
+ # resp.cloud_watch_alarm_templates[0].threshold #=> Float
10459
+ # resp.cloud_watch_alarm_templates[0].treat_missing_data #=> String, one of "notBreaching", "breaching", "ignore", "missing"
10460
+ # resp.next_token #=> String
10461
+ #
10462
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ListCloudWatchAlarmTemplates AWS API Documentation
10463
+ #
10464
+ # @overload list_cloud_watch_alarm_templates(params = {})
10465
+ # @param [Hash] params ({})
10466
+ def list_cloud_watch_alarm_templates(params = {}, options = {})
10467
+ req = build_request(:list_cloud_watch_alarm_templates, params)
10468
+ req.send_request(options)
10469
+ end
10470
+
10471
+ # Lists eventbridge rule template groups.
10472
+ #
10473
+ # @option params [Integer] :max_results
10474
+ #
10475
+ # @option params [String] :next_token
10476
+ #
10477
+ # @option params [String] :signal_map_identifier
10478
+ #
10479
+ # @return [Types::ListEventBridgeRuleTemplateGroupsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
10480
+ #
10481
+ # * {Types::ListEventBridgeRuleTemplateGroupsResponse#event_bridge_rule_template_groups #event_bridge_rule_template_groups} => Array&lt;Types::EventBridgeRuleTemplateGroupSummary&gt;
10482
+ # * {Types::ListEventBridgeRuleTemplateGroupsResponse#next_token #next_token} => String
10483
+ #
10484
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
10485
+ #
10486
+ # @example Request syntax with placeholder values
10487
+ #
10488
+ # resp = client.list_event_bridge_rule_template_groups({
10489
+ # max_results: 1,
10490
+ # next_token: "__string",
10491
+ # signal_map_identifier: "__string",
10492
+ # })
10493
+ #
10494
+ # @example Response structure
10495
+ #
10496
+ # resp.event_bridge_rule_template_groups #=> Array
10497
+ # resp.event_bridge_rule_template_groups[0].arn #=> String
10498
+ # resp.event_bridge_rule_template_groups[0].created_at #=> Time
10499
+ # resp.event_bridge_rule_template_groups[0].description #=> String
10500
+ # resp.event_bridge_rule_template_groups[0].id #=> String
10501
+ # resp.event_bridge_rule_template_groups[0].modified_at #=> Time
10502
+ # resp.event_bridge_rule_template_groups[0].name #=> String
10503
+ # resp.event_bridge_rule_template_groups[0].tags #=> Hash
10504
+ # resp.event_bridge_rule_template_groups[0].tags["__string"] #=> String
10505
+ # resp.event_bridge_rule_template_groups[0].template_count #=> Integer
10506
+ # resp.next_token #=> String
10507
+ #
10508
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ListEventBridgeRuleTemplateGroups AWS API Documentation
10509
+ #
10510
+ # @overload list_event_bridge_rule_template_groups(params = {})
10511
+ # @param [Hash] params ({})
10512
+ def list_event_bridge_rule_template_groups(params = {}, options = {})
10513
+ req = build_request(:list_event_bridge_rule_template_groups, params)
10514
+ req.send_request(options)
10515
+ end
10516
+
10517
+ # Lists eventbridge rule templates.
10518
+ #
10519
+ # @option params [String] :group_identifier
10520
+ #
10521
+ # @option params [Integer] :max_results
10522
+ #
10523
+ # @option params [String] :next_token
10524
+ #
10525
+ # @option params [String] :signal_map_identifier
10526
+ #
10527
+ # @return [Types::ListEventBridgeRuleTemplatesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
10528
+ #
10529
+ # * {Types::ListEventBridgeRuleTemplatesResponse#event_bridge_rule_templates #event_bridge_rule_templates} => Array&lt;Types::EventBridgeRuleTemplateSummary&gt;
10530
+ # * {Types::ListEventBridgeRuleTemplatesResponse#next_token #next_token} => String
10531
+ #
10532
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
10533
+ #
10534
+ # @example Request syntax with placeholder values
10535
+ #
10536
+ # resp = client.list_event_bridge_rule_templates({
10537
+ # group_identifier: "__string",
10538
+ # max_results: 1,
10539
+ # next_token: "__string",
10540
+ # signal_map_identifier: "__string",
10541
+ # })
10542
+ #
10543
+ # @example Response structure
10544
+ #
10545
+ # resp.event_bridge_rule_templates #=> Array
10546
+ # resp.event_bridge_rule_templates[0].arn #=> String
10547
+ # resp.event_bridge_rule_templates[0].created_at #=> Time
10548
+ # resp.event_bridge_rule_templates[0].description #=> String
10549
+ # resp.event_bridge_rule_templates[0].event_target_count #=> Integer
10550
+ # resp.event_bridge_rule_templates[0].event_type #=> String, one of "MEDIALIVE_MULTIPLEX_ALERT", "MEDIALIVE_MULTIPLEX_STATE_CHANGE", "MEDIALIVE_CHANNEL_ALERT", "MEDIALIVE_CHANNEL_INPUT_CHANGE", "MEDIALIVE_CHANNEL_STATE_CHANGE", "MEDIAPACKAGE_INPUT_NOTIFICATION", "MEDIAPACKAGE_KEY_PROVIDER_NOTIFICATION", "MEDIAPACKAGE_HARVEST_JOB_NOTIFICATION", "SIGNAL_MAP_ACTIVE_ALARM", "MEDIACONNECT_ALERT", "MEDIACONNECT_SOURCE_HEALTH", "MEDIACONNECT_OUTPUT_HEALTH", "MEDIACONNECT_FLOW_STATUS_CHANGE"
10551
+ # resp.event_bridge_rule_templates[0].group_id #=> String
10552
+ # resp.event_bridge_rule_templates[0].id #=> String
10553
+ # resp.event_bridge_rule_templates[0].modified_at #=> Time
10554
+ # resp.event_bridge_rule_templates[0].name #=> String
10555
+ # resp.event_bridge_rule_templates[0].tags #=> Hash
10556
+ # resp.event_bridge_rule_templates[0].tags["__string"] #=> String
10557
+ # resp.next_token #=> String
10558
+ #
10559
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ListEventBridgeRuleTemplates AWS API Documentation
10560
+ #
10561
+ # @overload list_event_bridge_rule_templates(params = {})
10562
+ # @param [Hash] params ({})
10563
+ def list_event_bridge_rule_templates(params = {}, options = {})
10564
+ req = build_request(:list_event_bridge_rule_templates, params)
10565
+ req.send_request(options)
10566
+ end
10567
+
10568
+ # Lists signal maps.
10569
+ #
10570
+ # @option params [String] :cloud_watch_alarm_template_group_identifier
10571
+ #
10572
+ # @option params [String] :event_bridge_rule_template_group_identifier
10573
+ #
10574
+ # @option params [Integer] :max_results
10575
+ #
10576
+ # @option params [String] :next_token
10577
+ #
10578
+ # @return [Types::ListSignalMapsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
10579
+ #
10580
+ # * {Types::ListSignalMapsResponse#next_token #next_token} => String
10581
+ # * {Types::ListSignalMapsResponse#signal_maps #signal_maps} => Array&lt;Types::SignalMapSummary&gt;
10582
+ #
10583
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
10584
+ #
10585
+ # @example Request syntax with placeholder values
10586
+ #
10587
+ # resp = client.list_signal_maps({
10588
+ # cloud_watch_alarm_template_group_identifier: "__string",
10589
+ # event_bridge_rule_template_group_identifier: "__string",
10590
+ # max_results: 1,
10591
+ # next_token: "__string",
10592
+ # })
10593
+ #
10594
+ # @example Response structure
10595
+ #
10596
+ # resp.next_token #=> String
10597
+ # resp.signal_maps #=> Array
10598
+ # resp.signal_maps[0].arn #=> String
10599
+ # resp.signal_maps[0].created_at #=> Time
10600
+ # resp.signal_maps[0].description #=> String
10601
+ # resp.signal_maps[0].id #=> String
10602
+ # resp.signal_maps[0].modified_at #=> Time
10603
+ # resp.signal_maps[0].monitor_deployment_status #=> String, one of "NOT_DEPLOYED", "DRY_RUN_DEPLOYMENT_COMPLETE", "DRY_RUN_DEPLOYMENT_FAILED", "DRY_RUN_DEPLOYMENT_IN_PROGRESS", "DEPLOYMENT_COMPLETE", "DEPLOYMENT_FAILED", "DEPLOYMENT_IN_PROGRESS", "DELETE_COMPLETE", "DELETE_FAILED", "DELETE_IN_PROGRESS"
10604
+ # resp.signal_maps[0].name #=> String
10605
+ # resp.signal_maps[0].status #=> String, one of "CREATE_IN_PROGRESS", "CREATE_COMPLETE", "CREATE_FAILED", "UPDATE_IN_PROGRESS", "UPDATE_COMPLETE", "UPDATE_REVERTED", "UPDATE_FAILED", "READY", "NOT_READY"
10606
+ # resp.signal_maps[0].tags #=> Hash
10607
+ # resp.signal_maps[0].tags["__string"] #=> String
10608
+ #
10609
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ListSignalMaps AWS API Documentation
10610
+ #
10611
+ # @overload list_signal_maps(params = {})
10612
+ # @param [Hash] params ({})
10613
+ def list_signal_maps(params = {}, options = {})
10614
+ req = build_request(:list_signal_maps, params)
10615
+ req.send_request(options)
10616
+ end
10617
+
10618
+ # Initiates a deployment to delete the monitor of the specified signal
10619
+ # map.
10620
+ #
10621
+ # @option params [required, String] :identifier
10622
+ #
10623
+ # @return [Types::StartDeleteMonitorDeploymentResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
10624
+ #
10625
+ # * {Types::StartDeleteMonitorDeploymentResponse#arn #arn} => String
10626
+ # * {Types::StartDeleteMonitorDeploymentResponse#cloud_watch_alarm_template_group_ids #cloud_watch_alarm_template_group_ids} => Array&lt;String&gt;
10627
+ # * {Types::StartDeleteMonitorDeploymentResponse#created_at #created_at} => Time
10628
+ # * {Types::StartDeleteMonitorDeploymentResponse#description #description} => String
10629
+ # * {Types::StartDeleteMonitorDeploymentResponse#discovery_entry_point_arn #discovery_entry_point_arn} => String
10630
+ # * {Types::StartDeleteMonitorDeploymentResponse#error_message #error_message} => String
10631
+ # * {Types::StartDeleteMonitorDeploymentResponse#event_bridge_rule_template_group_ids #event_bridge_rule_template_group_ids} => Array&lt;String&gt;
10632
+ # * {Types::StartDeleteMonitorDeploymentResponse#failed_media_resource_map #failed_media_resource_map} => Hash&lt;String,Types::MediaResource&gt;
10633
+ # * {Types::StartDeleteMonitorDeploymentResponse#id #id} => String
10634
+ # * {Types::StartDeleteMonitorDeploymentResponse#last_discovered_at #last_discovered_at} => Time
10635
+ # * {Types::StartDeleteMonitorDeploymentResponse#last_successful_monitor_deployment #last_successful_monitor_deployment} => Types::SuccessfulMonitorDeployment
10636
+ # * {Types::StartDeleteMonitorDeploymentResponse#media_resource_map #media_resource_map} => Hash&lt;String,Types::MediaResource&gt;
10637
+ # * {Types::StartDeleteMonitorDeploymentResponse#modified_at #modified_at} => Time
10638
+ # * {Types::StartDeleteMonitorDeploymentResponse#monitor_changes_pending_deployment #monitor_changes_pending_deployment} => Boolean
10639
+ # * {Types::StartDeleteMonitorDeploymentResponse#monitor_deployment #monitor_deployment} => Types::MonitorDeployment
10640
+ # * {Types::StartDeleteMonitorDeploymentResponse#name #name} => String
10641
+ # * {Types::StartDeleteMonitorDeploymentResponse#status #status} => String
10642
+ # * {Types::StartDeleteMonitorDeploymentResponse#tags #tags} => Hash&lt;String,String&gt;
10643
+ #
10644
+ # @example Request syntax with placeholder values
10645
+ #
10646
+ # resp = client.start_delete_monitor_deployment({
10647
+ # identifier: "__string", # required
10648
+ # })
10649
+ #
10650
+ # @example Response structure
10651
+ #
10652
+ # resp.arn #=> String
10653
+ # resp.cloud_watch_alarm_template_group_ids #=> Array
10654
+ # resp.cloud_watch_alarm_template_group_ids[0] #=> String
10655
+ # resp.created_at #=> Time
10656
+ # resp.description #=> String
10657
+ # resp.discovery_entry_point_arn #=> String
10658
+ # resp.error_message #=> String
10659
+ # resp.event_bridge_rule_template_group_ids #=> Array
10660
+ # resp.event_bridge_rule_template_group_ids[0] #=> String
10661
+ # resp.failed_media_resource_map #=> Hash
10662
+ # resp.failed_media_resource_map["__string"].destinations #=> Array
10663
+ # resp.failed_media_resource_map["__string"].destinations[0].arn #=> String
10664
+ # resp.failed_media_resource_map["__string"].destinations[0].name #=> String
10665
+ # resp.failed_media_resource_map["__string"].name #=> String
10666
+ # resp.failed_media_resource_map["__string"].sources #=> Array
10667
+ # resp.failed_media_resource_map["__string"].sources[0].arn #=> String
10668
+ # resp.failed_media_resource_map["__string"].sources[0].name #=> String
10669
+ # resp.id #=> String
10670
+ # resp.last_discovered_at #=> Time
10671
+ # resp.last_successful_monitor_deployment.details_uri #=> String
10672
+ # resp.last_successful_monitor_deployment.status #=> String, one of "NOT_DEPLOYED", "DRY_RUN_DEPLOYMENT_COMPLETE", "DRY_RUN_DEPLOYMENT_FAILED", "DRY_RUN_DEPLOYMENT_IN_PROGRESS", "DEPLOYMENT_COMPLETE", "DEPLOYMENT_FAILED", "DEPLOYMENT_IN_PROGRESS", "DELETE_COMPLETE", "DELETE_FAILED", "DELETE_IN_PROGRESS"
10673
+ # resp.media_resource_map #=> Hash
10674
+ # resp.media_resource_map["__string"].destinations #=> Array
10675
+ # resp.media_resource_map["__string"].destinations[0].arn #=> String
10676
+ # resp.media_resource_map["__string"].destinations[0].name #=> String
10677
+ # resp.media_resource_map["__string"].name #=> String
10678
+ # resp.media_resource_map["__string"].sources #=> Array
10679
+ # resp.media_resource_map["__string"].sources[0].arn #=> String
10680
+ # resp.media_resource_map["__string"].sources[0].name #=> String
10681
+ # resp.modified_at #=> Time
10682
+ # resp.monitor_changes_pending_deployment #=> Boolean
10683
+ # resp.monitor_deployment.details_uri #=> String
10684
+ # resp.monitor_deployment.error_message #=> String
10685
+ # resp.monitor_deployment.status #=> String, one of "NOT_DEPLOYED", "DRY_RUN_DEPLOYMENT_COMPLETE", "DRY_RUN_DEPLOYMENT_FAILED", "DRY_RUN_DEPLOYMENT_IN_PROGRESS", "DEPLOYMENT_COMPLETE", "DEPLOYMENT_FAILED", "DEPLOYMENT_IN_PROGRESS", "DELETE_COMPLETE", "DELETE_FAILED", "DELETE_IN_PROGRESS"
10686
+ # resp.name #=> String
10687
+ # resp.status #=> String, one of "CREATE_IN_PROGRESS", "CREATE_COMPLETE", "CREATE_FAILED", "UPDATE_IN_PROGRESS", "UPDATE_COMPLETE", "UPDATE_REVERTED", "UPDATE_FAILED", "READY", "NOT_READY"
10688
+ # resp.tags #=> Hash
10689
+ # resp.tags["__string"] #=> String
10690
+ #
10691
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/StartDeleteMonitorDeployment AWS API Documentation
10692
+ #
10693
+ # @overload start_delete_monitor_deployment(params = {})
10694
+ # @param [Hash] params ({})
10695
+ def start_delete_monitor_deployment(params = {}, options = {})
10696
+ req = build_request(:start_delete_monitor_deployment, params)
10697
+ req.send_request(options)
10698
+ end
10699
+
10700
+ # Initiates a deployment to deploy the latest monitor of the specified
10701
+ # signal map.
10702
+ #
10703
+ # @option params [Boolean] :dry_run
10704
+ #
10705
+ # @option params [required, String] :identifier
10706
+ #
10707
+ # @return [Types::StartMonitorDeploymentResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
10708
+ #
10709
+ # * {Types::StartMonitorDeploymentResponse#arn #arn} => String
10710
+ # * {Types::StartMonitorDeploymentResponse#cloud_watch_alarm_template_group_ids #cloud_watch_alarm_template_group_ids} => Array&lt;String&gt;
10711
+ # * {Types::StartMonitorDeploymentResponse#created_at #created_at} => Time
10712
+ # * {Types::StartMonitorDeploymentResponse#description #description} => String
10713
+ # * {Types::StartMonitorDeploymentResponse#discovery_entry_point_arn #discovery_entry_point_arn} => String
10714
+ # * {Types::StartMonitorDeploymentResponse#error_message #error_message} => String
10715
+ # * {Types::StartMonitorDeploymentResponse#event_bridge_rule_template_group_ids #event_bridge_rule_template_group_ids} => Array&lt;String&gt;
10716
+ # * {Types::StartMonitorDeploymentResponse#failed_media_resource_map #failed_media_resource_map} => Hash&lt;String,Types::MediaResource&gt;
10717
+ # * {Types::StartMonitorDeploymentResponse#id #id} => String
10718
+ # * {Types::StartMonitorDeploymentResponse#last_discovered_at #last_discovered_at} => Time
10719
+ # * {Types::StartMonitorDeploymentResponse#last_successful_monitor_deployment #last_successful_monitor_deployment} => Types::SuccessfulMonitorDeployment
10720
+ # * {Types::StartMonitorDeploymentResponse#media_resource_map #media_resource_map} => Hash&lt;String,Types::MediaResource&gt;
10721
+ # * {Types::StartMonitorDeploymentResponse#modified_at #modified_at} => Time
10722
+ # * {Types::StartMonitorDeploymentResponse#monitor_changes_pending_deployment #monitor_changes_pending_deployment} => Boolean
10723
+ # * {Types::StartMonitorDeploymentResponse#monitor_deployment #monitor_deployment} => Types::MonitorDeployment
10724
+ # * {Types::StartMonitorDeploymentResponse#name #name} => String
10725
+ # * {Types::StartMonitorDeploymentResponse#status #status} => String
10726
+ # * {Types::StartMonitorDeploymentResponse#tags #tags} => Hash&lt;String,String&gt;
10727
+ #
10728
+ # @example Request syntax with placeholder values
10729
+ #
10730
+ # resp = client.start_monitor_deployment({
10731
+ # dry_run: false,
10732
+ # identifier: "__string", # required
10733
+ # })
10734
+ #
10735
+ # @example Response structure
10736
+ #
10737
+ # resp.arn #=> String
10738
+ # resp.cloud_watch_alarm_template_group_ids #=> Array
10739
+ # resp.cloud_watch_alarm_template_group_ids[0] #=> String
10740
+ # resp.created_at #=> Time
10741
+ # resp.description #=> String
10742
+ # resp.discovery_entry_point_arn #=> String
10743
+ # resp.error_message #=> String
10744
+ # resp.event_bridge_rule_template_group_ids #=> Array
10745
+ # resp.event_bridge_rule_template_group_ids[0] #=> String
10746
+ # resp.failed_media_resource_map #=> Hash
10747
+ # resp.failed_media_resource_map["__string"].destinations #=> Array
10748
+ # resp.failed_media_resource_map["__string"].destinations[0].arn #=> String
10749
+ # resp.failed_media_resource_map["__string"].destinations[0].name #=> String
10750
+ # resp.failed_media_resource_map["__string"].name #=> String
10751
+ # resp.failed_media_resource_map["__string"].sources #=> Array
10752
+ # resp.failed_media_resource_map["__string"].sources[0].arn #=> String
10753
+ # resp.failed_media_resource_map["__string"].sources[0].name #=> String
10754
+ # resp.id #=> String
10755
+ # resp.last_discovered_at #=> Time
10756
+ # resp.last_successful_monitor_deployment.details_uri #=> String
10757
+ # resp.last_successful_monitor_deployment.status #=> String, one of "NOT_DEPLOYED", "DRY_RUN_DEPLOYMENT_COMPLETE", "DRY_RUN_DEPLOYMENT_FAILED", "DRY_RUN_DEPLOYMENT_IN_PROGRESS", "DEPLOYMENT_COMPLETE", "DEPLOYMENT_FAILED", "DEPLOYMENT_IN_PROGRESS", "DELETE_COMPLETE", "DELETE_FAILED", "DELETE_IN_PROGRESS"
10758
+ # resp.media_resource_map #=> Hash
10759
+ # resp.media_resource_map["__string"].destinations #=> Array
10760
+ # resp.media_resource_map["__string"].destinations[0].arn #=> String
10761
+ # resp.media_resource_map["__string"].destinations[0].name #=> String
10762
+ # resp.media_resource_map["__string"].name #=> String
10763
+ # resp.media_resource_map["__string"].sources #=> Array
10764
+ # resp.media_resource_map["__string"].sources[0].arn #=> String
10765
+ # resp.media_resource_map["__string"].sources[0].name #=> String
10766
+ # resp.modified_at #=> Time
10767
+ # resp.monitor_changes_pending_deployment #=> Boolean
10768
+ # resp.monitor_deployment.details_uri #=> String
10769
+ # resp.monitor_deployment.error_message #=> String
10770
+ # resp.monitor_deployment.status #=> String, one of "NOT_DEPLOYED", "DRY_RUN_DEPLOYMENT_COMPLETE", "DRY_RUN_DEPLOYMENT_FAILED", "DRY_RUN_DEPLOYMENT_IN_PROGRESS", "DEPLOYMENT_COMPLETE", "DEPLOYMENT_FAILED", "DEPLOYMENT_IN_PROGRESS", "DELETE_COMPLETE", "DELETE_FAILED", "DELETE_IN_PROGRESS"
10771
+ # resp.name #=> String
10772
+ # resp.status #=> String, one of "CREATE_IN_PROGRESS", "CREATE_COMPLETE", "CREATE_FAILED", "UPDATE_IN_PROGRESS", "UPDATE_COMPLETE", "UPDATE_REVERTED", "UPDATE_FAILED", "READY", "NOT_READY"
10773
+ # resp.tags #=> Hash
10774
+ # resp.tags["__string"] #=> String
10775
+ #
10776
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/StartMonitorDeployment AWS API Documentation
10777
+ #
10778
+ # @overload start_monitor_deployment(params = {})
10779
+ # @param [Hash] params ({})
10780
+ def start_monitor_deployment(params = {}, options = {})
10781
+ req = build_request(:start_monitor_deployment, params)
10782
+ req.send_request(options)
10783
+ end
10784
+
10785
+ # Initiates an update for the specified signal map. Will discover a new
10786
+ # signal map if a changed discoveryEntryPointArn is provided.
10787
+ #
10788
+ # @option params [Array<String>] :cloud_watch_alarm_template_group_identifiers
10789
+ #
10790
+ # @option params [String] :description
10791
+ #
10792
+ # @option params [String] :discovery_entry_point_arn
10793
+ #
10794
+ # @option params [Array<String>] :event_bridge_rule_template_group_identifiers
10795
+ #
10796
+ # @option params [Boolean] :force_rediscovery
10797
+ #
10798
+ # @option params [required, String] :identifier
10799
+ #
10800
+ # @option params [String] :name
10801
+ #
10802
+ # @return [Types::StartUpdateSignalMapResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
10803
+ #
10804
+ # * {Types::StartUpdateSignalMapResponse#arn #arn} => String
10805
+ # * {Types::StartUpdateSignalMapResponse#cloud_watch_alarm_template_group_ids #cloud_watch_alarm_template_group_ids} => Array&lt;String&gt;
10806
+ # * {Types::StartUpdateSignalMapResponse#created_at #created_at} => Time
10807
+ # * {Types::StartUpdateSignalMapResponse#description #description} => String
10808
+ # * {Types::StartUpdateSignalMapResponse#discovery_entry_point_arn #discovery_entry_point_arn} => String
10809
+ # * {Types::StartUpdateSignalMapResponse#error_message #error_message} => String
10810
+ # * {Types::StartUpdateSignalMapResponse#event_bridge_rule_template_group_ids #event_bridge_rule_template_group_ids} => Array&lt;String&gt;
10811
+ # * {Types::StartUpdateSignalMapResponse#failed_media_resource_map #failed_media_resource_map} => Hash&lt;String,Types::MediaResource&gt;
10812
+ # * {Types::StartUpdateSignalMapResponse#id #id} => String
10813
+ # * {Types::StartUpdateSignalMapResponse#last_discovered_at #last_discovered_at} => Time
10814
+ # * {Types::StartUpdateSignalMapResponse#last_successful_monitor_deployment #last_successful_monitor_deployment} => Types::SuccessfulMonitorDeployment
10815
+ # * {Types::StartUpdateSignalMapResponse#media_resource_map #media_resource_map} => Hash&lt;String,Types::MediaResource&gt;
10816
+ # * {Types::StartUpdateSignalMapResponse#modified_at #modified_at} => Time
10817
+ # * {Types::StartUpdateSignalMapResponse#monitor_changes_pending_deployment #monitor_changes_pending_deployment} => Boolean
10818
+ # * {Types::StartUpdateSignalMapResponse#monitor_deployment #monitor_deployment} => Types::MonitorDeployment
10819
+ # * {Types::StartUpdateSignalMapResponse#name #name} => String
10820
+ # * {Types::StartUpdateSignalMapResponse#status #status} => String
10821
+ # * {Types::StartUpdateSignalMapResponse#tags #tags} => Hash&lt;String,String&gt;
10822
+ #
10823
+ # @example Request syntax with placeholder values
10824
+ #
10825
+ # resp = client.start_update_signal_map({
10826
+ # cloud_watch_alarm_template_group_identifiers: ["__stringPatternS"],
10827
+ # description: "__stringMin0Max1024",
10828
+ # discovery_entry_point_arn: "__stringMin1Max2048",
10829
+ # event_bridge_rule_template_group_identifiers: ["__stringPatternS"],
10830
+ # force_rediscovery: false,
10831
+ # identifier: "__string", # required
10832
+ # name: "__stringMin1Max255PatternS",
10833
+ # })
10834
+ #
10835
+ # @example Response structure
10836
+ #
10837
+ # resp.arn #=> String
10838
+ # resp.cloud_watch_alarm_template_group_ids #=> Array
10839
+ # resp.cloud_watch_alarm_template_group_ids[0] #=> String
10840
+ # resp.created_at #=> Time
10841
+ # resp.description #=> String
10842
+ # resp.discovery_entry_point_arn #=> String
10843
+ # resp.error_message #=> String
10844
+ # resp.event_bridge_rule_template_group_ids #=> Array
10845
+ # resp.event_bridge_rule_template_group_ids[0] #=> String
10846
+ # resp.failed_media_resource_map #=> Hash
10847
+ # resp.failed_media_resource_map["__string"].destinations #=> Array
10848
+ # resp.failed_media_resource_map["__string"].destinations[0].arn #=> String
10849
+ # resp.failed_media_resource_map["__string"].destinations[0].name #=> String
10850
+ # resp.failed_media_resource_map["__string"].name #=> String
10851
+ # resp.failed_media_resource_map["__string"].sources #=> Array
10852
+ # resp.failed_media_resource_map["__string"].sources[0].arn #=> String
10853
+ # resp.failed_media_resource_map["__string"].sources[0].name #=> String
10854
+ # resp.id #=> String
10855
+ # resp.last_discovered_at #=> Time
10856
+ # resp.last_successful_monitor_deployment.details_uri #=> String
10857
+ # resp.last_successful_monitor_deployment.status #=> String, one of "NOT_DEPLOYED", "DRY_RUN_DEPLOYMENT_COMPLETE", "DRY_RUN_DEPLOYMENT_FAILED", "DRY_RUN_DEPLOYMENT_IN_PROGRESS", "DEPLOYMENT_COMPLETE", "DEPLOYMENT_FAILED", "DEPLOYMENT_IN_PROGRESS", "DELETE_COMPLETE", "DELETE_FAILED", "DELETE_IN_PROGRESS"
10858
+ # resp.media_resource_map #=> Hash
10859
+ # resp.media_resource_map["__string"].destinations #=> Array
10860
+ # resp.media_resource_map["__string"].destinations[0].arn #=> String
10861
+ # resp.media_resource_map["__string"].destinations[0].name #=> String
10862
+ # resp.media_resource_map["__string"].name #=> String
10863
+ # resp.media_resource_map["__string"].sources #=> Array
10864
+ # resp.media_resource_map["__string"].sources[0].arn #=> String
10865
+ # resp.media_resource_map["__string"].sources[0].name #=> String
10866
+ # resp.modified_at #=> Time
10867
+ # resp.monitor_changes_pending_deployment #=> Boolean
10868
+ # resp.monitor_deployment.details_uri #=> String
10869
+ # resp.monitor_deployment.error_message #=> String
10870
+ # resp.monitor_deployment.status #=> String, one of "NOT_DEPLOYED", "DRY_RUN_DEPLOYMENT_COMPLETE", "DRY_RUN_DEPLOYMENT_FAILED", "DRY_RUN_DEPLOYMENT_IN_PROGRESS", "DEPLOYMENT_COMPLETE", "DEPLOYMENT_FAILED", "DEPLOYMENT_IN_PROGRESS", "DELETE_COMPLETE", "DELETE_FAILED", "DELETE_IN_PROGRESS"
10871
+ # resp.name #=> String
10872
+ # resp.status #=> String, one of "CREATE_IN_PROGRESS", "CREATE_COMPLETE", "CREATE_FAILED", "UPDATE_IN_PROGRESS", "UPDATE_COMPLETE", "UPDATE_REVERTED", "UPDATE_FAILED", "READY", "NOT_READY"
10873
+ # resp.tags #=> Hash
10874
+ # resp.tags["__string"] #=> String
10875
+ #
10876
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/StartUpdateSignalMap AWS API Documentation
10877
+ #
10878
+ # @overload start_update_signal_map(params = {})
10879
+ # @param [Hash] params ({})
10880
+ def start_update_signal_map(params = {}, options = {})
10881
+ req = build_request(:start_update_signal_map, params)
10882
+ req.send_request(options)
10883
+ end
10884
+
10885
+ # Updates the specified cloudwatch alarm template.
10886
+ #
10887
+ # @option params [String] :comparison_operator
10888
+ # The comparison operator used to compare the specified statistic and
10889
+ # the threshold.
10890
+ #
10891
+ # @option params [Integer] :datapoints_to_alarm
10892
+ #
10893
+ # @option params [String] :description
10894
+ #
10895
+ # @option params [Integer] :evaluation_periods
10896
+ #
10897
+ # @option params [String] :group_identifier
10898
+ #
10899
+ # @option params [required, String] :identifier
10900
+ #
10901
+ # @option params [String] :metric_name
10902
+ #
10903
+ # @option params [String] :name
10904
+ #
10905
+ # @option params [Integer] :period
10906
+ #
10907
+ # @option params [String] :statistic
10908
+ # The statistic to apply to the alarm's metric data.
10909
+ #
10910
+ # @option params [String] :target_resource_type
10911
+ # The resource type this template should dynamically generate cloudwatch
10912
+ # metric alarms for.
10913
+ #
10914
+ # @option params [Float] :threshold
10915
+ #
10916
+ # @option params [String] :treat_missing_data
10917
+ # Specifies how missing data points are treated when evaluating the
10918
+ # alarm's condition.
10919
+ #
10920
+ # @return [Types::UpdateCloudWatchAlarmTemplateResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
10921
+ #
10922
+ # * {Types::UpdateCloudWatchAlarmTemplateResponse#arn #arn} => String
10923
+ # * {Types::UpdateCloudWatchAlarmTemplateResponse#comparison_operator #comparison_operator} => String
10924
+ # * {Types::UpdateCloudWatchAlarmTemplateResponse#created_at #created_at} => Time
10925
+ # * {Types::UpdateCloudWatchAlarmTemplateResponse#datapoints_to_alarm #datapoints_to_alarm} => Integer
10926
+ # * {Types::UpdateCloudWatchAlarmTemplateResponse#description #description} => String
10927
+ # * {Types::UpdateCloudWatchAlarmTemplateResponse#evaluation_periods #evaluation_periods} => Integer
10928
+ # * {Types::UpdateCloudWatchAlarmTemplateResponse#group_id #group_id} => String
10929
+ # * {Types::UpdateCloudWatchAlarmTemplateResponse#id #id} => String
10930
+ # * {Types::UpdateCloudWatchAlarmTemplateResponse#metric_name #metric_name} => String
10931
+ # * {Types::UpdateCloudWatchAlarmTemplateResponse#modified_at #modified_at} => Time
10932
+ # * {Types::UpdateCloudWatchAlarmTemplateResponse#name #name} => String
10933
+ # * {Types::UpdateCloudWatchAlarmTemplateResponse#period #period} => Integer
10934
+ # * {Types::UpdateCloudWatchAlarmTemplateResponse#statistic #statistic} => String
10935
+ # * {Types::UpdateCloudWatchAlarmTemplateResponse#tags #tags} => Hash&lt;String,String&gt;
10936
+ # * {Types::UpdateCloudWatchAlarmTemplateResponse#target_resource_type #target_resource_type} => String
10937
+ # * {Types::UpdateCloudWatchAlarmTemplateResponse#threshold #threshold} => Float
10938
+ # * {Types::UpdateCloudWatchAlarmTemplateResponse#treat_missing_data #treat_missing_data} => String
10939
+ #
10940
+ # @example Request syntax with placeholder values
10941
+ #
10942
+ # resp = client.update_cloud_watch_alarm_template({
10943
+ # comparison_operator: "GreaterThanOrEqualToThreshold", # accepts GreaterThanOrEqualToThreshold, GreaterThanThreshold, LessThanThreshold, LessThanOrEqualToThreshold
10944
+ # datapoints_to_alarm: 1,
10945
+ # description: "__stringMin0Max1024",
10946
+ # evaluation_periods: 1,
10947
+ # group_identifier: "__stringPatternS",
10948
+ # identifier: "__string", # required
10949
+ # metric_name: "__stringMax64",
10950
+ # name: "__stringMin1Max255PatternS",
10951
+ # period: 1,
10952
+ # statistic: "SampleCount", # accepts SampleCount, Average, Sum, Minimum, Maximum
10953
+ # target_resource_type: "CLOUDFRONT_DISTRIBUTION", # accepts CLOUDFRONT_DISTRIBUTION, MEDIALIVE_MULTIPLEX, MEDIALIVE_CHANNEL, MEDIALIVE_INPUT_DEVICE, MEDIAPACKAGE_CHANNEL, MEDIAPACKAGE_ORIGIN_ENDPOINT, MEDIACONNECT_FLOW, S3_BUCKET
10954
+ # threshold: 1.0,
10955
+ # treat_missing_data: "notBreaching", # accepts notBreaching, breaching, ignore, missing
10956
+ # })
10957
+ #
10958
+ # @example Response structure
10959
+ #
10960
+ # resp.arn #=> String
10961
+ # resp.comparison_operator #=> String, one of "GreaterThanOrEqualToThreshold", "GreaterThanThreshold", "LessThanThreshold", "LessThanOrEqualToThreshold"
10962
+ # resp.created_at #=> Time
10963
+ # resp.datapoints_to_alarm #=> Integer
10964
+ # resp.description #=> String
10965
+ # resp.evaluation_periods #=> Integer
10966
+ # resp.group_id #=> String
10967
+ # resp.id #=> String
10968
+ # resp.metric_name #=> String
10969
+ # resp.modified_at #=> Time
10970
+ # resp.name #=> String
10971
+ # resp.period #=> Integer
10972
+ # resp.statistic #=> String, one of "SampleCount", "Average", "Sum", "Minimum", "Maximum"
10973
+ # resp.tags #=> Hash
10974
+ # resp.tags["__string"] #=> String
10975
+ # resp.target_resource_type #=> String, one of "CLOUDFRONT_DISTRIBUTION", "MEDIALIVE_MULTIPLEX", "MEDIALIVE_CHANNEL", "MEDIALIVE_INPUT_DEVICE", "MEDIAPACKAGE_CHANNEL", "MEDIAPACKAGE_ORIGIN_ENDPOINT", "MEDIACONNECT_FLOW", "S3_BUCKET"
10976
+ # resp.threshold #=> Float
10977
+ # resp.treat_missing_data #=> String, one of "notBreaching", "breaching", "ignore", "missing"
10978
+ #
10979
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateCloudWatchAlarmTemplate AWS API Documentation
10980
+ #
10981
+ # @overload update_cloud_watch_alarm_template(params = {})
10982
+ # @param [Hash] params ({})
10983
+ def update_cloud_watch_alarm_template(params = {}, options = {})
10984
+ req = build_request(:update_cloud_watch_alarm_template, params)
10985
+ req.send_request(options)
10986
+ end
10987
+
10988
+ # Updates the specified cloudwatch alarm template group.
10989
+ #
10990
+ # @option params [String] :description
10991
+ #
10992
+ # @option params [required, String] :identifier
10993
+ #
10994
+ # @return [Types::UpdateCloudWatchAlarmTemplateGroupResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
10995
+ #
10996
+ # * {Types::UpdateCloudWatchAlarmTemplateGroupResponse#arn #arn} => String
10997
+ # * {Types::UpdateCloudWatchAlarmTemplateGroupResponse#created_at #created_at} => Time
10998
+ # * {Types::UpdateCloudWatchAlarmTemplateGroupResponse#description #description} => String
10999
+ # * {Types::UpdateCloudWatchAlarmTemplateGroupResponse#id #id} => String
11000
+ # * {Types::UpdateCloudWatchAlarmTemplateGroupResponse#modified_at #modified_at} => Time
11001
+ # * {Types::UpdateCloudWatchAlarmTemplateGroupResponse#name #name} => String
11002
+ # * {Types::UpdateCloudWatchAlarmTemplateGroupResponse#tags #tags} => Hash&lt;String,String&gt;
11003
+ #
11004
+ # @example Request syntax with placeholder values
11005
+ #
11006
+ # resp = client.update_cloud_watch_alarm_template_group({
11007
+ # description: "__stringMin0Max1024",
11008
+ # identifier: "__string", # required
11009
+ # })
11010
+ #
11011
+ # @example Response structure
11012
+ #
11013
+ # resp.arn #=> String
11014
+ # resp.created_at #=> Time
11015
+ # resp.description #=> String
11016
+ # resp.id #=> String
11017
+ # resp.modified_at #=> Time
11018
+ # resp.name #=> String
11019
+ # resp.tags #=> Hash
11020
+ # resp.tags["__string"] #=> String
11021
+ #
11022
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateCloudWatchAlarmTemplateGroup AWS API Documentation
11023
+ #
11024
+ # @overload update_cloud_watch_alarm_template_group(params = {})
11025
+ # @param [Hash] params ({})
11026
+ def update_cloud_watch_alarm_template_group(params = {}, options = {})
11027
+ req = build_request(:update_cloud_watch_alarm_template_group, params)
11028
+ req.send_request(options)
11029
+ end
11030
+
11031
+ # Updates the specified eventbridge rule template.
11032
+ #
11033
+ # @option params [String] :description
11034
+ #
11035
+ # @option params [Array<Types::EventBridgeRuleTemplateTarget>] :event_targets
11036
+ #
11037
+ # @option params [String] :event_type
11038
+ # The type of event to match with the rule.
11039
+ #
11040
+ # @option params [String] :group_identifier
11041
+ #
11042
+ # @option params [required, String] :identifier
11043
+ #
11044
+ # @option params [String] :name
11045
+ #
11046
+ # @return [Types::UpdateEventBridgeRuleTemplateResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
11047
+ #
11048
+ # * {Types::UpdateEventBridgeRuleTemplateResponse#arn #arn} => String
11049
+ # * {Types::UpdateEventBridgeRuleTemplateResponse#created_at #created_at} => Time
11050
+ # * {Types::UpdateEventBridgeRuleTemplateResponse#description #description} => String
11051
+ # * {Types::UpdateEventBridgeRuleTemplateResponse#event_targets #event_targets} => Array&lt;Types::EventBridgeRuleTemplateTarget&gt;
11052
+ # * {Types::UpdateEventBridgeRuleTemplateResponse#event_type #event_type} => String
11053
+ # * {Types::UpdateEventBridgeRuleTemplateResponse#group_id #group_id} => String
11054
+ # * {Types::UpdateEventBridgeRuleTemplateResponse#id #id} => String
11055
+ # * {Types::UpdateEventBridgeRuleTemplateResponse#modified_at #modified_at} => Time
11056
+ # * {Types::UpdateEventBridgeRuleTemplateResponse#name #name} => String
11057
+ # * {Types::UpdateEventBridgeRuleTemplateResponse#tags #tags} => Hash&lt;String,String&gt;
11058
+ #
11059
+ # @example Request syntax with placeholder values
11060
+ #
11061
+ # resp = client.update_event_bridge_rule_template({
11062
+ # description: "__stringMin0Max1024",
11063
+ # event_targets: [
11064
+ # {
11065
+ # arn: "__stringMin1Max2048PatternArn", # required
11066
+ # },
11067
+ # ],
11068
+ # event_type: "MEDIALIVE_MULTIPLEX_ALERT", # accepts MEDIALIVE_MULTIPLEX_ALERT, MEDIALIVE_MULTIPLEX_STATE_CHANGE, MEDIALIVE_CHANNEL_ALERT, MEDIALIVE_CHANNEL_INPUT_CHANGE, MEDIALIVE_CHANNEL_STATE_CHANGE, MEDIAPACKAGE_INPUT_NOTIFICATION, MEDIAPACKAGE_KEY_PROVIDER_NOTIFICATION, MEDIAPACKAGE_HARVEST_JOB_NOTIFICATION, SIGNAL_MAP_ACTIVE_ALARM, MEDIACONNECT_ALERT, MEDIACONNECT_SOURCE_HEALTH, MEDIACONNECT_OUTPUT_HEALTH, MEDIACONNECT_FLOW_STATUS_CHANGE
11069
+ # group_identifier: "__stringPatternS",
11070
+ # identifier: "__string", # required
11071
+ # name: "__stringMin1Max255PatternS",
11072
+ # })
11073
+ #
11074
+ # @example Response structure
11075
+ #
11076
+ # resp.arn #=> String
11077
+ # resp.created_at #=> Time
11078
+ # resp.description #=> String
11079
+ # resp.event_targets #=> Array
11080
+ # resp.event_targets[0].arn #=> String
11081
+ # resp.event_type #=> String, one of "MEDIALIVE_MULTIPLEX_ALERT", "MEDIALIVE_MULTIPLEX_STATE_CHANGE", "MEDIALIVE_CHANNEL_ALERT", "MEDIALIVE_CHANNEL_INPUT_CHANGE", "MEDIALIVE_CHANNEL_STATE_CHANGE", "MEDIAPACKAGE_INPUT_NOTIFICATION", "MEDIAPACKAGE_KEY_PROVIDER_NOTIFICATION", "MEDIAPACKAGE_HARVEST_JOB_NOTIFICATION", "SIGNAL_MAP_ACTIVE_ALARM", "MEDIACONNECT_ALERT", "MEDIACONNECT_SOURCE_HEALTH", "MEDIACONNECT_OUTPUT_HEALTH", "MEDIACONNECT_FLOW_STATUS_CHANGE"
11082
+ # resp.group_id #=> String
11083
+ # resp.id #=> String
11084
+ # resp.modified_at #=> Time
11085
+ # resp.name #=> String
11086
+ # resp.tags #=> Hash
11087
+ # resp.tags["__string"] #=> String
11088
+ #
11089
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateEventBridgeRuleTemplate AWS API Documentation
11090
+ #
11091
+ # @overload update_event_bridge_rule_template(params = {})
11092
+ # @param [Hash] params ({})
11093
+ def update_event_bridge_rule_template(params = {}, options = {})
11094
+ req = build_request(:update_event_bridge_rule_template, params)
11095
+ req.send_request(options)
11096
+ end
11097
+
11098
+ # Updates the specified eventbridge rule template group.
11099
+ #
11100
+ # @option params [String] :description
11101
+ #
11102
+ # @option params [required, String] :identifier
11103
+ #
11104
+ # @return [Types::UpdateEventBridgeRuleTemplateGroupResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
11105
+ #
11106
+ # * {Types::UpdateEventBridgeRuleTemplateGroupResponse#arn #arn} => String
11107
+ # * {Types::UpdateEventBridgeRuleTemplateGroupResponse#created_at #created_at} => Time
11108
+ # * {Types::UpdateEventBridgeRuleTemplateGroupResponse#description #description} => String
11109
+ # * {Types::UpdateEventBridgeRuleTemplateGroupResponse#id #id} => String
11110
+ # * {Types::UpdateEventBridgeRuleTemplateGroupResponse#modified_at #modified_at} => Time
11111
+ # * {Types::UpdateEventBridgeRuleTemplateGroupResponse#name #name} => String
11112
+ # * {Types::UpdateEventBridgeRuleTemplateGroupResponse#tags #tags} => Hash&lt;String,String&gt;
11113
+ #
11114
+ # @example Request syntax with placeholder values
11115
+ #
11116
+ # resp = client.update_event_bridge_rule_template_group({
11117
+ # description: "__stringMin0Max1024",
11118
+ # identifier: "__string", # required
11119
+ # })
11120
+ #
11121
+ # @example Response structure
11122
+ #
11123
+ # resp.arn #=> String
11124
+ # resp.created_at #=> Time
11125
+ # resp.description #=> String
11126
+ # resp.id #=> String
11127
+ # resp.modified_at #=> Time
11128
+ # resp.name #=> String
11129
+ # resp.tags #=> Hash
11130
+ # resp.tags["__string"] #=> String
11131
+ #
11132
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateEventBridgeRuleTemplateGroup AWS API Documentation
11133
+ #
11134
+ # @overload update_event_bridge_rule_template_group(params = {})
11135
+ # @param [Hash] params ({})
11136
+ def update_event_bridge_rule_template_group(params = {}, options = {})
11137
+ req = build_request(:update_event_bridge_rule_template_group, params)
11138
+ req.send_request(options)
11139
+ end
11140
+
9572
11141
  # @!endgroup
9573
11142
 
9574
11143
  # @param params ({})
@@ -9582,7 +11151,7 @@ module Aws::MediaLive
9582
11151
  params: params,
9583
11152
  config: config)
9584
11153
  context[:gem_name] = 'aws-sdk-medialive'
9585
- context[:gem_version] = '1.118.0'
11154
+ context[:gem_version] = '1.120.0'
9586
11155
  Seahorse::Client::Request.new(handlers, context)
9587
11156
  end
9588
11157
 
@@ -9648,19 +11217,23 @@ module Aws::MediaLive
9648
11217
  # The following table lists the valid waiter names, the operations they call,
9649
11218
  # and the default `:delay` and `:max_attempts` values.
9650
11219
  #
9651
- # | waiter_name | params | :delay | :max_attempts |
9652
- # | ----------------- | --------------------------- | -------- | ------------- |
9653
- # | channel_created | {Client#describe_channel} | 3 | 5 |
9654
- # | channel_deleted | {Client#describe_channel} | 5 | 84 |
9655
- # | channel_running | {Client#describe_channel} | 5 | 120 |
9656
- # | channel_stopped | {Client#describe_channel} | 5 | 60 |
9657
- # | input_attached | {Client#describe_input} | 5 | 20 |
9658
- # | input_deleted | {Client#describe_input} | 5 | 20 |
9659
- # | input_detached | {Client#describe_input} | 5 | 84 |
9660
- # | multiplex_created | {Client#describe_multiplex} | 3 | 5 |
9661
- # | multiplex_deleted | {Client#describe_multiplex} | 5 | 20 |
9662
- # | multiplex_running | {Client#describe_multiplex} | 5 | 120 |
9663
- # | multiplex_stopped | {Client#describe_multiplex} | 5 | 28 |
11220
+ # | waiter_name | params | :delay | :max_attempts |
11221
+ # | --------------------------- | --------------------------- | -------- | ------------- |
11222
+ # | channel_created | {Client#describe_channel} | 3 | 5 |
11223
+ # | channel_deleted | {Client#describe_channel} | 5 | 84 |
11224
+ # | channel_running | {Client#describe_channel} | 5 | 120 |
11225
+ # | channel_stopped | {Client#describe_channel} | 5 | 60 |
11226
+ # | input_attached | {Client#describe_input} | 5 | 20 |
11227
+ # | input_deleted | {Client#describe_input} | 5 | 20 |
11228
+ # | input_detached | {Client#describe_input} | 5 | 84 |
11229
+ # | multiplex_created | {Client#describe_multiplex} | 3 | 5 |
11230
+ # | multiplex_deleted | {Client#describe_multiplex} | 5 | 20 |
11231
+ # | multiplex_running | {Client#describe_multiplex} | 5 | 120 |
11232
+ # | multiplex_stopped | {Client#describe_multiplex} | 5 | 28 |
11233
+ # | signal_map_created | {Client#get_signal_map} | 5 | 60 |
11234
+ # | signal_map_monitor_deleted | {Client#get_signal_map} | 5 | 120 |
11235
+ # | signal_map_monitor_deployed | {Client#get_signal_map} | 5 | 120 |
11236
+ # | signal_map_updated | {Client#get_signal_map} | 5 | 60 |
9664
11237
  #
9665
11238
  # @raise [Errors::FailureStateError] Raised when the waiter terminates
9666
11239
  # because the waiter has entered a state that it will not transition
@@ -9721,7 +11294,11 @@ module Aws::MediaLive
9721
11294
  multiplex_created: Waiters::MultiplexCreated,
9722
11295
  multiplex_deleted: Waiters::MultiplexDeleted,
9723
11296
  multiplex_running: Waiters::MultiplexRunning,
9724
- multiplex_stopped: Waiters::MultiplexStopped
11297
+ multiplex_stopped: Waiters::MultiplexStopped,
11298
+ signal_map_created: Waiters::SignalMapCreated,
11299
+ signal_map_monitor_deleted: Waiters::SignalMapMonitorDeleted,
11300
+ signal_map_monitor_deployed: Waiters::SignalMapMonitorDeployed,
11301
+ signal_map_updated: Waiters::SignalMapUpdated
9725
11302
  }
9726
11303
  end
9727
11304