aws-sdk-medialive 1.118.0 → 1.119.0

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