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.
@@ -13507,5 +13507,3873 @@ module Aws::MediaLive
13507
13507
  include Aws::Structure
13508
13508
  end
13509
13509
 
13510
+ # The input fails to satisfy the constraints specified by an AWS
13511
+ # service.
13512
+ #
13513
+ # @!attribute [rw] message
13514
+ # Exception error message.
13515
+ # @return [String]
13516
+ #
13517
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/BadRequestExceptionResponseContent AWS API Documentation
13518
+ #
13519
+ class BadRequestExceptionResponseContent < Struct.new(
13520
+ :message)
13521
+ SENSITIVE = []
13522
+ include Aws::Structure
13523
+ end
13524
+
13525
+ # @!attribute [rw] arn
13526
+ # A cloudwatch alarm template group's ARN (Amazon Resource Name)
13527
+ # @return [String]
13528
+ #
13529
+ # @!attribute [rw] created_at
13530
+ # @return [Time]
13531
+ #
13532
+ # @!attribute [rw] description
13533
+ # A resource's optional description.
13534
+ # @return [String]
13535
+ #
13536
+ # @!attribute [rw] id
13537
+ # A cloudwatch alarm template group's id. AWS provided template
13538
+ # groups have ids that start with `aws-`
13539
+ # @return [String]
13540
+ #
13541
+ # @!attribute [rw] modified_at
13542
+ # @return [Time]
13543
+ #
13544
+ # @!attribute [rw] name
13545
+ # A resource's name. Names must be unique within the scope of a
13546
+ # resource type in a specific region.
13547
+ # @return [String]
13548
+ #
13549
+ # @!attribute [rw] tags
13550
+ # Represents the tags associated with a resource.
13551
+ # @return [Hash<String,String>]
13552
+ #
13553
+ # @!attribute [rw] template_count
13554
+ # The number of templates in a group.
13555
+ # @return [Integer]
13556
+ #
13557
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CloudWatchAlarmTemplateGroupSummary AWS API Documentation
13558
+ #
13559
+ class CloudWatchAlarmTemplateGroupSummary < Struct.new(
13560
+ :arn,
13561
+ :created_at,
13562
+ :description,
13563
+ :id,
13564
+ :modified_at,
13565
+ :name,
13566
+ :tags,
13567
+ :template_count)
13568
+ SENSITIVE = []
13569
+ include Aws::Structure
13570
+ end
13571
+
13572
+ # @!attribute [rw] arn
13573
+ # A cloudwatch alarm template's ARN (Amazon Resource Name)
13574
+ # @return [String]
13575
+ #
13576
+ # @!attribute [rw] comparison_operator
13577
+ # The comparison operator used to compare the specified statistic and
13578
+ # the threshold.
13579
+ # @return [String]
13580
+ #
13581
+ # @!attribute [rw] created_at
13582
+ # @return [Time]
13583
+ #
13584
+ # @!attribute [rw] datapoints_to_alarm
13585
+ # The number of datapoints within the evaluation period that must be
13586
+ # breaching to trigger the alarm.
13587
+ # @return [Integer]
13588
+ #
13589
+ # @!attribute [rw] description
13590
+ # A resource's optional description.
13591
+ # @return [String]
13592
+ #
13593
+ # @!attribute [rw] evaluation_periods
13594
+ # The number of periods over which data is compared to the specified
13595
+ # threshold.
13596
+ # @return [Integer]
13597
+ #
13598
+ # @!attribute [rw] group_id
13599
+ # A cloudwatch alarm template group's id. AWS provided template
13600
+ # groups have ids that start with `aws-`
13601
+ # @return [String]
13602
+ #
13603
+ # @!attribute [rw] id
13604
+ # A cloudwatch alarm template's id. AWS provided templates have ids
13605
+ # that start with `aws-`
13606
+ # @return [String]
13607
+ #
13608
+ # @!attribute [rw] metric_name
13609
+ # The name of the metric associated with the alarm. Must be compatible
13610
+ # with targetResourceType.
13611
+ # @return [String]
13612
+ #
13613
+ # @!attribute [rw] modified_at
13614
+ # @return [Time]
13615
+ #
13616
+ # @!attribute [rw] name
13617
+ # A resource's name. Names must be unique within the scope of a
13618
+ # resource type in a specific region.
13619
+ # @return [String]
13620
+ #
13621
+ # @!attribute [rw] period
13622
+ # The period, in seconds, over which the specified statistic is
13623
+ # applied.
13624
+ # @return [Integer]
13625
+ #
13626
+ # @!attribute [rw] statistic
13627
+ # The statistic to apply to the alarm's metric data.
13628
+ # @return [String]
13629
+ #
13630
+ # @!attribute [rw] tags
13631
+ # Represents the tags associated with a resource.
13632
+ # @return [Hash<String,String>]
13633
+ #
13634
+ # @!attribute [rw] target_resource_type
13635
+ # The resource type this template should dynamically generate
13636
+ # cloudwatch metric alarms for.
13637
+ # @return [String]
13638
+ #
13639
+ # @!attribute [rw] threshold
13640
+ # The threshold value to compare with the specified statistic.
13641
+ # @return [Float]
13642
+ #
13643
+ # @!attribute [rw] treat_missing_data
13644
+ # Specifies how missing data points are treated when evaluating the
13645
+ # alarm's condition.
13646
+ # @return [String]
13647
+ #
13648
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CloudWatchAlarmTemplateSummary AWS API Documentation
13649
+ #
13650
+ class CloudWatchAlarmTemplateSummary < Struct.new(
13651
+ :arn,
13652
+ :comparison_operator,
13653
+ :created_at,
13654
+ :datapoints_to_alarm,
13655
+ :description,
13656
+ :evaluation_periods,
13657
+ :group_id,
13658
+ :id,
13659
+ :metric_name,
13660
+ :modified_at,
13661
+ :name,
13662
+ :period,
13663
+ :statistic,
13664
+ :tags,
13665
+ :target_resource_type,
13666
+ :threshold,
13667
+ :treat_missing_data)
13668
+ SENSITIVE = []
13669
+ include Aws::Structure
13670
+ end
13671
+
13672
+ # Updating or deleting a resource can cause an inconsistent state.
13673
+ #
13674
+ # @!attribute [rw] message
13675
+ # Exception error message.
13676
+ # @return [String]
13677
+ #
13678
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ConflictExceptionResponseContent AWS API Documentation
13679
+ #
13680
+ class ConflictExceptionResponseContent < Struct.new(
13681
+ :message)
13682
+ SENSITIVE = []
13683
+ include Aws::Structure
13684
+ end
13685
+
13686
+ # @!attribute [rw] description
13687
+ # @return [String]
13688
+ #
13689
+ # @!attribute [rw] name
13690
+ # @return [String]
13691
+ #
13692
+ # @!attribute [rw] tags
13693
+ # Represents the tags associated with a resource.
13694
+ # @return [Hash<String,String>]
13695
+ #
13696
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CreateCloudWatchAlarmTemplateGroupRequest AWS API Documentation
13697
+ #
13698
+ class CreateCloudWatchAlarmTemplateGroupRequest < Struct.new(
13699
+ :description,
13700
+ :name,
13701
+ :tags)
13702
+ SENSITIVE = []
13703
+ include Aws::Structure
13704
+ end
13705
+
13706
+ # @!attribute [rw] description
13707
+ # A resource's optional description.
13708
+ # @return [String]
13709
+ #
13710
+ # @!attribute [rw] name
13711
+ # A resource's name. Names must be unique within the scope of a
13712
+ # resource type in a specific region.
13713
+ # @return [String]
13714
+ #
13715
+ # @!attribute [rw] tags
13716
+ # Represents the tags associated with a resource.
13717
+ # @return [Hash<String,String>]
13718
+ #
13719
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CreateCloudWatchAlarmTemplateGroupRequestContent AWS API Documentation
13720
+ #
13721
+ class CreateCloudWatchAlarmTemplateGroupRequestContent < Struct.new(
13722
+ :description,
13723
+ :name,
13724
+ :tags)
13725
+ SENSITIVE = []
13726
+ include Aws::Structure
13727
+ end
13728
+
13729
+ # @!attribute [rw] arn
13730
+ # @return [String]
13731
+ #
13732
+ # @!attribute [rw] created_at
13733
+ # @return [Time]
13734
+ #
13735
+ # @!attribute [rw] description
13736
+ # @return [String]
13737
+ #
13738
+ # @!attribute [rw] id
13739
+ # @return [String]
13740
+ #
13741
+ # @!attribute [rw] modified_at
13742
+ # @return [Time]
13743
+ #
13744
+ # @!attribute [rw] name
13745
+ # @return [String]
13746
+ #
13747
+ # @!attribute [rw] tags
13748
+ # Represents the tags associated with a resource.
13749
+ # @return [Hash<String,String>]
13750
+ #
13751
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CreateCloudWatchAlarmTemplateGroupResponse AWS API Documentation
13752
+ #
13753
+ class CreateCloudWatchAlarmTemplateGroupResponse < Struct.new(
13754
+ :arn,
13755
+ :created_at,
13756
+ :description,
13757
+ :id,
13758
+ :modified_at,
13759
+ :name,
13760
+ :tags)
13761
+ SENSITIVE = []
13762
+ include Aws::Structure
13763
+ end
13764
+
13765
+ # @!attribute [rw] arn
13766
+ # A cloudwatch alarm template group's ARN (Amazon Resource Name)
13767
+ # @return [String]
13768
+ #
13769
+ # @!attribute [rw] created_at
13770
+ # @return [Time]
13771
+ #
13772
+ # @!attribute [rw] description
13773
+ # A resource's optional description.
13774
+ # @return [String]
13775
+ #
13776
+ # @!attribute [rw] id
13777
+ # A cloudwatch alarm template group's id. AWS provided template
13778
+ # groups have ids that start with `aws-`
13779
+ # @return [String]
13780
+ #
13781
+ # @!attribute [rw] modified_at
13782
+ # @return [Time]
13783
+ #
13784
+ # @!attribute [rw] name
13785
+ # A resource's name. Names must be unique within the scope of a
13786
+ # resource type in a specific region.
13787
+ # @return [String]
13788
+ #
13789
+ # @!attribute [rw] tags
13790
+ # Represents the tags associated with a resource.
13791
+ # @return [Hash<String,String>]
13792
+ #
13793
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CreateCloudWatchAlarmTemplateGroupResponseContent AWS API Documentation
13794
+ #
13795
+ class CreateCloudWatchAlarmTemplateGroupResponseContent < Struct.new(
13796
+ :arn,
13797
+ :created_at,
13798
+ :description,
13799
+ :id,
13800
+ :modified_at,
13801
+ :name,
13802
+ :tags)
13803
+ SENSITIVE = []
13804
+ include Aws::Structure
13805
+ end
13806
+
13807
+ # @!attribute [rw] comparison_operator
13808
+ # The comparison operator used to compare the specified statistic and
13809
+ # the threshold.
13810
+ # @return [String]
13811
+ #
13812
+ # @!attribute [rw] datapoints_to_alarm
13813
+ # @return [Integer]
13814
+ #
13815
+ # @!attribute [rw] description
13816
+ # @return [String]
13817
+ #
13818
+ # @!attribute [rw] evaluation_periods
13819
+ # @return [Integer]
13820
+ #
13821
+ # @!attribute [rw] group_identifier
13822
+ # @return [String]
13823
+ #
13824
+ # @!attribute [rw] metric_name
13825
+ # @return [String]
13826
+ #
13827
+ # @!attribute [rw] name
13828
+ # @return [String]
13829
+ #
13830
+ # @!attribute [rw] period
13831
+ # @return [Integer]
13832
+ #
13833
+ # @!attribute [rw] statistic
13834
+ # The statistic to apply to the alarm's metric data.
13835
+ # @return [String]
13836
+ #
13837
+ # @!attribute [rw] tags
13838
+ # Represents the tags associated with a resource.
13839
+ # @return [Hash<String,String>]
13840
+ #
13841
+ # @!attribute [rw] target_resource_type
13842
+ # The resource type this template should dynamically generate
13843
+ # cloudwatch metric alarms for.
13844
+ # @return [String]
13845
+ #
13846
+ # @!attribute [rw] threshold
13847
+ # @return [Float]
13848
+ #
13849
+ # @!attribute [rw] treat_missing_data
13850
+ # Specifies how missing data points are treated when evaluating the
13851
+ # alarm's condition.
13852
+ # @return [String]
13853
+ #
13854
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CreateCloudWatchAlarmTemplateRequest AWS API Documentation
13855
+ #
13856
+ class CreateCloudWatchAlarmTemplateRequest < Struct.new(
13857
+ :comparison_operator,
13858
+ :datapoints_to_alarm,
13859
+ :description,
13860
+ :evaluation_periods,
13861
+ :group_identifier,
13862
+ :metric_name,
13863
+ :name,
13864
+ :period,
13865
+ :statistic,
13866
+ :tags,
13867
+ :target_resource_type,
13868
+ :threshold,
13869
+ :treat_missing_data)
13870
+ SENSITIVE = []
13871
+ include Aws::Structure
13872
+ end
13873
+
13874
+ # @!attribute [rw] comparison_operator
13875
+ # The comparison operator used to compare the specified statistic and
13876
+ # the threshold.
13877
+ # @return [String]
13878
+ #
13879
+ # @!attribute [rw] datapoints_to_alarm
13880
+ # The number of datapoints within the evaluation period that must be
13881
+ # breaching to trigger the alarm.
13882
+ # @return [Integer]
13883
+ #
13884
+ # @!attribute [rw] description
13885
+ # A resource's optional description.
13886
+ # @return [String]
13887
+ #
13888
+ # @!attribute [rw] evaluation_periods
13889
+ # The number of periods over which data is compared to the specified
13890
+ # threshold.
13891
+ # @return [Integer]
13892
+ #
13893
+ # @!attribute [rw] group_identifier
13894
+ # A cloudwatch alarm template group's identifier. Can be either be
13895
+ # its id or current name.
13896
+ # @return [String]
13897
+ #
13898
+ # @!attribute [rw] metric_name
13899
+ # The name of the metric associated with the alarm. Must be compatible
13900
+ # with targetResourceType.
13901
+ # @return [String]
13902
+ #
13903
+ # @!attribute [rw] name
13904
+ # A resource's name. Names must be unique within the scope of a
13905
+ # resource type in a specific region.
13906
+ # @return [String]
13907
+ #
13908
+ # @!attribute [rw] period
13909
+ # The period, in seconds, over which the specified statistic is
13910
+ # applied.
13911
+ # @return [Integer]
13912
+ #
13913
+ # @!attribute [rw] statistic
13914
+ # The statistic to apply to the alarm's metric data.
13915
+ # @return [String]
13916
+ #
13917
+ # @!attribute [rw] tags
13918
+ # Represents the tags associated with a resource.
13919
+ # @return [Hash<String,String>]
13920
+ #
13921
+ # @!attribute [rw] target_resource_type
13922
+ # The resource type this template should dynamically generate
13923
+ # cloudwatch metric alarms for.
13924
+ # @return [String]
13925
+ #
13926
+ # @!attribute [rw] threshold
13927
+ # The threshold value to compare with the specified statistic.
13928
+ # @return [Float]
13929
+ #
13930
+ # @!attribute [rw] treat_missing_data
13931
+ # Specifies how missing data points are treated when evaluating the
13932
+ # alarm's condition.
13933
+ # @return [String]
13934
+ #
13935
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CreateCloudWatchAlarmTemplateRequestContent AWS API Documentation
13936
+ #
13937
+ class CreateCloudWatchAlarmTemplateRequestContent < Struct.new(
13938
+ :comparison_operator,
13939
+ :datapoints_to_alarm,
13940
+ :description,
13941
+ :evaluation_periods,
13942
+ :group_identifier,
13943
+ :metric_name,
13944
+ :name,
13945
+ :period,
13946
+ :statistic,
13947
+ :tags,
13948
+ :target_resource_type,
13949
+ :threshold,
13950
+ :treat_missing_data)
13951
+ SENSITIVE = []
13952
+ include Aws::Structure
13953
+ end
13954
+
13955
+ # @!attribute [rw] arn
13956
+ # @return [String]
13957
+ #
13958
+ # @!attribute [rw] comparison_operator
13959
+ # The comparison operator used to compare the specified statistic and
13960
+ # the threshold.
13961
+ # @return [String]
13962
+ #
13963
+ # @!attribute [rw] created_at
13964
+ # @return [Time]
13965
+ #
13966
+ # @!attribute [rw] datapoints_to_alarm
13967
+ # @return [Integer]
13968
+ #
13969
+ # @!attribute [rw] description
13970
+ # @return [String]
13971
+ #
13972
+ # @!attribute [rw] evaluation_periods
13973
+ # @return [Integer]
13974
+ #
13975
+ # @!attribute [rw] group_id
13976
+ # @return [String]
13977
+ #
13978
+ # @!attribute [rw] id
13979
+ # @return [String]
13980
+ #
13981
+ # @!attribute [rw] metric_name
13982
+ # @return [String]
13983
+ #
13984
+ # @!attribute [rw] modified_at
13985
+ # @return [Time]
13986
+ #
13987
+ # @!attribute [rw] name
13988
+ # @return [String]
13989
+ #
13990
+ # @!attribute [rw] period
13991
+ # @return [Integer]
13992
+ #
13993
+ # @!attribute [rw] statistic
13994
+ # The statistic to apply to the alarm's metric data.
13995
+ # @return [String]
13996
+ #
13997
+ # @!attribute [rw] tags
13998
+ # Represents the tags associated with a resource.
13999
+ # @return [Hash<String,String>]
14000
+ #
14001
+ # @!attribute [rw] target_resource_type
14002
+ # The resource type this template should dynamically generate
14003
+ # cloudwatch metric alarms for.
14004
+ # @return [String]
14005
+ #
14006
+ # @!attribute [rw] threshold
14007
+ # @return [Float]
14008
+ #
14009
+ # @!attribute [rw] treat_missing_data
14010
+ # Specifies how missing data points are treated when evaluating the
14011
+ # alarm's condition.
14012
+ # @return [String]
14013
+ #
14014
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CreateCloudWatchAlarmTemplateResponse AWS API Documentation
14015
+ #
14016
+ class CreateCloudWatchAlarmTemplateResponse < Struct.new(
14017
+ :arn,
14018
+ :comparison_operator,
14019
+ :created_at,
14020
+ :datapoints_to_alarm,
14021
+ :description,
14022
+ :evaluation_periods,
14023
+ :group_id,
14024
+ :id,
14025
+ :metric_name,
14026
+ :modified_at,
14027
+ :name,
14028
+ :period,
14029
+ :statistic,
14030
+ :tags,
14031
+ :target_resource_type,
14032
+ :threshold,
14033
+ :treat_missing_data)
14034
+ SENSITIVE = []
14035
+ include Aws::Structure
14036
+ end
14037
+
14038
+ # @!attribute [rw] arn
14039
+ # A cloudwatch alarm template's ARN (Amazon Resource Name)
14040
+ # @return [String]
14041
+ #
14042
+ # @!attribute [rw] comparison_operator
14043
+ # The comparison operator used to compare the specified statistic and
14044
+ # the threshold.
14045
+ # @return [String]
14046
+ #
14047
+ # @!attribute [rw] created_at
14048
+ # @return [Time]
14049
+ #
14050
+ # @!attribute [rw] datapoints_to_alarm
14051
+ # The number of datapoints within the evaluation period that must be
14052
+ # breaching to trigger the alarm.
14053
+ # @return [Integer]
14054
+ #
14055
+ # @!attribute [rw] description
14056
+ # A resource's optional description.
14057
+ # @return [String]
14058
+ #
14059
+ # @!attribute [rw] evaluation_periods
14060
+ # The number of periods over which data is compared to the specified
14061
+ # threshold.
14062
+ # @return [Integer]
14063
+ #
14064
+ # @!attribute [rw] group_id
14065
+ # A cloudwatch alarm template group's id. AWS provided template
14066
+ # groups have ids that start with `aws-`
14067
+ # @return [String]
14068
+ #
14069
+ # @!attribute [rw] id
14070
+ # A cloudwatch alarm template's id. AWS provided templates have ids
14071
+ # that start with `aws-`
14072
+ # @return [String]
14073
+ #
14074
+ # @!attribute [rw] metric_name
14075
+ # The name of the metric associated with the alarm. Must be compatible
14076
+ # with targetResourceType.
14077
+ # @return [String]
14078
+ #
14079
+ # @!attribute [rw] modified_at
14080
+ # @return [Time]
14081
+ #
14082
+ # @!attribute [rw] name
14083
+ # A resource's name. Names must be unique within the scope of a
14084
+ # resource type in a specific region.
14085
+ # @return [String]
14086
+ #
14087
+ # @!attribute [rw] period
14088
+ # The period, in seconds, over which the specified statistic is
14089
+ # applied.
14090
+ # @return [Integer]
14091
+ #
14092
+ # @!attribute [rw] statistic
14093
+ # The statistic to apply to the alarm's metric data.
14094
+ # @return [String]
14095
+ #
14096
+ # @!attribute [rw] tags
14097
+ # Represents the tags associated with a resource.
14098
+ # @return [Hash<String,String>]
14099
+ #
14100
+ # @!attribute [rw] target_resource_type
14101
+ # The resource type this template should dynamically generate
14102
+ # cloudwatch metric alarms for.
14103
+ # @return [String]
14104
+ #
14105
+ # @!attribute [rw] threshold
14106
+ # The threshold value to compare with the specified statistic.
14107
+ # @return [Float]
14108
+ #
14109
+ # @!attribute [rw] treat_missing_data
14110
+ # Specifies how missing data points are treated when evaluating the
14111
+ # alarm's condition.
14112
+ # @return [String]
14113
+ #
14114
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CreateCloudWatchAlarmTemplateResponseContent AWS API Documentation
14115
+ #
14116
+ class CreateCloudWatchAlarmTemplateResponseContent < Struct.new(
14117
+ :arn,
14118
+ :comparison_operator,
14119
+ :created_at,
14120
+ :datapoints_to_alarm,
14121
+ :description,
14122
+ :evaluation_periods,
14123
+ :group_id,
14124
+ :id,
14125
+ :metric_name,
14126
+ :modified_at,
14127
+ :name,
14128
+ :period,
14129
+ :statistic,
14130
+ :tags,
14131
+ :target_resource_type,
14132
+ :threshold,
14133
+ :treat_missing_data)
14134
+ SENSITIVE = []
14135
+ include Aws::Structure
14136
+ end
14137
+
14138
+ # @!attribute [rw] description
14139
+ # @return [String]
14140
+ #
14141
+ # @!attribute [rw] name
14142
+ # @return [String]
14143
+ #
14144
+ # @!attribute [rw] tags
14145
+ # Represents the tags associated with a resource.
14146
+ # @return [Hash<String,String>]
14147
+ #
14148
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CreateEventBridgeRuleTemplateGroupRequest AWS API Documentation
14149
+ #
14150
+ class CreateEventBridgeRuleTemplateGroupRequest < Struct.new(
14151
+ :description,
14152
+ :name,
14153
+ :tags)
14154
+ SENSITIVE = []
14155
+ include Aws::Structure
14156
+ end
14157
+
14158
+ # @!attribute [rw] description
14159
+ # A resource's optional description.
14160
+ # @return [String]
14161
+ #
14162
+ # @!attribute [rw] name
14163
+ # A resource's name. Names must be unique within the scope of a
14164
+ # resource type in a specific region.
14165
+ # @return [String]
14166
+ #
14167
+ # @!attribute [rw] tags
14168
+ # Represents the tags associated with a resource.
14169
+ # @return [Hash<String,String>]
14170
+ #
14171
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CreateEventBridgeRuleTemplateGroupRequestContent AWS API Documentation
14172
+ #
14173
+ class CreateEventBridgeRuleTemplateGroupRequestContent < Struct.new(
14174
+ :description,
14175
+ :name,
14176
+ :tags)
14177
+ SENSITIVE = []
14178
+ include Aws::Structure
14179
+ end
14180
+
14181
+ # @!attribute [rw] arn
14182
+ # @return [String]
14183
+ #
14184
+ # @!attribute [rw] created_at
14185
+ # @return [Time]
14186
+ #
14187
+ # @!attribute [rw] description
14188
+ # @return [String]
14189
+ #
14190
+ # @!attribute [rw] id
14191
+ # @return [String]
14192
+ #
14193
+ # @!attribute [rw] modified_at
14194
+ # @return [Time]
14195
+ #
14196
+ # @!attribute [rw] name
14197
+ # @return [String]
14198
+ #
14199
+ # @!attribute [rw] tags
14200
+ # Represents the tags associated with a resource.
14201
+ # @return [Hash<String,String>]
14202
+ #
14203
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CreateEventBridgeRuleTemplateGroupResponse AWS API Documentation
14204
+ #
14205
+ class CreateEventBridgeRuleTemplateGroupResponse < Struct.new(
14206
+ :arn,
14207
+ :created_at,
14208
+ :description,
14209
+ :id,
14210
+ :modified_at,
14211
+ :name,
14212
+ :tags)
14213
+ SENSITIVE = []
14214
+ include Aws::Structure
14215
+ end
14216
+
14217
+ # @!attribute [rw] arn
14218
+ # An eventbridge rule template group's ARN (Amazon Resource Name)
14219
+ # @return [String]
14220
+ #
14221
+ # @!attribute [rw] created_at
14222
+ # @return [Time]
14223
+ #
14224
+ # @!attribute [rw] description
14225
+ # A resource's optional description.
14226
+ # @return [String]
14227
+ #
14228
+ # @!attribute [rw] id
14229
+ # An eventbridge rule template group's id. AWS provided template
14230
+ # groups have ids that start with `aws-`
14231
+ # @return [String]
14232
+ #
14233
+ # @!attribute [rw] modified_at
14234
+ # @return [Time]
14235
+ #
14236
+ # @!attribute [rw] name
14237
+ # A resource's name. Names must be unique within the scope of a
14238
+ # resource type in a specific region.
14239
+ # @return [String]
14240
+ #
14241
+ # @!attribute [rw] tags
14242
+ # Represents the tags associated with a resource.
14243
+ # @return [Hash<String,String>]
14244
+ #
14245
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CreateEventBridgeRuleTemplateGroupResponseContent AWS API Documentation
14246
+ #
14247
+ class CreateEventBridgeRuleTemplateGroupResponseContent < Struct.new(
14248
+ :arn,
14249
+ :created_at,
14250
+ :description,
14251
+ :id,
14252
+ :modified_at,
14253
+ :name,
14254
+ :tags)
14255
+ SENSITIVE = []
14256
+ include Aws::Structure
14257
+ end
14258
+
14259
+ # @!attribute [rw] description
14260
+ # @return [String]
14261
+ #
14262
+ # @!attribute [rw] event_targets
14263
+ # @return [Array<Types::EventBridgeRuleTemplateTarget>]
14264
+ #
14265
+ # @!attribute [rw] event_type
14266
+ # The type of event to match with the rule.
14267
+ # @return [String]
14268
+ #
14269
+ # @!attribute [rw] group_identifier
14270
+ # @return [String]
14271
+ #
14272
+ # @!attribute [rw] name
14273
+ # @return [String]
14274
+ #
14275
+ # @!attribute [rw] tags
14276
+ # Represents the tags associated with a resource.
14277
+ # @return [Hash<String,String>]
14278
+ #
14279
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CreateEventBridgeRuleTemplateRequest AWS API Documentation
14280
+ #
14281
+ class CreateEventBridgeRuleTemplateRequest < Struct.new(
14282
+ :description,
14283
+ :event_targets,
14284
+ :event_type,
14285
+ :group_identifier,
14286
+ :name,
14287
+ :tags)
14288
+ SENSITIVE = []
14289
+ include Aws::Structure
14290
+ end
14291
+
14292
+ # @!attribute [rw] description
14293
+ # A resource's optional description.
14294
+ # @return [String]
14295
+ #
14296
+ # @!attribute [rw] event_targets
14297
+ # @return [Array<Types::EventBridgeRuleTemplateTarget>]
14298
+ #
14299
+ # @!attribute [rw] event_type
14300
+ # The type of event to match with the rule.
14301
+ # @return [String]
14302
+ #
14303
+ # @!attribute [rw] group_identifier
14304
+ # An eventbridge rule template group's identifier. Can be either be
14305
+ # its id or current name.
14306
+ # @return [String]
14307
+ #
14308
+ # @!attribute [rw] name
14309
+ # A resource's name. Names must be unique within the scope of a
14310
+ # resource type in a specific region.
14311
+ # @return [String]
14312
+ #
14313
+ # @!attribute [rw] tags
14314
+ # Represents the tags associated with a resource.
14315
+ # @return [Hash<String,String>]
14316
+ #
14317
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CreateEventBridgeRuleTemplateRequestContent AWS API Documentation
14318
+ #
14319
+ class CreateEventBridgeRuleTemplateRequestContent < Struct.new(
14320
+ :description,
14321
+ :event_targets,
14322
+ :event_type,
14323
+ :group_identifier,
14324
+ :name,
14325
+ :tags)
14326
+ SENSITIVE = []
14327
+ include Aws::Structure
14328
+ end
14329
+
14330
+ # @!attribute [rw] arn
14331
+ # @return [String]
14332
+ #
14333
+ # @!attribute [rw] created_at
14334
+ # @return [Time]
14335
+ #
14336
+ # @!attribute [rw] description
14337
+ # @return [String]
14338
+ #
14339
+ # @!attribute [rw] event_targets
14340
+ # @return [Array<Types::EventBridgeRuleTemplateTarget>]
14341
+ #
14342
+ # @!attribute [rw] event_type
14343
+ # The type of event to match with the rule.
14344
+ # @return [String]
14345
+ #
14346
+ # @!attribute [rw] group_id
14347
+ # @return [String]
14348
+ #
14349
+ # @!attribute [rw] id
14350
+ # @return [String]
14351
+ #
14352
+ # @!attribute [rw] modified_at
14353
+ # @return [Time]
14354
+ #
14355
+ # @!attribute [rw] name
14356
+ # @return [String]
14357
+ #
14358
+ # @!attribute [rw] tags
14359
+ # Represents the tags associated with a resource.
14360
+ # @return [Hash<String,String>]
14361
+ #
14362
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CreateEventBridgeRuleTemplateResponse AWS API Documentation
14363
+ #
14364
+ class CreateEventBridgeRuleTemplateResponse < Struct.new(
14365
+ :arn,
14366
+ :created_at,
14367
+ :description,
14368
+ :event_targets,
14369
+ :event_type,
14370
+ :group_id,
14371
+ :id,
14372
+ :modified_at,
14373
+ :name,
14374
+ :tags)
14375
+ SENSITIVE = []
14376
+ include Aws::Structure
14377
+ end
14378
+
14379
+ # @!attribute [rw] arn
14380
+ # An eventbridge rule template's ARN (Amazon Resource Name)
14381
+ # @return [String]
14382
+ #
14383
+ # @!attribute [rw] created_at
14384
+ # @return [Time]
14385
+ #
14386
+ # @!attribute [rw] description
14387
+ # A resource's optional description.
14388
+ # @return [String]
14389
+ #
14390
+ # @!attribute [rw] event_targets
14391
+ # @return [Array<Types::EventBridgeRuleTemplateTarget>]
14392
+ #
14393
+ # @!attribute [rw] event_type
14394
+ # The type of event to match with the rule.
14395
+ # @return [String]
14396
+ #
14397
+ # @!attribute [rw] group_id
14398
+ # An eventbridge rule template group's id. AWS provided template
14399
+ # groups have ids that start with `aws-`
14400
+ # @return [String]
14401
+ #
14402
+ # @!attribute [rw] id
14403
+ # An eventbridge rule template's id. AWS provided templates have ids
14404
+ # that start with `aws-`
14405
+ # @return [String]
14406
+ #
14407
+ # @!attribute [rw] modified_at
14408
+ # @return [Time]
14409
+ #
14410
+ # @!attribute [rw] name
14411
+ # A resource's name. Names must be unique within the scope of a
14412
+ # resource type in a specific region.
14413
+ # @return [String]
14414
+ #
14415
+ # @!attribute [rw] tags
14416
+ # Represents the tags associated with a resource.
14417
+ # @return [Hash<String,String>]
14418
+ #
14419
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CreateEventBridgeRuleTemplateResponseContent AWS API Documentation
14420
+ #
14421
+ class CreateEventBridgeRuleTemplateResponseContent < Struct.new(
14422
+ :arn,
14423
+ :created_at,
14424
+ :description,
14425
+ :event_targets,
14426
+ :event_type,
14427
+ :group_id,
14428
+ :id,
14429
+ :modified_at,
14430
+ :name,
14431
+ :tags)
14432
+ SENSITIVE = []
14433
+ include Aws::Structure
14434
+ end
14435
+
14436
+ # @!attribute [rw] cloud_watch_alarm_template_group_identifiers
14437
+ # @return [Array<String>]
14438
+ #
14439
+ # @!attribute [rw] description
14440
+ # @return [String]
14441
+ #
14442
+ # @!attribute [rw] discovery_entry_point_arn
14443
+ # @return [String]
14444
+ #
14445
+ # @!attribute [rw] event_bridge_rule_template_group_identifiers
14446
+ # @return [Array<String>]
14447
+ #
14448
+ # @!attribute [rw] name
14449
+ # @return [String]
14450
+ #
14451
+ # @!attribute [rw] tags
14452
+ # Represents the tags associated with a resource.
14453
+ # @return [Hash<String,String>]
14454
+ #
14455
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CreateSignalMapRequest AWS API Documentation
14456
+ #
14457
+ class CreateSignalMapRequest < Struct.new(
14458
+ :cloud_watch_alarm_template_group_identifiers,
14459
+ :description,
14460
+ :discovery_entry_point_arn,
14461
+ :event_bridge_rule_template_group_identifiers,
14462
+ :name,
14463
+ :tags)
14464
+ SENSITIVE = []
14465
+ include Aws::Structure
14466
+ end
14467
+
14468
+ # @!attribute [rw] cloud_watch_alarm_template_group_identifiers
14469
+ # @return [Array<String>]
14470
+ #
14471
+ # @!attribute [rw] description
14472
+ # A resource's optional description.
14473
+ # @return [String]
14474
+ #
14475
+ # @!attribute [rw] discovery_entry_point_arn
14476
+ # A top-level supported AWS resource ARN to discovery a signal map
14477
+ # from.
14478
+ # @return [String]
14479
+ #
14480
+ # @!attribute [rw] event_bridge_rule_template_group_identifiers
14481
+ # @return [Array<String>]
14482
+ #
14483
+ # @!attribute [rw] name
14484
+ # A resource's name. Names must be unique within the scope of a
14485
+ # resource type in a specific region.
14486
+ # @return [String]
14487
+ #
14488
+ # @!attribute [rw] tags
14489
+ # Represents the tags associated with a resource.
14490
+ # @return [Hash<String,String>]
14491
+ #
14492
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CreateSignalMapRequestContent AWS API Documentation
14493
+ #
14494
+ class CreateSignalMapRequestContent < Struct.new(
14495
+ :cloud_watch_alarm_template_group_identifiers,
14496
+ :description,
14497
+ :discovery_entry_point_arn,
14498
+ :event_bridge_rule_template_group_identifiers,
14499
+ :name,
14500
+ :tags)
14501
+ SENSITIVE = []
14502
+ include Aws::Structure
14503
+ end
14504
+
14505
+ # @!attribute [rw] arn
14506
+ # @return [String]
14507
+ #
14508
+ # @!attribute [rw] cloud_watch_alarm_template_group_ids
14509
+ # @return [Array<String>]
14510
+ #
14511
+ # @!attribute [rw] created_at
14512
+ # @return [Time]
14513
+ #
14514
+ # @!attribute [rw] description
14515
+ # @return [String]
14516
+ #
14517
+ # @!attribute [rw] discovery_entry_point_arn
14518
+ # @return [String]
14519
+ #
14520
+ # @!attribute [rw] error_message
14521
+ # @return [String]
14522
+ #
14523
+ # @!attribute [rw] event_bridge_rule_template_group_ids
14524
+ # @return [Array<String>]
14525
+ #
14526
+ # @!attribute [rw] failed_media_resource_map
14527
+ # A map representing an incomplete AWS media workflow as a graph.
14528
+ # @return [Hash<String,Types::MediaResource>]
14529
+ #
14530
+ # @!attribute [rw] id
14531
+ # @return [String]
14532
+ #
14533
+ # @!attribute [rw] last_discovered_at
14534
+ # @return [Time]
14535
+ #
14536
+ # @!attribute [rw] last_successful_monitor_deployment
14537
+ # Represents the latest successful monitor deployment of a signal map.
14538
+ # @return [Types::SuccessfulMonitorDeployment]
14539
+ #
14540
+ # @!attribute [rw] media_resource_map
14541
+ # A map representing an AWS media workflow as a graph.
14542
+ # @return [Hash<String,Types::MediaResource>]
14543
+ #
14544
+ # @!attribute [rw] modified_at
14545
+ # @return [Time]
14546
+ #
14547
+ # @!attribute [rw] monitor_changes_pending_deployment
14548
+ # @return [Boolean]
14549
+ #
14550
+ # @!attribute [rw] monitor_deployment
14551
+ # Represents the latest monitor deployment of a signal map.
14552
+ # @return [Types::MonitorDeployment]
14553
+ #
14554
+ # @!attribute [rw] name
14555
+ # @return [String]
14556
+ #
14557
+ # @!attribute [rw] status
14558
+ # A signal map's current status which is dependent on its lifecycle
14559
+ # actions or associated jobs.
14560
+ # @return [String]
14561
+ #
14562
+ # @!attribute [rw] tags
14563
+ # Represents the tags associated with a resource.
14564
+ # @return [Hash<String,String>]
14565
+ #
14566
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CreateSignalMapResponse AWS API Documentation
14567
+ #
14568
+ class CreateSignalMapResponse < Struct.new(
14569
+ :arn,
14570
+ :cloud_watch_alarm_template_group_ids,
14571
+ :created_at,
14572
+ :description,
14573
+ :discovery_entry_point_arn,
14574
+ :error_message,
14575
+ :event_bridge_rule_template_group_ids,
14576
+ :failed_media_resource_map,
14577
+ :id,
14578
+ :last_discovered_at,
14579
+ :last_successful_monitor_deployment,
14580
+ :media_resource_map,
14581
+ :modified_at,
14582
+ :monitor_changes_pending_deployment,
14583
+ :monitor_deployment,
14584
+ :name,
14585
+ :status,
14586
+ :tags)
14587
+ SENSITIVE = []
14588
+ include Aws::Structure
14589
+ end
14590
+
14591
+ # @!attribute [rw] arn
14592
+ # A signal map's ARN (Amazon Resource Name)
14593
+ # @return [String]
14594
+ #
14595
+ # @!attribute [rw] cloud_watch_alarm_template_group_ids
14596
+ # @return [Array<String>]
14597
+ #
14598
+ # @!attribute [rw] created_at
14599
+ # @return [Time]
14600
+ #
14601
+ # @!attribute [rw] description
14602
+ # A resource's optional description.
14603
+ # @return [String]
14604
+ #
14605
+ # @!attribute [rw] discovery_entry_point_arn
14606
+ # A top-level supported AWS resource ARN to discovery a signal map
14607
+ # from.
14608
+ # @return [String]
14609
+ #
14610
+ # @!attribute [rw] error_message
14611
+ # Error message associated with a failed creation or failed update
14612
+ # attempt of a signal map.
14613
+ # @return [String]
14614
+ #
14615
+ # @!attribute [rw] event_bridge_rule_template_group_ids
14616
+ # @return [Array<String>]
14617
+ #
14618
+ # @!attribute [rw] failed_media_resource_map
14619
+ # A map representing an incomplete AWS media workflow as a graph.
14620
+ # @return [Hash<String,Types::MediaResource>]
14621
+ #
14622
+ # @!attribute [rw] id
14623
+ # A signal map's id.
14624
+ # @return [String]
14625
+ #
14626
+ # @!attribute [rw] last_discovered_at
14627
+ # @return [Time]
14628
+ #
14629
+ # @!attribute [rw] last_successful_monitor_deployment
14630
+ # Represents the latest successful monitor deployment of a signal map.
14631
+ # @return [Types::SuccessfulMonitorDeployment]
14632
+ #
14633
+ # @!attribute [rw] media_resource_map
14634
+ # A map representing an AWS media workflow as a graph.
14635
+ # @return [Hash<String,Types::MediaResource>]
14636
+ #
14637
+ # @!attribute [rw] modified_at
14638
+ # @return [Time]
14639
+ #
14640
+ # @!attribute [rw] monitor_changes_pending_deployment
14641
+ # If true, there are pending monitor changes for this signal map that
14642
+ # can be deployed.
14643
+ # @return [Boolean]
14644
+ #
14645
+ # @!attribute [rw] monitor_deployment
14646
+ # Represents the latest monitor deployment of a signal map.
14647
+ # @return [Types::MonitorDeployment]
14648
+ #
14649
+ # @!attribute [rw] name
14650
+ # A resource's name. Names must be unique within the scope of a
14651
+ # resource type in a specific region.
14652
+ # @return [String]
14653
+ #
14654
+ # @!attribute [rw] status
14655
+ # A signal map's current status which is dependent on its lifecycle
14656
+ # actions or associated jobs.
14657
+ # @return [String]
14658
+ #
14659
+ # @!attribute [rw] tags
14660
+ # Represents the tags associated with a resource.
14661
+ # @return [Hash<String,String>]
14662
+ #
14663
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/CreateSignalMapResponseContent AWS API Documentation
14664
+ #
14665
+ class CreateSignalMapResponseContent < Struct.new(
14666
+ :arn,
14667
+ :cloud_watch_alarm_template_group_ids,
14668
+ :created_at,
14669
+ :description,
14670
+ :discovery_entry_point_arn,
14671
+ :error_message,
14672
+ :event_bridge_rule_template_group_ids,
14673
+ :failed_media_resource_map,
14674
+ :id,
14675
+ :last_discovered_at,
14676
+ :last_successful_monitor_deployment,
14677
+ :media_resource_map,
14678
+ :modified_at,
14679
+ :monitor_changes_pending_deployment,
14680
+ :monitor_deployment,
14681
+ :name,
14682
+ :status,
14683
+ :tags)
14684
+ SENSITIVE = []
14685
+ include Aws::Structure
14686
+ end
14687
+
14688
+ # @!attribute [rw] identifier
14689
+ # @return [String]
14690
+ #
14691
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DeleteCloudWatchAlarmTemplateGroupRequest AWS API Documentation
14692
+ #
14693
+ class DeleteCloudWatchAlarmTemplateGroupRequest < Struct.new(
14694
+ :identifier)
14695
+ SENSITIVE = []
14696
+ include Aws::Structure
14697
+ end
14698
+
14699
+ # @!attribute [rw] identifier
14700
+ # @return [String]
14701
+ #
14702
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DeleteCloudWatchAlarmTemplateRequest AWS API Documentation
14703
+ #
14704
+ class DeleteCloudWatchAlarmTemplateRequest < Struct.new(
14705
+ :identifier)
14706
+ SENSITIVE = []
14707
+ include Aws::Structure
14708
+ end
14709
+
14710
+ # @!attribute [rw] identifier
14711
+ # @return [String]
14712
+ #
14713
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DeleteEventBridgeRuleTemplateGroupRequest AWS API Documentation
14714
+ #
14715
+ class DeleteEventBridgeRuleTemplateGroupRequest < Struct.new(
14716
+ :identifier)
14717
+ SENSITIVE = []
14718
+ include Aws::Structure
14719
+ end
14720
+
14721
+ # @!attribute [rw] identifier
14722
+ # @return [String]
14723
+ #
14724
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DeleteEventBridgeRuleTemplateRequest AWS API Documentation
14725
+ #
14726
+ class DeleteEventBridgeRuleTemplateRequest < Struct.new(
14727
+ :identifier)
14728
+ SENSITIVE = []
14729
+ include Aws::Structure
14730
+ end
14731
+
14732
+ # @!attribute [rw] identifier
14733
+ # @return [String]
14734
+ #
14735
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/DeleteSignalMapRequest AWS API Documentation
14736
+ #
14737
+ class DeleteSignalMapRequest < Struct.new(
14738
+ :identifier)
14739
+ SENSITIVE = []
14740
+ include Aws::Structure
14741
+ end
14742
+
14743
+ # @!attribute [rw] arn
14744
+ # An eventbridge rule template group's ARN (Amazon Resource Name)
14745
+ # @return [String]
14746
+ #
14747
+ # @!attribute [rw] created_at
14748
+ # @return [Time]
14749
+ #
14750
+ # @!attribute [rw] description
14751
+ # A resource's optional description.
14752
+ # @return [String]
14753
+ #
14754
+ # @!attribute [rw] id
14755
+ # An eventbridge rule template group's id. AWS provided template
14756
+ # groups have ids that start with `aws-`
14757
+ # @return [String]
14758
+ #
14759
+ # @!attribute [rw] modified_at
14760
+ # @return [Time]
14761
+ #
14762
+ # @!attribute [rw] name
14763
+ # A resource's name. Names must be unique within the scope of a
14764
+ # resource type in a specific region.
14765
+ # @return [String]
14766
+ #
14767
+ # @!attribute [rw] tags
14768
+ # Represents the tags associated with a resource.
14769
+ # @return [Hash<String,String>]
14770
+ #
14771
+ # @!attribute [rw] template_count
14772
+ # The number of templates in a group.
14773
+ # @return [Integer]
14774
+ #
14775
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/EventBridgeRuleTemplateGroupSummary AWS API Documentation
14776
+ #
14777
+ class EventBridgeRuleTemplateGroupSummary < Struct.new(
14778
+ :arn,
14779
+ :created_at,
14780
+ :description,
14781
+ :id,
14782
+ :modified_at,
14783
+ :name,
14784
+ :tags,
14785
+ :template_count)
14786
+ SENSITIVE = []
14787
+ include Aws::Structure
14788
+ end
14789
+
14790
+ # @!attribute [rw] arn
14791
+ # An eventbridge rule template's ARN (Amazon Resource Name)
14792
+ # @return [String]
14793
+ #
14794
+ # @!attribute [rw] created_at
14795
+ # @return [Time]
14796
+ #
14797
+ # @!attribute [rw] description
14798
+ # A resource's optional description.
14799
+ # @return [String]
14800
+ #
14801
+ # @!attribute [rw] event_target_count
14802
+ # The number of targets configured to send matching events.
14803
+ # @return [Integer]
14804
+ #
14805
+ # @!attribute [rw] event_type
14806
+ # The type of event to match with the rule.
14807
+ # @return [String]
14808
+ #
14809
+ # @!attribute [rw] group_id
14810
+ # An eventbridge rule template group's id. AWS provided template
14811
+ # groups have ids that start with `aws-`
14812
+ # @return [String]
14813
+ #
14814
+ # @!attribute [rw] id
14815
+ # An eventbridge rule template's id. AWS provided templates have ids
14816
+ # that start with `aws-`
14817
+ # @return [String]
14818
+ #
14819
+ # @!attribute [rw] modified_at
14820
+ # @return [Time]
14821
+ #
14822
+ # @!attribute [rw] name
14823
+ # A resource's name. Names must be unique within the scope of a
14824
+ # resource type in a specific region.
14825
+ # @return [String]
14826
+ #
14827
+ # @!attribute [rw] tags
14828
+ # Represents the tags associated with a resource.
14829
+ # @return [Hash<String,String>]
14830
+ #
14831
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/EventBridgeRuleTemplateSummary AWS API Documentation
14832
+ #
14833
+ class EventBridgeRuleTemplateSummary < Struct.new(
14834
+ :arn,
14835
+ :created_at,
14836
+ :description,
14837
+ :event_target_count,
14838
+ :event_type,
14839
+ :group_id,
14840
+ :id,
14841
+ :modified_at,
14842
+ :name,
14843
+ :tags)
14844
+ SENSITIVE = []
14845
+ include Aws::Structure
14846
+ end
14847
+
14848
+ # The target to which to send matching events.
14849
+ #
14850
+ # @!attribute [rw] arn
14851
+ # Target ARNs must be either an SNS topic or CloudWatch log group.
14852
+ # @return [String]
14853
+ #
14854
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/EventBridgeRuleTemplateTarget AWS API Documentation
14855
+ #
14856
+ class EventBridgeRuleTemplateTarget < Struct.new(
14857
+ :arn)
14858
+ SENSITIVE = []
14859
+ include Aws::Structure
14860
+ end
14861
+
14862
+ # User does not have sufficient access to perform this action.
14863
+ #
14864
+ # @!attribute [rw] message
14865
+ # Exception error message.
14866
+ # @return [String]
14867
+ #
14868
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ForbiddenExceptionResponseContent AWS API Documentation
14869
+ #
14870
+ class ForbiddenExceptionResponseContent < Struct.new(
14871
+ :message)
14872
+ SENSITIVE = []
14873
+ include Aws::Structure
14874
+ end
14875
+
14876
+ # @!attribute [rw] identifier
14877
+ # @return [String]
14878
+ #
14879
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/GetCloudWatchAlarmTemplateGroupRequest AWS API Documentation
14880
+ #
14881
+ class GetCloudWatchAlarmTemplateGroupRequest < Struct.new(
14882
+ :identifier)
14883
+ SENSITIVE = []
14884
+ include Aws::Structure
14885
+ end
14886
+
14887
+ # @!attribute [rw] arn
14888
+ # @return [String]
14889
+ #
14890
+ # @!attribute [rw] created_at
14891
+ # @return [Time]
14892
+ #
14893
+ # @!attribute [rw] description
14894
+ # @return [String]
14895
+ #
14896
+ # @!attribute [rw] id
14897
+ # @return [String]
14898
+ #
14899
+ # @!attribute [rw] modified_at
14900
+ # @return [Time]
14901
+ #
14902
+ # @!attribute [rw] name
14903
+ # @return [String]
14904
+ #
14905
+ # @!attribute [rw] tags
14906
+ # Represents the tags associated with a resource.
14907
+ # @return [Hash<String,String>]
14908
+ #
14909
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/GetCloudWatchAlarmTemplateGroupResponse AWS API Documentation
14910
+ #
14911
+ class GetCloudWatchAlarmTemplateGroupResponse < Struct.new(
14912
+ :arn,
14913
+ :created_at,
14914
+ :description,
14915
+ :id,
14916
+ :modified_at,
14917
+ :name,
14918
+ :tags)
14919
+ SENSITIVE = []
14920
+ include Aws::Structure
14921
+ end
14922
+
14923
+ # @!attribute [rw] arn
14924
+ # A cloudwatch alarm template group's ARN (Amazon Resource Name)
14925
+ # @return [String]
14926
+ #
14927
+ # @!attribute [rw] created_at
14928
+ # @return [Time]
14929
+ #
14930
+ # @!attribute [rw] description
14931
+ # A resource's optional description.
14932
+ # @return [String]
14933
+ #
14934
+ # @!attribute [rw] id
14935
+ # A cloudwatch alarm template group's id. AWS provided template
14936
+ # groups have ids that start with `aws-`
14937
+ # @return [String]
14938
+ #
14939
+ # @!attribute [rw] modified_at
14940
+ # @return [Time]
14941
+ #
14942
+ # @!attribute [rw] name
14943
+ # A resource's name. Names must be unique within the scope of a
14944
+ # resource type in a specific region.
14945
+ # @return [String]
14946
+ #
14947
+ # @!attribute [rw] tags
14948
+ # Represents the tags associated with a resource.
14949
+ # @return [Hash<String,String>]
14950
+ #
14951
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/GetCloudWatchAlarmTemplateGroupResponseContent AWS API Documentation
14952
+ #
14953
+ class GetCloudWatchAlarmTemplateGroupResponseContent < Struct.new(
14954
+ :arn,
14955
+ :created_at,
14956
+ :description,
14957
+ :id,
14958
+ :modified_at,
14959
+ :name,
14960
+ :tags)
14961
+ SENSITIVE = []
14962
+ include Aws::Structure
14963
+ end
14964
+
14965
+ # @!attribute [rw] identifier
14966
+ # @return [String]
14967
+ #
14968
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/GetCloudWatchAlarmTemplateRequest AWS API Documentation
14969
+ #
14970
+ class GetCloudWatchAlarmTemplateRequest < Struct.new(
14971
+ :identifier)
14972
+ SENSITIVE = []
14973
+ include Aws::Structure
14974
+ end
14975
+
14976
+ # @!attribute [rw] arn
14977
+ # @return [String]
14978
+ #
14979
+ # @!attribute [rw] comparison_operator
14980
+ # The comparison operator used to compare the specified statistic and
14981
+ # the threshold.
14982
+ # @return [String]
14983
+ #
14984
+ # @!attribute [rw] created_at
14985
+ # @return [Time]
14986
+ #
14987
+ # @!attribute [rw] datapoints_to_alarm
14988
+ # @return [Integer]
14989
+ #
14990
+ # @!attribute [rw] description
14991
+ # @return [String]
14992
+ #
14993
+ # @!attribute [rw] evaluation_periods
14994
+ # @return [Integer]
14995
+ #
14996
+ # @!attribute [rw] group_id
14997
+ # @return [String]
14998
+ #
14999
+ # @!attribute [rw] id
15000
+ # @return [String]
15001
+ #
15002
+ # @!attribute [rw] metric_name
15003
+ # @return [String]
15004
+ #
15005
+ # @!attribute [rw] modified_at
15006
+ # @return [Time]
15007
+ #
15008
+ # @!attribute [rw] name
15009
+ # @return [String]
15010
+ #
15011
+ # @!attribute [rw] period
15012
+ # @return [Integer]
15013
+ #
15014
+ # @!attribute [rw] statistic
15015
+ # The statistic to apply to the alarm's metric data.
15016
+ # @return [String]
15017
+ #
15018
+ # @!attribute [rw] tags
15019
+ # Represents the tags associated with a resource.
15020
+ # @return [Hash<String,String>]
15021
+ #
15022
+ # @!attribute [rw] target_resource_type
15023
+ # The resource type this template should dynamically generate
15024
+ # cloudwatch metric alarms for.
15025
+ # @return [String]
15026
+ #
15027
+ # @!attribute [rw] threshold
15028
+ # @return [Float]
15029
+ #
15030
+ # @!attribute [rw] treat_missing_data
15031
+ # Specifies how missing data points are treated when evaluating the
15032
+ # alarm's condition.
15033
+ # @return [String]
15034
+ #
15035
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/GetCloudWatchAlarmTemplateResponse AWS API Documentation
15036
+ #
15037
+ class GetCloudWatchAlarmTemplateResponse < Struct.new(
15038
+ :arn,
15039
+ :comparison_operator,
15040
+ :created_at,
15041
+ :datapoints_to_alarm,
15042
+ :description,
15043
+ :evaluation_periods,
15044
+ :group_id,
15045
+ :id,
15046
+ :metric_name,
15047
+ :modified_at,
15048
+ :name,
15049
+ :period,
15050
+ :statistic,
15051
+ :tags,
15052
+ :target_resource_type,
15053
+ :threshold,
15054
+ :treat_missing_data)
15055
+ SENSITIVE = []
15056
+ include Aws::Structure
15057
+ end
15058
+
15059
+ # @!attribute [rw] arn
15060
+ # A cloudwatch alarm template's ARN (Amazon Resource Name)
15061
+ # @return [String]
15062
+ #
15063
+ # @!attribute [rw] comparison_operator
15064
+ # The comparison operator used to compare the specified statistic and
15065
+ # the threshold.
15066
+ # @return [String]
15067
+ #
15068
+ # @!attribute [rw] created_at
15069
+ # @return [Time]
15070
+ #
15071
+ # @!attribute [rw] datapoints_to_alarm
15072
+ # The number of datapoints within the evaluation period that must be
15073
+ # breaching to trigger the alarm.
15074
+ # @return [Integer]
15075
+ #
15076
+ # @!attribute [rw] description
15077
+ # A resource's optional description.
15078
+ # @return [String]
15079
+ #
15080
+ # @!attribute [rw] evaluation_periods
15081
+ # The number of periods over which data is compared to the specified
15082
+ # threshold.
15083
+ # @return [Integer]
15084
+ #
15085
+ # @!attribute [rw] group_id
15086
+ # A cloudwatch alarm template group's id. AWS provided template
15087
+ # groups have ids that start with `aws-`
15088
+ # @return [String]
15089
+ #
15090
+ # @!attribute [rw] id
15091
+ # A cloudwatch alarm template's id. AWS provided templates have ids
15092
+ # that start with `aws-`
15093
+ # @return [String]
15094
+ #
15095
+ # @!attribute [rw] metric_name
15096
+ # The name of the metric associated with the alarm. Must be compatible
15097
+ # with targetResourceType.
15098
+ # @return [String]
15099
+ #
15100
+ # @!attribute [rw] modified_at
15101
+ # @return [Time]
15102
+ #
15103
+ # @!attribute [rw] name
15104
+ # A resource's name. Names must be unique within the scope of a
15105
+ # resource type in a specific region.
15106
+ # @return [String]
15107
+ #
15108
+ # @!attribute [rw] period
15109
+ # The period, in seconds, over which the specified statistic is
15110
+ # applied.
15111
+ # @return [Integer]
15112
+ #
15113
+ # @!attribute [rw] statistic
15114
+ # The statistic to apply to the alarm's metric data.
15115
+ # @return [String]
15116
+ #
15117
+ # @!attribute [rw] tags
15118
+ # Represents the tags associated with a resource.
15119
+ # @return [Hash<String,String>]
15120
+ #
15121
+ # @!attribute [rw] target_resource_type
15122
+ # The resource type this template should dynamically generate
15123
+ # cloudwatch metric alarms for.
15124
+ # @return [String]
15125
+ #
15126
+ # @!attribute [rw] threshold
15127
+ # The threshold value to compare with the specified statistic.
15128
+ # @return [Float]
15129
+ #
15130
+ # @!attribute [rw] treat_missing_data
15131
+ # Specifies how missing data points are treated when evaluating the
15132
+ # alarm's condition.
15133
+ # @return [String]
15134
+ #
15135
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/GetCloudWatchAlarmTemplateResponseContent AWS API Documentation
15136
+ #
15137
+ class GetCloudWatchAlarmTemplateResponseContent < Struct.new(
15138
+ :arn,
15139
+ :comparison_operator,
15140
+ :created_at,
15141
+ :datapoints_to_alarm,
15142
+ :description,
15143
+ :evaluation_periods,
15144
+ :group_id,
15145
+ :id,
15146
+ :metric_name,
15147
+ :modified_at,
15148
+ :name,
15149
+ :period,
15150
+ :statistic,
15151
+ :tags,
15152
+ :target_resource_type,
15153
+ :threshold,
15154
+ :treat_missing_data)
15155
+ SENSITIVE = []
15156
+ include Aws::Structure
15157
+ end
15158
+
15159
+ # @!attribute [rw] identifier
15160
+ # @return [String]
15161
+ #
15162
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/GetEventBridgeRuleTemplateGroupRequest AWS API Documentation
15163
+ #
15164
+ class GetEventBridgeRuleTemplateGroupRequest < Struct.new(
15165
+ :identifier)
15166
+ SENSITIVE = []
15167
+ include Aws::Structure
15168
+ end
15169
+
15170
+ # @!attribute [rw] arn
15171
+ # @return [String]
15172
+ #
15173
+ # @!attribute [rw] created_at
15174
+ # @return [Time]
15175
+ #
15176
+ # @!attribute [rw] description
15177
+ # @return [String]
15178
+ #
15179
+ # @!attribute [rw] id
15180
+ # @return [String]
15181
+ #
15182
+ # @!attribute [rw] modified_at
15183
+ # @return [Time]
15184
+ #
15185
+ # @!attribute [rw] name
15186
+ # @return [String]
15187
+ #
15188
+ # @!attribute [rw] tags
15189
+ # Represents the tags associated with a resource.
15190
+ # @return [Hash<String,String>]
15191
+ #
15192
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/GetEventBridgeRuleTemplateGroupResponse AWS API Documentation
15193
+ #
15194
+ class GetEventBridgeRuleTemplateGroupResponse < Struct.new(
15195
+ :arn,
15196
+ :created_at,
15197
+ :description,
15198
+ :id,
15199
+ :modified_at,
15200
+ :name,
15201
+ :tags)
15202
+ SENSITIVE = []
15203
+ include Aws::Structure
15204
+ end
15205
+
15206
+ # @!attribute [rw] arn
15207
+ # An eventbridge rule template group's ARN (Amazon Resource Name)
15208
+ # @return [String]
15209
+ #
15210
+ # @!attribute [rw] created_at
15211
+ # @return [Time]
15212
+ #
15213
+ # @!attribute [rw] description
15214
+ # A resource's optional description.
15215
+ # @return [String]
15216
+ #
15217
+ # @!attribute [rw] id
15218
+ # An eventbridge rule template group's id. AWS provided template
15219
+ # groups have ids that start with `aws-`
15220
+ # @return [String]
15221
+ #
15222
+ # @!attribute [rw] modified_at
15223
+ # @return [Time]
15224
+ #
15225
+ # @!attribute [rw] name
15226
+ # A resource's name. Names must be unique within the scope of a
15227
+ # resource type in a specific region.
15228
+ # @return [String]
15229
+ #
15230
+ # @!attribute [rw] tags
15231
+ # Represents the tags associated with a resource.
15232
+ # @return [Hash<String,String>]
15233
+ #
15234
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/GetEventBridgeRuleTemplateGroupResponseContent AWS API Documentation
15235
+ #
15236
+ class GetEventBridgeRuleTemplateGroupResponseContent < Struct.new(
15237
+ :arn,
15238
+ :created_at,
15239
+ :description,
15240
+ :id,
15241
+ :modified_at,
15242
+ :name,
15243
+ :tags)
15244
+ SENSITIVE = []
15245
+ include Aws::Structure
15246
+ end
15247
+
15248
+ # @!attribute [rw] identifier
15249
+ # @return [String]
15250
+ #
15251
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/GetEventBridgeRuleTemplateRequest AWS API Documentation
15252
+ #
15253
+ class GetEventBridgeRuleTemplateRequest < Struct.new(
15254
+ :identifier)
15255
+ SENSITIVE = []
15256
+ include Aws::Structure
15257
+ end
15258
+
15259
+ # @!attribute [rw] arn
15260
+ # @return [String]
15261
+ #
15262
+ # @!attribute [rw] created_at
15263
+ # @return [Time]
15264
+ #
15265
+ # @!attribute [rw] description
15266
+ # @return [String]
15267
+ #
15268
+ # @!attribute [rw] event_targets
15269
+ # @return [Array<Types::EventBridgeRuleTemplateTarget>]
15270
+ #
15271
+ # @!attribute [rw] event_type
15272
+ # The type of event to match with the rule.
15273
+ # @return [String]
15274
+ #
15275
+ # @!attribute [rw] group_id
15276
+ # @return [String]
15277
+ #
15278
+ # @!attribute [rw] id
15279
+ # @return [String]
15280
+ #
15281
+ # @!attribute [rw] modified_at
15282
+ # @return [Time]
15283
+ #
15284
+ # @!attribute [rw] name
15285
+ # @return [String]
15286
+ #
15287
+ # @!attribute [rw] tags
15288
+ # Represents the tags associated with a resource.
15289
+ # @return [Hash<String,String>]
15290
+ #
15291
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/GetEventBridgeRuleTemplateResponse AWS API Documentation
15292
+ #
15293
+ class GetEventBridgeRuleTemplateResponse < Struct.new(
15294
+ :arn,
15295
+ :created_at,
15296
+ :description,
15297
+ :event_targets,
15298
+ :event_type,
15299
+ :group_id,
15300
+ :id,
15301
+ :modified_at,
15302
+ :name,
15303
+ :tags)
15304
+ SENSITIVE = []
15305
+ include Aws::Structure
15306
+ end
15307
+
15308
+ # @!attribute [rw] arn
15309
+ # An eventbridge rule template's ARN (Amazon Resource Name)
15310
+ # @return [String]
15311
+ #
15312
+ # @!attribute [rw] created_at
15313
+ # @return [Time]
15314
+ #
15315
+ # @!attribute [rw] description
15316
+ # A resource's optional description.
15317
+ # @return [String]
15318
+ #
15319
+ # @!attribute [rw] event_targets
15320
+ # @return [Array<Types::EventBridgeRuleTemplateTarget>]
15321
+ #
15322
+ # @!attribute [rw] event_type
15323
+ # The type of event to match with the rule.
15324
+ # @return [String]
15325
+ #
15326
+ # @!attribute [rw] group_id
15327
+ # An eventbridge rule template group's id. AWS provided template
15328
+ # groups have ids that start with `aws-`
15329
+ # @return [String]
15330
+ #
15331
+ # @!attribute [rw] id
15332
+ # An eventbridge rule template's id. AWS provided templates have ids
15333
+ # that start with `aws-`
15334
+ # @return [String]
15335
+ #
15336
+ # @!attribute [rw] modified_at
15337
+ # @return [Time]
15338
+ #
15339
+ # @!attribute [rw] name
15340
+ # A resource's name. Names must be unique within the scope of a
15341
+ # resource type in a specific region.
15342
+ # @return [String]
15343
+ #
15344
+ # @!attribute [rw] tags
15345
+ # Represents the tags associated with a resource.
15346
+ # @return [Hash<String,String>]
15347
+ #
15348
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/GetEventBridgeRuleTemplateResponseContent AWS API Documentation
15349
+ #
15350
+ class GetEventBridgeRuleTemplateResponseContent < Struct.new(
15351
+ :arn,
15352
+ :created_at,
15353
+ :description,
15354
+ :event_targets,
15355
+ :event_type,
15356
+ :group_id,
15357
+ :id,
15358
+ :modified_at,
15359
+ :name,
15360
+ :tags)
15361
+ SENSITIVE = []
15362
+ include Aws::Structure
15363
+ end
15364
+
15365
+ # @!attribute [rw] identifier
15366
+ # @return [String]
15367
+ #
15368
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/GetSignalMapRequest AWS API Documentation
15369
+ #
15370
+ class GetSignalMapRequest < Struct.new(
15371
+ :identifier)
15372
+ SENSITIVE = []
15373
+ include Aws::Structure
15374
+ end
15375
+
15376
+ # @!attribute [rw] arn
15377
+ # @return [String]
15378
+ #
15379
+ # @!attribute [rw] cloud_watch_alarm_template_group_ids
15380
+ # @return [Array<String>]
15381
+ #
15382
+ # @!attribute [rw] created_at
15383
+ # @return [Time]
15384
+ #
15385
+ # @!attribute [rw] description
15386
+ # @return [String]
15387
+ #
15388
+ # @!attribute [rw] discovery_entry_point_arn
15389
+ # @return [String]
15390
+ #
15391
+ # @!attribute [rw] error_message
15392
+ # @return [String]
15393
+ #
15394
+ # @!attribute [rw] event_bridge_rule_template_group_ids
15395
+ # @return [Array<String>]
15396
+ #
15397
+ # @!attribute [rw] failed_media_resource_map
15398
+ # A map representing an incomplete AWS media workflow as a graph.
15399
+ # @return [Hash<String,Types::MediaResource>]
15400
+ #
15401
+ # @!attribute [rw] id
15402
+ # @return [String]
15403
+ #
15404
+ # @!attribute [rw] last_discovered_at
15405
+ # @return [Time]
15406
+ #
15407
+ # @!attribute [rw] last_successful_monitor_deployment
15408
+ # Represents the latest successful monitor deployment of a signal map.
15409
+ # @return [Types::SuccessfulMonitorDeployment]
15410
+ #
15411
+ # @!attribute [rw] media_resource_map
15412
+ # A map representing an AWS media workflow as a graph.
15413
+ # @return [Hash<String,Types::MediaResource>]
15414
+ #
15415
+ # @!attribute [rw] modified_at
15416
+ # @return [Time]
15417
+ #
15418
+ # @!attribute [rw] monitor_changes_pending_deployment
15419
+ # @return [Boolean]
15420
+ #
15421
+ # @!attribute [rw] monitor_deployment
15422
+ # Represents the latest monitor deployment of a signal map.
15423
+ # @return [Types::MonitorDeployment]
15424
+ #
15425
+ # @!attribute [rw] name
15426
+ # @return [String]
15427
+ #
15428
+ # @!attribute [rw] status
15429
+ # A signal map's current status which is dependent on its lifecycle
15430
+ # actions or associated jobs.
15431
+ # @return [String]
15432
+ #
15433
+ # @!attribute [rw] tags
15434
+ # Represents the tags associated with a resource.
15435
+ # @return [Hash<String,String>]
15436
+ #
15437
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/GetSignalMapResponse AWS API Documentation
15438
+ #
15439
+ class GetSignalMapResponse < Struct.new(
15440
+ :arn,
15441
+ :cloud_watch_alarm_template_group_ids,
15442
+ :created_at,
15443
+ :description,
15444
+ :discovery_entry_point_arn,
15445
+ :error_message,
15446
+ :event_bridge_rule_template_group_ids,
15447
+ :failed_media_resource_map,
15448
+ :id,
15449
+ :last_discovered_at,
15450
+ :last_successful_monitor_deployment,
15451
+ :media_resource_map,
15452
+ :modified_at,
15453
+ :monitor_changes_pending_deployment,
15454
+ :monitor_deployment,
15455
+ :name,
15456
+ :status,
15457
+ :tags)
15458
+ SENSITIVE = []
15459
+ include Aws::Structure
15460
+ end
15461
+
15462
+ # @!attribute [rw] arn
15463
+ # A signal map's ARN (Amazon Resource Name)
15464
+ # @return [String]
15465
+ #
15466
+ # @!attribute [rw] cloud_watch_alarm_template_group_ids
15467
+ # @return [Array<String>]
15468
+ #
15469
+ # @!attribute [rw] created_at
15470
+ # @return [Time]
15471
+ #
15472
+ # @!attribute [rw] description
15473
+ # A resource's optional description.
15474
+ # @return [String]
15475
+ #
15476
+ # @!attribute [rw] discovery_entry_point_arn
15477
+ # A top-level supported AWS resource ARN to discovery a signal map
15478
+ # from.
15479
+ # @return [String]
15480
+ #
15481
+ # @!attribute [rw] error_message
15482
+ # Error message associated with a failed creation or failed update
15483
+ # attempt of a signal map.
15484
+ # @return [String]
15485
+ #
15486
+ # @!attribute [rw] event_bridge_rule_template_group_ids
15487
+ # @return [Array<String>]
15488
+ #
15489
+ # @!attribute [rw] failed_media_resource_map
15490
+ # A map representing an incomplete AWS media workflow as a graph.
15491
+ # @return [Hash<String,Types::MediaResource>]
15492
+ #
15493
+ # @!attribute [rw] id
15494
+ # A signal map's id.
15495
+ # @return [String]
15496
+ #
15497
+ # @!attribute [rw] last_discovered_at
15498
+ # @return [Time]
15499
+ #
15500
+ # @!attribute [rw] last_successful_monitor_deployment
15501
+ # Represents the latest successful monitor deployment of a signal map.
15502
+ # @return [Types::SuccessfulMonitorDeployment]
15503
+ #
15504
+ # @!attribute [rw] media_resource_map
15505
+ # A map representing an AWS media workflow as a graph.
15506
+ # @return [Hash<String,Types::MediaResource>]
15507
+ #
15508
+ # @!attribute [rw] modified_at
15509
+ # @return [Time]
15510
+ #
15511
+ # @!attribute [rw] monitor_changes_pending_deployment
15512
+ # If true, there are pending monitor changes for this signal map that
15513
+ # can be deployed.
15514
+ # @return [Boolean]
15515
+ #
15516
+ # @!attribute [rw] monitor_deployment
15517
+ # Represents the latest monitor deployment of a signal map.
15518
+ # @return [Types::MonitorDeployment]
15519
+ #
15520
+ # @!attribute [rw] name
15521
+ # A resource's name. Names must be unique within the scope of a
15522
+ # resource type in a specific region.
15523
+ # @return [String]
15524
+ #
15525
+ # @!attribute [rw] status
15526
+ # A signal map's current status which is dependent on its lifecycle
15527
+ # actions or associated jobs.
15528
+ # @return [String]
15529
+ #
15530
+ # @!attribute [rw] tags
15531
+ # Represents the tags associated with a resource.
15532
+ # @return [Hash<String,String>]
15533
+ #
15534
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/GetSignalMapResponseContent AWS API Documentation
15535
+ #
15536
+ class GetSignalMapResponseContent < Struct.new(
15537
+ :arn,
15538
+ :cloud_watch_alarm_template_group_ids,
15539
+ :created_at,
15540
+ :description,
15541
+ :discovery_entry_point_arn,
15542
+ :error_message,
15543
+ :event_bridge_rule_template_group_ids,
15544
+ :failed_media_resource_map,
15545
+ :id,
15546
+ :last_discovered_at,
15547
+ :last_successful_monitor_deployment,
15548
+ :media_resource_map,
15549
+ :modified_at,
15550
+ :monitor_changes_pending_deployment,
15551
+ :monitor_deployment,
15552
+ :name,
15553
+ :status,
15554
+ :tags)
15555
+ SENSITIVE = []
15556
+ include Aws::Structure
15557
+ end
15558
+
15559
+ # Unexpected error during processing of request.
15560
+ #
15561
+ # @!attribute [rw] message
15562
+ # Exception error message.
15563
+ # @return [String]
15564
+ #
15565
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/InternalServerErrorExceptionResponseContent AWS API Documentation
15566
+ #
15567
+ class InternalServerErrorExceptionResponseContent < Struct.new(
15568
+ :message)
15569
+ SENSITIVE = []
15570
+ include Aws::Structure
15571
+ end
15572
+
15573
+ # @!attribute [rw] max_results
15574
+ # @return [Integer]
15575
+ #
15576
+ # @!attribute [rw] next_token
15577
+ # @return [String]
15578
+ #
15579
+ # @!attribute [rw] scope
15580
+ # @return [String]
15581
+ #
15582
+ # @!attribute [rw] signal_map_identifier
15583
+ # @return [String]
15584
+ #
15585
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ListCloudWatchAlarmTemplateGroupsRequest AWS API Documentation
15586
+ #
15587
+ class ListCloudWatchAlarmTemplateGroupsRequest < Struct.new(
15588
+ :max_results,
15589
+ :next_token,
15590
+ :scope,
15591
+ :signal_map_identifier)
15592
+ SENSITIVE = []
15593
+ include Aws::Structure
15594
+ end
15595
+
15596
+ # @!attribute [rw] cloud_watch_alarm_template_groups
15597
+ # @return [Array<Types::CloudWatchAlarmTemplateGroupSummary>]
15598
+ #
15599
+ # @!attribute [rw] next_token
15600
+ # @return [String]
15601
+ #
15602
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ListCloudWatchAlarmTemplateGroupsResponse AWS API Documentation
15603
+ #
15604
+ class ListCloudWatchAlarmTemplateGroupsResponse < Struct.new(
15605
+ :cloud_watch_alarm_template_groups,
15606
+ :next_token)
15607
+ SENSITIVE = []
15608
+ include Aws::Structure
15609
+ end
15610
+
15611
+ # @!attribute [rw] cloud_watch_alarm_template_groups
15612
+ # @return [Array<Types::CloudWatchAlarmTemplateGroupSummary>]
15613
+ #
15614
+ # @!attribute [rw] next_token
15615
+ # A token used to retrieve the next set of results in paginated list
15616
+ # responses.
15617
+ # @return [String]
15618
+ #
15619
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ListCloudWatchAlarmTemplateGroupsResponseContent AWS API Documentation
15620
+ #
15621
+ class ListCloudWatchAlarmTemplateGroupsResponseContent < Struct.new(
15622
+ :cloud_watch_alarm_template_groups,
15623
+ :next_token)
15624
+ SENSITIVE = []
15625
+ include Aws::Structure
15626
+ end
15627
+
15628
+ # @!attribute [rw] group_identifier
15629
+ # @return [String]
15630
+ #
15631
+ # @!attribute [rw] max_results
15632
+ # @return [Integer]
15633
+ #
15634
+ # @!attribute [rw] next_token
15635
+ # @return [String]
15636
+ #
15637
+ # @!attribute [rw] scope
15638
+ # @return [String]
15639
+ #
15640
+ # @!attribute [rw] signal_map_identifier
15641
+ # @return [String]
15642
+ #
15643
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ListCloudWatchAlarmTemplatesRequest AWS API Documentation
15644
+ #
15645
+ class ListCloudWatchAlarmTemplatesRequest < Struct.new(
15646
+ :group_identifier,
15647
+ :max_results,
15648
+ :next_token,
15649
+ :scope,
15650
+ :signal_map_identifier)
15651
+ SENSITIVE = []
15652
+ include Aws::Structure
15653
+ end
15654
+
15655
+ # @!attribute [rw] cloud_watch_alarm_templates
15656
+ # @return [Array<Types::CloudWatchAlarmTemplateSummary>]
15657
+ #
15658
+ # @!attribute [rw] next_token
15659
+ # @return [String]
15660
+ #
15661
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ListCloudWatchAlarmTemplatesResponse AWS API Documentation
15662
+ #
15663
+ class ListCloudWatchAlarmTemplatesResponse < Struct.new(
15664
+ :cloud_watch_alarm_templates,
15665
+ :next_token)
15666
+ SENSITIVE = []
15667
+ include Aws::Structure
15668
+ end
15669
+
15670
+ # @!attribute [rw] cloud_watch_alarm_templates
15671
+ # @return [Array<Types::CloudWatchAlarmTemplateSummary>]
15672
+ #
15673
+ # @!attribute [rw] next_token
15674
+ # A token used to retrieve the next set of results in paginated list
15675
+ # responses.
15676
+ # @return [String]
15677
+ #
15678
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ListCloudWatchAlarmTemplatesResponseContent AWS API Documentation
15679
+ #
15680
+ class ListCloudWatchAlarmTemplatesResponseContent < Struct.new(
15681
+ :cloud_watch_alarm_templates,
15682
+ :next_token)
15683
+ SENSITIVE = []
15684
+ include Aws::Structure
15685
+ end
15686
+
15687
+ # @!attribute [rw] max_results
15688
+ # @return [Integer]
15689
+ #
15690
+ # @!attribute [rw] next_token
15691
+ # @return [String]
15692
+ #
15693
+ # @!attribute [rw] signal_map_identifier
15694
+ # @return [String]
15695
+ #
15696
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ListEventBridgeRuleTemplateGroupsRequest AWS API Documentation
15697
+ #
15698
+ class ListEventBridgeRuleTemplateGroupsRequest < Struct.new(
15699
+ :max_results,
15700
+ :next_token,
15701
+ :signal_map_identifier)
15702
+ SENSITIVE = []
15703
+ include Aws::Structure
15704
+ end
15705
+
15706
+ # @!attribute [rw] event_bridge_rule_template_groups
15707
+ # @return [Array<Types::EventBridgeRuleTemplateGroupSummary>]
15708
+ #
15709
+ # @!attribute [rw] next_token
15710
+ # @return [String]
15711
+ #
15712
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ListEventBridgeRuleTemplateGroupsResponse AWS API Documentation
15713
+ #
15714
+ class ListEventBridgeRuleTemplateGroupsResponse < Struct.new(
15715
+ :event_bridge_rule_template_groups,
15716
+ :next_token)
15717
+ SENSITIVE = []
15718
+ include Aws::Structure
15719
+ end
15720
+
15721
+ # @!attribute [rw] event_bridge_rule_template_groups
15722
+ # @return [Array<Types::EventBridgeRuleTemplateGroupSummary>]
15723
+ #
15724
+ # @!attribute [rw] next_token
15725
+ # A token used to retrieve the next set of results in paginated list
15726
+ # responses.
15727
+ # @return [String]
15728
+ #
15729
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ListEventBridgeRuleTemplateGroupsResponseContent AWS API Documentation
15730
+ #
15731
+ class ListEventBridgeRuleTemplateGroupsResponseContent < Struct.new(
15732
+ :event_bridge_rule_template_groups,
15733
+ :next_token)
15734
+ SENSITIVE = []
15735
+ include Aws::Structure
15736
+ end
15737
+
15738
+ # @!attribute [rw] group_identifier
15739
+ # @return [String]
15740
+ #
15741
+ # @!attribute [rw] max_results
15742
+ # @return [Integer]
15743
+ #
15744
+ # @!attribute [rw] next_token
15745
+ # @return [String]
15746
+ #
15747
+ # @!attribute [rw] signal_map_identifier
15748
+ # @return [String]
15749
+ #
15750
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ListEventBridgeRuleTemplatesRequest AWS API Documentation
15751
+ #
15752
+ class ListEventBridgeRuleTemplatesRequest < Struct.new(
15753
+ :group_identifier,
15754
+ :max_results,
15755
+ :next_token,
15756
+ :signal_map_identifier)
15757
+ SENSITIVE = []
15758
+ include Aws::Structure
15759
+ end
15760
+
15761
+ # @!attribute [rw] event_bridge_rule_templates
15762
+ # @return [Array<Types::EventBridgeRuleTemplateSummary>]
15763
+ #
15764
+ # @!attribute [rw] next_token
15765
+ # @return [String]
15766
+ #
15767
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ListEventBridgeRuleTemplatesResponse AWS API Documentation
15768
+ #
15769
+ class ListEventBridgeRuleTemplatesResponse < Struct.new(
15770
+ :event_bridge_rule_templates,
15771
+ :next_token)
15772
+ SENSITIVE = []
15773
+ include Aws::Structure
15774
+ end
15775
+
15776
+ # @!attribute [rw] event_bridge_rule_templates
15777
+ # @return [Array<Types::EventBridgeRuleTemplateSummary>]
15778
+ #
15779
+ # @!attribute [rw] next_token
15780
+ # A token used to retrieve the next set of results in paginated list
15781
+ # responses.
15782
+ # @return [String]
15783
+ #
15784
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ListEventBridgeRuleTemplatesResponseContent AWS API Documentation
15785
+ #
15786
+ class ListEventBridgeRuleTemplatesResponseContent < Struct.new(
15787
+ :event_bridge_rule_templates,
15788
+ :next_token)
15789
+ SENSITIVE = []
15790
+ include Aws::Structure
15791
+ end
15792
+
15793
+ # @!attribute [rw] cloud_watch_alarm_template_group_identifier
15794
+ # @return [String]
15795
+ #
15796
+ # @!attribute [rw] event_bridge_rule_template_group_identifier
15797
+ # @return [String]
15798
+ #
15799
+ # @!attribute [rw] max_results
15800
+ # @return [Integer]
15801
+ #
15802
+ # @!attribute [rw] next_token
15803
+ # @return [String]
15804
+ #
15805
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ListSignalMapsRequest AWS API Documentation
15806
+ #
15807
+ class ListSignalMapsRequest < Struct.new(
15808
+ :cloud_watch_alarm_template_group_identifier,
15809
+ :event_bridge_rule_template_group_identifier,
15810
+ :max_results,
15811
+ :next_token)
15812
+ SENSITIVE = []
15813
+ include Aws::Structure
15814
+ end
15815
+
15816
+ # @!attribute [rw] next_token
15817
+ # @return [String]
15818
+ #
15819
+ # @!attribute [rw] signal_maps
15820
+ # @return [Array<Types::SignalMapSummary>]
15821
+ #
15822
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ListSignalMapsResponse AWS API Documentation
15823
+ #
15824
+ class ListSignalMapsResponse < Struct.new(
15825
+ :next_token,
15826
+ :signal_maps)
15827
+ SENSITIVE = []
15828
+ include Aws::Structure
15829
+ end
15830
+
15831
+ # @!attribute [rw] next_token
15832
+ # A token used to retrieve the next set of results in paginated list
15833
+ # responses.
15834
+ # @return [String]
15835
+ #
15836
+ # @!attribute [rw] signal_maps
15837
+ # @return [Array<Types::SignalMapSummary>]
15838
+ #
15839
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/ListSignalMapsResponseContent AWS API Documentation
15840
+ #
15841
+ class ListSignalMapsResponseContent < Struct.new(
15842
+ :next_token,
15843
+ :signal_maps)
15844
+ SENSITIVE = []
15845
+ include Aws::Structure
15846
+ end
15847
+
15848
+ # An AWS resource used in media workflows.
15849
+ #
15850
+ # @!attribute [rw] destinations
15851
+ # @return [Array<Types::MediaResourceNeighbor>]
15852
+ #
15853
+ # @!attribute [rw] name
15854
+ # The logical name of an AWS media resource.
15855
+ # @return [String]
15856
+ #
15857
+ # @!attribute [rw] sources
15858
+ # @return [Array<Types::MediaResourceNeighbor>]
15859
+ #
15860
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/MediaResource AWS API Documentation
15861
+ #
15862
+ class MediaResource < Struct.new(
15863
+ :destinations,
15864
+ :name,
15865
+ :sources)
15866
+ SENSITIVE = []
15867
+ include Aws::Structure
15868
+ end
15869
+
15870
+ # A direct source or destination neighbor to an AWS media resource.
15871
+ #
15872
+ # @!attribute [rw] arn
15873
+ # The ARN of a resource used in AWS media workflows.
15874
+ # @return [String]
15875
+ #
15876
+ # @!attribute [rw] name
15877
+ # The logical name of an AWS media resource.
15878
+ # @return [String]
15879
+ #
15880
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/MediaResourceNeighbor AWS API Documentation
15881
+ #
15882
+ class MediaResourceNeighbor < Struct.new(
15883
+ :arn,
15884
+ :name)
15885
+ SENSITIVE = []
15886
+ include Aws::Structure
15887
+ end
15888
+
15889
+ # Represents the latest monitor deployment of a signal map.
15890
+ #
15891
+ # @!attribute [rw] details_uri
15892
+ # URI associated with a signal map's monitor deployment.
15893
+ # @return [String]
15894
+ #
15895
+ # @!attribute [rw] error_message
15896
+ # Error message associated with a failed monitor deployment of a
15897
+ # signal map.
15898
+ # @return [String]
15899
+ #
15900
+ # @!attribute [rw] status
15901
+ # A signal map's monitor deployment status.
15902
+ # @return [String]
15903
+ #
15904
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/MonitorDeployment AWS API Documentation
15905
+ #
15906
+ class MonitorDeployment < Struct.new(
15907
+ :details_uri,
15908
+ :error_message,
15909
+ :status)
15910
+ SENSITIVE = []
15911
+ include Aws::Structure
15912
+ end
15913
+
15914
+ # Request references a resource which does not exist.
15915
+ #
15916
+ # @!attribute [rw] message
15917
+ # Exception error message.
15918
+ # @return [String]
15919
+ #
15920
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/NotFoundExceptionResponseContent AWS API Documentation
15921
+ #
15922
+ class NotFoundExceptionResponseContent < Struct.new(
15923
+ :message)
15924
+ SENSITIVE = []
15925
+ include Aws::Structure
15926
+ end
15927
+
15928
+ # @!attribute [rw] arn
15929
+ # A signal map's ARN (Amazon Resource Name)
15930
+ # @return [String]
15931
+ #
15932
+ # @!attribute [rw] created_at
15933
+ # @return [Time]
15934
+ #
15935
+ # @!attribute [rw] description
15936
+ # A resource's optional description.
15937
+ # @return [String]
15938
+ #
15939
+ # @!attribute [rw] id
15940
+ # A signal map's id.
15941
+ # @return [String]
15942
+ #
15943
+ # @!attribute [rw] modified_at
15944
+ # @return [Time]
15945
+ #
15946
+ # @!attribute [rw] monitor_deployment_status
15947
+ # A signal map's monitor deployment status.
15948
+ # @return [String]
15949
+ #
15950
+ # @!attribute [rw] name
15951
+ # A resource's name. Names must be unique within the scope of a
15952
+ # resource type in a specific region.
15953
+ # @return [String]
15954
+ #
15955
+ # @!attribute [rw] status
15956
+ # A signal map's current status which is dependent on its lifecycle
15957
+ # actions or associated jobs.
15958
+ # @return [String]
15959
+ #
15960
+ # @!attribute [rw] tags
15961
+ # Represents the tags associated with a resource.
15962
+ # @return [Hash<String,String>]
15963
+ #
15964
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/SignalMapSummary AWS API Documentation
15965
+ #
15966
+ class SignalMapSummary < Struct.new(
15967
+ :arn,
15968
+ :created_at,
15969
+ :description,
15970
+ :id,
15971
+ :modified_at,
15972
+ :monitor_deployment_status,
15973
+ :name,
15974
+ :status,
15975
+ :tags)
15976
+ SENSITIVE = []
15977
+ include Aws::Structure
15978
+ end
15979
+
15980
+ # @!attribute [rw] identifier
15981
+ # @return [String]
15982
+ #
15983
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/StartDeleteMonitorDeploymentRequest AWS API Documentation
15984
+ #
15985
+ class StartDeleteMonitorDeploymentRequest < Struct.new(
15986
+ :identifier)
15987
+ SENSITIVE = []
15988
+ include Aws::Structure
15989
+ end
15990
+
15991
+ # @!attribute [rw] arn
15992
+ # @return [String]
15993
+ #
15994
+ # @!attribute [rw] cloud_watch_alarm_template_group_ids
15995
+ # @return [Array<String>]
15996
+ #
15997
+ # @!attribute [rw] created_at
15998
+ # @return [Time]
15999
+ #
16000
+ # @!attribute [rw] description
16001
+ # @return [String]
16002
+ #
16003
+ # @!attribute [rw] discovery_entry_point_arn
16004
+ # @return [String]
16005
+ #
16006
+ # @!attribute [rw] error_message
16007
+ # @return [String]
16008
+ #
16009
+ # @!attribute [rw] event_bridge_rule_template_group_ids
16010
+ # @return [Array<String>]
16011
+ #
16012
+ # @!attribute [rw] failed_media_resource_map
16013
+ # A map representing an incomplete AWS media workflow as a graph.
16014
+ # @return [Hash<String,Types::MediaResource>]
16015
+ #
16016
+ # @!attribute [rw] id
16017
+ # @return [String]
16018
+ #
16019
+ # @!attribute [rw] last_discovered_at
16020
+ # @return [Time]
16021
+ #
16022
+ # @!attribute [rw] last_successful_monitor_deployment
16023
+ # Represents the latest successful monitor deployment of a signal map.
16024
+ # @return [Types::SuccessfulMonitorDeployment]
16025
+ #
16026
+ # @!attribute [rw] media_resource_map
16027
+ # A map representing an AWS media workflow as a graph.
16028
+ # @return [Hash<String,Types::MediaResource>]
16029
+ #
16030
+ # @!attribute [rw] modified_at
16031
+ # @return [Time]
16032
+ #
16033
+ # @!attribute [rw] monitor_changes_pending_deployment
16034
+ # @return [Boolean]
16035
+ #
16036
+ # @!attribute [rw] monitor_deployment
16037
+ # Represents the latest monitor deployment of a signal map.
16038
+ # @return [Types::MonitorDeployment]
16039
+ #
16040
+ # @!attribute [rw] name
16041
+ # @return [String]
16042
+ #
16043
+ # @!attribute [rw] status
16044
+ # A signal map's current status which is dependent on its lifecycle
16045
+ # actions or associated jobs.
16046
+ # @return [String]
16047
+ #
16048
+ # @!attribute [rw] tags
16049
+ # Represents the tags associated with a resource.
16050
+ # @return [Hash<String,String>]
16051
+ #
16052
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/StartDeleteMonitorDeploymentResponse AWS API Documentation
16053
+ #
16054
+ class StartDeleteMonitorDeploymentResponse < Struct.new(
16055
+ :arn,
16056
+ :cloud_watch_alarm_template_group_ids,
16057
+ :created_at,
16058
+ :description,
16059
+ :discovery_entry_point_arn,
16060
+ :error_message,
16061
+ :event_bridge_rule_template_group_ids,
16062
+ :failed_media_resource_map,
16063
+ :id,
16064
+ :last_discovered_at,
16065
+ :last_successful_monitor_deployment,
16066
+ :media_resource_map,
16067
+ :modified_at,
16068
+ :monitor_changes_pending_deployment,
16069
+ :monitor_deployment,
16070
+ :name,
16071
+ :status,
16072
+ :tags)
16073
+ SENSITIVE = []
16074
+ include Aws::Structure
16075
+ end
16076
+
16077
+ # @!attribute [rw] arn
16078
+ # A signal map's ARN (Amazon Resource Name)
16079
+ # @return [String]
16080
+ #
16081
+ # @!attribute [rw] cloud_watch_alarm_template_group_ids
16082
+ # @return [Array<String>]
16083
+ #
16084
+ # @!attribute [rw] created_at
16085
+ # @return [Time]
16086
+ #
16087
+ # @!attribute [rw] description
16088
+ # A resource's optional description.
16089
+ # @return [String]
16090
+ #
16091
+ # @!attribute [rw] discovery_entry_point_arn
16092
+ # A top-level supported AWS resource ARN to discovery a signal map
16093
+ # from.
16094
+ # @return [String]
16095
+ #
16096
+ # @!attribute [rw] error_message
16097
+ # Error message associated with a failed creation or failed update
16098
+ # attempt of a signal map.
16099
+ # @return [String]
16100
+ #
16101
+ # @!attribute [rw] event_bridge_rule_template_group_ids
16102
+ # @return [Array<String>]
16103
+ #
16104
+ # @!attribute [rw] failed_media_resource_map
16105
+ # A map representing an incomplete AWS media workflow as a graph.
16106
+ # @return [Hash<String,Types::MediaResource>]
16107
+ #
16108
+ # @!attribute [rw] id
16109
+ # A signal map's id.
16110
+ # @return [String]
16111
+ #
16112
+ # @!attribute [rw] last_discovered_at
16113
+ # @return [Time]
16114
+ #
16115
+ # @!attribute [rw] last_successful_monitor_deployment
16116
+ # Represents the latest successful monitor deployment of a signal map.
16117
+ # @return [Types::SuccessfulMonitorDeployment]
16118
+ #
16119
+ # @!attribute [rw] media_resource_map
16120
+ # A map representing an AWS media workflow as a graph.
16121
+ # @return [Hash<String,Types::MediaResource>]
16122
+ #
16123
+ # @!attribute [rw] modified_at
16124
+ # @return [Time]
16125
+ #
16126
+ # @!attribute [rw] monitor_changes_pending_deployment
16127
+ # If true, there are pending monitor changes for this signal map that
16128
+ # can be deployed.
16129
+ # @return [Boolean]
16130
+ #
16131
+ # @!attribute [rw] monitor_deployment
16132
+ # Represents the latest monitor deployment of a signal map.
16133
+ # @return [Types::MonitorDeployment]
16134
+ #
16135
+ # @!attribute [rw] name
16136
+ # A resource's name. Names must be unique within the scope of a
16137
+ # resource type in a specific region.
16138
+ # @return [String]
16139
+ #
16140
+ # @!attribute [rw] status
16141
+ # A signal map's current status which is dependent on its lifecycle
16142
+ # actions or associated jobs.
16143
+ # @return [String]
16144
+ #
16145
+ # @!attribute [rw] tags
16146
+ # Represents the tags associated with a resource.
16147
+ # @return [Hash<String,String>]
16148
+ #
16149
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/StartDeleteMonitorDeploymentResponseContent AWS API Documentation
16150
+ #
16151
+ class StartDeleteMonitorDeploymentResponseContent < Struct.new(
16152
+ :arn,
16153
+ :cloud_watch_alarm_template_group_ids,
16154
+ :created_at,
16155
+ :description,
16156
+ :discovery_entry_point_arn,
16157
+ :error_message,
16158
+ :event_bridge_rule_template_group_ids,
16159
+ :failed_media_resource_map,
16160
+ :id,
16161
+ :last_discovered_at,
16162
+ :last_successful_monitor_deployment,
16163
+ :media_resource_map,
16164
+ :modified_at,
16165
+ :monitor_changes_pending_deployment,
16166
+ :monitor_deployment,
16167
+ :name,
16168
+ :status,
16169
+ :tags)
16170
+ SENSITIVE = []
16171
+ include Aws::Structure
16172
+ end
16173
+
16174
+ # @!attribute [rw] dry_run
16175
+ # @return [Boolean]
16176
+ #
16177
+ # @!attribute [rw] identifier
16178
+ # @return [String]
16179
+ #
16180
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/StartMonitorDeploymentRequest AWS API Documentation
16181
+ #
16182
+ class StartMonitorDeploymentRequest < Struct.new(
16183
+ :dry_run,
16184
+ :identifier)
16185
+ SENSITIVE = []
16186
+ include Aws::Structure
16187
+ end
16188
+
16189
+ # @!attribute [rw] dry_run
16190
+ # @return [Boolean]
16191
+ #
16192
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/StartMonitorDeploymentRequestContent AWS API Documentation
16193
+ #
16194
+ class StartMonitorDeploymentRequestContent < Struct.new(
16195
+ :dry_run)
16196
+ SENSITIVE = []
16197
+ include Aws::Structure
16198
+ end
16199
+
16200
+ # @!attribute [rw] arn
16201
+ # @return [String]
16202
+ #
16203
+ # @!attribute [rw] cloud_watch_alarm_template_group_ids
16204
+ # @return [Array<String>]
16205
+ #
16206
+ # @!attribute [rw] created_at
16207
+ # @return [Time]
16208
+ #
16209
+ # @!attribute [rw] description
16210
+ # @return [String]
16211
+ #
16212
+ # @!attribute [rw] discovery_entry_point_arn
16213
+ # @return [String]
16214
+ #
16215
+ # @!attribute [rw] error_message
16216
+ # @return [String]
16217
+ #
16218
+ # @!attribute [rw] event_bridge_rule_template_group_ids
16219
+ # @return [Array<String>]
16220
+ #
16221
+ # @!attribute [rw] failed_media_resource_map
16222
+ # A map representing an incomplete AWS media workflow as a graph.
16223
+ # @return [Hash<String,Types::MediaResource>]
16224
+ #
16225
+ # @!attribute [rw] id
16226
+ # @return [String]
16227
+ #
16228
+ # @!attribute [rw] last_discovered_at
16229
+ # @return [Time]
16230
+ #
16231
+ # @!attribute [rw] last_successful_monitor_deployment
16232
+ # Represents the latest successful monitor deployment of a signal map.
16233
+ # @return [Types::SuccessfulMonitorDeployment]
16234
+ #
16235
+ # @!attribute [rw] media_resource_map
16236
+ # A map representing an AWS media workflow as a graph.
16237
+ # @return [Hash<String,Types::MediaResource>]
16238
+ #
16239
+ # @!attribute [rw] modified_at
16240
+ # @return [Time]
16241
+ #
16242
+ # @!attribute [rw] monitor_changes_pending_deployment
16243
+ # @return [Boolean]
16244
+ #
16245
+ # @!attribute [rw] monitor_deployment
16246
+ # Represents the latest monitor deployment of a signal map.
16247
+ # @return [Types::MonitorDeployment]
16248
+ #
16249
+ # @!attribute [rw] name
16250
+ # @return [String]
16251
+ #
16252
+ # @!attribute [rw] status
16253
+ # A signal map's current status which is dependent on its lifecycle
16254
+ # actions or associated jobs.
16255
+ # @return [String]
16256
+ #
16257
+ # @!attribute [rw] tags
16258
+ # Represents the tags associated with a resource.
16259
+ # @return [Hash<String,String>]
16260
+ #
16261
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/StartMonitorDeploymentResponse AWS API Documentation
16262
+ #
16263
+ class StartMonitorDeploymentResponse < Struct.new(
16264
+ :arn,
16265
+ :cloud_watch_alarm_template_group_ids,
16266
+ :created_at,
16267
+ :description,
16268
+ :discovery_entry_point_arn,
16269
+ :error_message,
16270
+ :event_bridge_rule_template_group_ids,
16271
+ :failed_media_resource_map,
16272
+ :id,
16273
+ :last_discovered_at,
16274
+ :last_successful_monitor_deployment,
16275
+ :media_resource_map,
16276
+ :modified_at,
16277
+ :monitor_changes_pending_deployment,
16278
+ :monitor_deployment,
16279
+ :name,
16280
+ :status,
16281
+ :tags)
16282
+ SENSITIVE = []
16283
+ include Aws::Structure
16284
+ end
16285
+
16286
+ # @!attribute [rw] arn
16287
+ # A signal map's ARN (Amazon Resource Name)
16288
+ # @return [String]
16289
+ #
16290
+ # @!attribute [rw] cloud_watch_alarm_template_group_ids
16291
+ # @return [Array<String>]
16292
+ #
16293
+ # @!attribute [rw] created_at
16294
+ # @return [Time]
16295
+ #
16296
+ # @!attribute [rw] description
16297
+ # A resource's optional description.
16298
+ # @return [String]
16299
+ #
16300
+ # @!attribute [rw] discovery_entry_point_arn
16301
+ # A top-level supported AWS resource ARN to discovery a signal map
16302
+ # from.
16303
+ # @return [String]
16304
+ #
16305
+ # @!attribute [rw] error_message
16306
+ # Error message associated with a failed creation or failed update
16307
+ # attempt of a signal map.
16308
+ # @return [String]
16309
+ #
16310
+ # @!attribute [rw] event_bridge_rule_template_group_ids
16311
+ # @return [Array<String>]
16312
+ #
16313
+ # @!attribute [rw] failed_media_resource_map
16314
+ # A map representing an incomplete AWS media workflow as a graph.
16315
+ # @return [Hash<String,Types::MediaResource>]
16316
+ #
16317
+ # @!attribute [rw] id
16318
+ # A signal map's id.
16319
+ # @return [String]
16320
+ #
16321
+ # @!attribute [rw] last_discovered_at
16322
+ # @return [Time]
16323
+ #
16324
+ # @!attribute [rw] last_successful_monitor_deployment
16325
+ # Represents the latest successful monitor deployment of a signal map.
16326
+ # @return [Types::SuccessfulMonitorDeployment]
16327
+ #
16328
+ # @!attribute [rw] media_resource_map
16329
+ # A map representing an AWS media workflow as a graph.
16330
+ # @return [Hash<String,Types::MediaResource>]
16331
+ #
16332
+ # @!attribute [rw] modified_at
16333
+ # @return [Time]
16334
+ #
16335
+ # @!attribute [rw] monitor_changes_pending_deployment
16336
+ # If true, there are pending monitor changes for this signal map that
16337
+ # can be deployed.
16338
+ # @return [Boolean]
16339
+ #
16340
+ # @!attribute [rw] monitor_deployment
16341
+ # Represents the latest monitor deployment of a signal map.
16342
+ # @return [Types::MonitorDeployment]
16343
+ #
16344
+ # @!attribute [rw] name
16345
+ # A resource's name. Names must be unique within the scope of a
16346
+ # resource type in a specific region.
16347
+ # @return [String]
16348
+ #
16349
+ # @!attribute [rw] status
16350
+ # A signal map's current status which is dependent on its lifecycle
16351
+ # actions or associated jobs.
16352
+ # @return [String]
16353
+ #
16354
+ # @!attribute [rw] tags
16355
+ # Represents the tags associated with a resource.
16356
+ # @return [Hash<String,String>]
16357
+ #
16358
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/StartMonitorDeploymentResponseContent AWS API Documentation
16359
+ #
16360
+ class StartMonitorDeploymentResponseContent < Struct.new(
16361
+ :arn,
16362
+ :cloud_watch_alarm_template_group_ids,
16363
+ :created_at,
16364
+ :description,
16365
+ :discovery_entry_point_arn,
16366
+ :error_message,
16367
+ :event_bridge_rule_template_group_ids,
16368
+ :failed_media_resource_map,
16369
+ :id,
16370
+ :last_discovered_at,
16371
+ :last_successful_monitor_deployment,
16372
+ :media_resource_map,
16373
+ :modified_at,
16374
+ :monitor_changes_pending_deployment,
16375
+ :monitor_deployment,
16376
+ :name,
16377
+ :status,
16378
+ :tags)
16379
+ SENSITIVE = []
16380
+ include Aws::Structure
16381
+ end
16382
+
16383
+ # @!attribute [rw] cloud_watch_alarm_template_group_identifiers
16384
+ # @return [Array<String>]
16385
+ #
16386
+ # @!attribute [rw] description
16387
+ # @return [String]
16388
+ #
16389
+ # @!attribute [rw] discovery_entry_point_arn
16390
+ # @return [String]
16391
+ #
16392
+ # @!attribute [rw] event_bridge_rule_template_group_identifiers
16393
+ # @return [Array<String>]
16394
+ #
16395
+ # @!attribute [rw] force_rediscovery
16396
+ # @return [Boolean]
16397
+ #
16398
+ # @!attribute [rw] identifier
16399
+ # @return [String]
16400
+ #
16401
+ # @!attribute [rw] name
16402
+ # @return [String]
16403
+ #
16404
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/StartUpdateSignalMapRequest AWS API Documentation
16405
+ #
16406
+ class StartUpdateSignalMapRequest < Struct.new(
16407
+ :cloud_watch_alarm_template_group_identifiers,
16408
+ :description,
16409
+ :discovery_entry_point_arn,
16410
+ :event_bridge_rule_template_group_identifiers,
16411
+ :force_rediscovery,
16412
+ :identifier,
16413
+ :name)
16414
+ SENSITIVE = []
16415
+ include Aws::Structure
16416
+ end
16417
+
16418
+ # @!attribute [rw] cloud_watch_alarm_template_group_identifiers
16419
+ # @return [Array<String>]
16420
+ #
16421
+ # @!attribute [rw] description
16422
+ # A resource's optional description.
16423
+ # @return [String]
16424
+ #
16425
+ # @!attribute [rw] discovery_entry_point_arn
16426
+ # A top-level supported AWS resource ARN to discovery a signal map
16427
+ # from.
16428
+ # @return [String]
16429
+ #
16430
+ # @!attribute [rw] event_bridge_rule_template_group_identifiers
16431
+ # @return [Array<String>]
16432
+ #
16433
+ # @!attribute [rw] force_rediscovery
16434
+ # If true, will force a rediscovery of a signal map if an unchanged
16435
+ # discoveryEntryPointArn is provided.
16436
+ # @return [Boolean]
16437
+ #
16438
+ # @!attribute [rw] name
16439
+ # A resource's name. Names must be unique within the scope of a
16440
+ # resource type in a specific region.
16441
+ # @return [String]
16442
+ #
16443
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/StartUpdateSignalMapRequestContent AWS API Documentation
16444
+ #
16445
+ class StartUpdateSignalMapRequestContent < Struct.new(
16446
+ :cloud_watch_alarm_template_group_identifiers,
16447
+ :description,
16448
+ :discovery_entry_point_arn,
16449
+ :event_bridge_rule_template_group_identifiers,
16450
+ :force_rediscovery,
16451
+ :name)
16452
+ SENSITIVE = []
16453
+ include Aws::Structure
16454
+ end
16455
+
16456
+ # @!attribute [rw] arn
16457
+ # @return [String]
16458
+ #
16459
+ # @!attribute [rw] cloud_watch_alarm_template_group_ids
16460
+ # @return [Array<String>]
16461
+ #
16462
+ # @!attribute [rw] created_at
16463
+ # @return [Time]
16464
+ #
16465
+ # @!attribute [rw] description
16466
+ # @return [String]
16467
+ #
16468
+ # @!attribute [rw] discovery_entry_point_arn
16469
+ # @return [String]
16470
+ #
16471
+ # @!attribute [rw] error_message
16472
+ # @return [String]
16473
+ #
16474
+ # @!attribute [rw] event_bridge_rule_template_group_ids
16475
+ # @return [Array<String>]
16476
+ #
16477
+ # @!attribute [rw] failed_media_resource_map
16478
+ # A map representing an incomplete AWS media workflow as a graph.
16479
+ # @return [Hash<String,Types::MediaResource>]
16480
+ #
16481
+ # @!attribute [rw] id
16482
+ # @return [String]
16483
+ #
16484
+ # @!attribute [rw] last_discovered_at
16485
+ # @return [Time]
16486
+ #
16487
+ # @!attribute [rw] last_successful_monitor_deployment
16488
+ # Represents the latest successful monitor deployment of a signal map.
16489
+ # @return [Types::SuccessfulMonitorDeployment]
16490
+ #
16491
+ # @!attribute [rw] media_resource_map
16492
+ # A map representing an AWS media workflow as a graph.
16493
+ # @return [Hash<String,Types::MediaResource>]
16494
+ #
16495
+ # @!attribute [rw] modified_at
16496
+ # @return [Time]
16497
+ #
16498
+ # @!attribute [rw] monitor_changes_pending_deployment
16499
+ # @return [Boolean]
16500
+ #
16501
+ # @!attribute [rw] monitor_deployment
16502
+ # Represents the latest monitor deployment of a signal map.
16503
+ # @return [Types::MonitorDeployment]
16504
+ #
16505
+ # @!attribute [rw] name
16506
+ # @return [String]
16507
+ #
16508
+ # @!attribute [rw] status
16509
+ # A signal map's current status which is dependent on its lifecycle
16510
+ # actions or associated jobs.
16511
+ # @return [String]
16512
+ #
16513
+ # @!attribute [rw] tags
16514
+ # Represents the tags associated with a resource.
16515
+ # @return [Hash<String,String>]
16516
+ #
16517
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/StartUpdateSignalMapResponse AWS API Documentation
16518
+ #
16519
+ class StartUpdateSignalMapResponse < Struct.new(
16520
+ :arn,
16521
+ :cloud_watch_alarm_template_group_ids,
16522
+ :created_at,
16523
+ :description,
16524
+ :discovery_entry_point_arn,
16525
+ :error_message,
16526
+ :event_bridge_rule_template_group_ids,
16527
+ :failed_media_resource_map,
16528
+ :id,
16529
+ :last_discovered_at,
16530
+ :last_successful_monitor_deployment,
16531
+ :media_resource_map,
16532
+ :modified_at,
16533
+ :monitor_changes_pending_deployment,
16534
+ :monitor_deployment,
16535
+ :name,
16536
+ :status,
16537
+ :tags)
16538
+ SENSITIVE = []
16539
+ include Aws::Structure
16540
+ end
16541
+
16542
+ # @!attribute [rw] arn
16543
+ # A signal map's ARN (Amazon Resource Name)
16544
+ # @return [String]
16545
+ #
16546
+ # @!attribute [rw] cloud_watch_alarm_template_group_ids
16547
+ # @return [Array<String>]
16548
+ #
16549
+ # @!attribute [rw] created_at
16550
+ # @return [Time]
16551
+ #
16552
+ # @!attribute [rw] description
16553
+ # A resource's optional description.
16554
+ # @return [String]
16555
+ #
16556
+ # @!attribute [rw] discovery_entry_point_arn
16557
+ # A top-level supported AWS resource ARN to discovery a signal map
16558
+ # from.
16559
+ # @return [String]
16560
+ #
16561
+ # @!attribute [rw] error_message
16562
+ # Error message associated with a failed creation or failed update
16563
+ # attempt of a signal map.
16564
+ # @return [String]
16565
+ #
16566
+ # @!attribute [rw] event_bridge_rule_template_group_ids
16567
+ # @return [Array<String>]
16568
+ #
16569
+ # @!attribute [rw] failed_media_resource_map
16570
+ # A map representing an incomplete AWS media workflow as a graph.
16571
+ # @return [Hash<String,Types::MediaResource>]
16572
+ #
16573
+ # @!attribute [rw] id
16574
+ # A signal map's id.
16575
+ # @return [String]
16576
+ #
16577
+ # @!attribute [rw] last_discovered_at
16578
+ # @return [Time]
16579
+ #
16580
+ # @!attribute [rw] last_successful_monitor_deployment
16581
+ # Represents the latest successful monitor deployment of a signal map.
16582
+ # @return [Types::SuccessfulMonitorDeployment]
16583
+ #
16584
+ # @!attribute [rw] media_resource_map
16585
+ # A map representing an AWS media workflow as a graph.
16586
+ # @return [Hash<String,Types::MediaResource>]
16587
+ #
16588
+ # @!attribute [rw] modified_at
16589
+ # @return [Time]
16590
+ #
16591
+ # @!attribute [rw] monitor_changes_pending_deployment
16592
+ # If true, there are pending monitor changes for this signal map that
16593
+ # can be deployed.
16594
+ # @return [Boolean]
16595
+ #
16596
+ # @!attribute [rw] monitor_deployment
16597
+ # Represents the latest monitor deployment of a signal map.
16598
+ # @return [Types::MonitorDeployment]
16599
+ #
16600
+ # @!attribute [rw] name
16601
+ # A resource's name. Names must be unique within the scope of a
16602
+ # resource type in a specific region.
16603
+ # @return [String]
16604
+ #
16605
+ # @!attribute [rw] status
16606
+ # A signal map's current status which is dependent on its lifecycle
16607
+ # actions or associated jobs.
16608
+ # @return [String]
16609
+ #
16610
+ # @!attribute [rw] tags
16611
+ # Represents the tags associated with a resource.
16612
+ # @return [Hash<String,String>]
16613
+ #
16614
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/StartUpdateSignalMapResponseContent AWS API Documentation
16615
+ #
16616
+ class StartUpdateSignalMapResponseContent < Struct.new(
16617
+ :arn,
16618
+ :cloud_watch_alarm_template_group_ids,
16619
+ :created_at,
16620
+ :description,
16621
+ :discovery_entry_point_arn,
16622
+ :error_message,
16623
+ :event_bridge_rule_template_group_ids,
16624
+ :failed_media_resource_map,
16625
+ :id,
16626
+ :last_discovered_at,
16627
+ :last_successful_monitor_deployment,
16628
+ :media_resource_map,
16629
+ :modified_at,
16630
+ :monitor_changes_pending_deployment,
16631
+ :monitor_deployment,
16632
+ :name,
16633
+ :status,
16634
+ :tags)
16635
+ SENSITIVE = []
16636
+ include Aws::Structure
16637
+ end
16638
+
16639
+ # Represents the latest successful monitor deployment of a signal map.
16640
+ #
16641
+ # @!attribute [rw] details_uri
16642
+ # URI associated with a signal map's monitor deployment.
16643
+ # @return [String]
16644
+ #
16645
+ # @!attribute [rw] status
16646
+ # A signal map's monitor deployment status.
16647
+ # @return [String]
16648
+ #
16649
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/SuccessfulMonitorDeployment AWS API Documentation
16650
+ #
16651
+ class SuccessfulMonitorDeployment < Struct.new(
16652
+ :details_uri,
16653
+ :status)
16654
+ SENSITIVE = []
16655
+ include Aws::Structure
16656
+ end
16657
+
16658
+ # Request was denied due to request throttling.
16659
+ #
16660
+ # @!attribute [rw] message
16661
+ # Exception error message.
16662
+ # @return [String]
16663
+ #
16664
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/TooManyRequestsExceptionResponseContent AWS API Documentation
16665
+ #
16666
+ class TooManyRequestsExceptionResponseContent < Struct.new(
16667
+ :message)
16668
+ SENSITIVE = []
16669
+ include Aws::Structure
16670
+ end
16671
+
16672
+ # @!attribute [rw] description
16673
+ # @return [String]
16674
+ #
16675
+ # @!attribute [rw] identifier
16676
+ # @return [String]
16677
+ #
16678
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateCloudWatchAlarmTemplateGroupRequest AWS API Documentation
16679
+ #
16680
+ class UpdateCloudWatchAlarmTemplateGroupRequest < Struct.new(
16681
+ :description,
16682
+ :identifier)
16683
+ SENSITIVE = []
16684
+ include Aws::Structure
16685
+ end
16686
+
16687
+ # @!attribute [rw] description
16688
+ # A resource's optional description.
16689
+ # @return [String]
16690
+ #
16691
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateCloudWatchAlarmTemplateGroupRequestContent AWS API Documentation
16692
+ #
16693
+ class UpdateCloudWatchAlarmTemplateGroupRequestContent < Struct.new(
16694
+ :description)
16695
+ SENSITIVE = []
16696
+ include Aws::Structure
16697
+ end
16698
+
16699
+ # @!attribute [rw] arn
16700
+ # @return [String]
16701
+ #
16702
+ # @!attribute [rw] created_at
16703
+ # @return [Time]
16704
+ #
16705
+ # @!attribute [rw] description
16706
+ # @return [String]
16707
+ #
16708
+ # @!attribute [rw] id
16709
+ # @return [String]
16710
+ #
16711
+ # @!attribute [rw] modified_at
16712
+ # @return [Time]
16713
+ #
16714
+ # @!attribute [rw] name
16715
+ # @return [String]
16716
+ #
16717
+ # @!attribute [rw] tags
16718
+ # Represents the tags associated with a resource.
16719
+ # @return [Hash<String,String>]
16720
+ #
16721
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateCloudWatchAlarmTemplateGroupResponse AWS API Documentation
16722
+ #
16723
+ class UpdateCloudWatchAlarmTemplateGroupResponse < Struct.new(
16724
+ :arn,
16725
+ :created_at,
16726
+ :description,
16727
+ :id,
16728
+ :modified_at,
16729
+ :name,
16730
+ :tags)
16731
+ SENSITIVE = []
16732
+ include Aws::Structure
16733
+ end
16734
+
16735
+ # @!attribute [rw] arn
16736
+ # A cloudwatch alarm template group's ARN (Amazon Resource Name)
16737
+ # @return [String]
16738
+ #
16739
+ # @!attribute [rw] created_at
16740
+ # @return [Time]
16741
+ #
16742
+ # @!attribute [rw] description
16743
+ # A resource's optional description.
16744
+ # @return [String]
16745
+ #
16746
+ # @!attribute [rw] id
16747
+ # A cloudwatch alarm template group's id. AWS provided template
16748
+ # groups have ids that start with `aws-`
16749
+ # @return [String]
16750
+ #
16751
+ # @!attribute [rw] modified_at
16752
+ # @return [Time]
16753
+ #
16754
+ # @!attribute [rw] name
16755
+ # A resource's name. Names must be unique within the scope of a
16756
+ # resource type in a specific region.
16757
+ # @return [String]
16758
+ #
16759
+ # @!attribute [rw] tags
16760
+ # Represents the tags associated with a resource.
16761
+ # @return [Hash<String,String>]
16762
+ #
16763
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateCloudWatchAlarmTemplateGroupResponseContent AWS API Documentation
16764
+ #
16765
+ class UpdateCloudWatchAlarmTemplateGroupResponseContent < Struct.new(
16766
+ :arn,
16767
+ :created_at,
16768
+ :description,
16769
+ :id,
16770
+ :modified_at,
16771
+ :name,
16772
+ :tags)
16773
+ SENSITIVE = []
16774
+ include Aws::Structure
16775
+ end
16776
+
16777
+ # @!attribute [rw] comparison_operator
16778
+ # The comparison operator used to compare the specified statistic and
16779
+ # the threshold.
16780
+ # @return [String]
16781
+ #
16782
+ # @!attribute [rw] datapoints_to_alarm
16783
+ # @return [Integer]
16784
+ #
16785
+ # @!attribute [rw] description
16786
+ # @return [String]
16787
+ #
16788
+ # @!attribute [rw] evaluation_periods
16789
+ # @return [Integer]
16790
+ #
16791
+ # @!attribute [rw] group_identifier
16792
+ # @return [String]
16793
+ #
16794
+ # @!attribute [rw] identifier
16795
+ # @return [String]
16796
+ #
16797
+ # @!attribute [rw] metric_name
16798
+ # @return [String]
16799
+ #
16800
+ # @!attribute [rw] name
16801
+ # @return [String]
16802
+ #
16803
+ # @!attribute [rw] period
16804
+ # @return [Integer]
16805
+ #
16806
+ # @!attribute [rw] statistic
16807
+ # The statistic to apply to the alarm's metric data.
16808
+ # @return [String]
16809
+ #
16810
+ # @!attribute [rw] target_resource_type
16811
+ # The resource type this template should dynamically generate
16812
+ # cloudwatch metric alarms for.
16813
+ # @return [String]
16814
+ #
16815
+ # @!attribute [rw] threshold
16816
+ # @return [Float]
16817
+ #
16818
+ # @!attribute [rw] treat_missing_data
16819
+ # Specifies how missing data points are treated when evaluating the
16820
+ # alarm's condition.
16821
+ # @return [String]
16822
+ #
16823
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateCloudWatchAlarmTemplateRequest AWS API Documentation
16824
+ #
16825
+ class UpdateCloudWatchAlarmTemplateRequest < Struct.new(
16826
+ :comparison_operator,
16827
+ :datapoints_to_alarm,
16828
+ :description,
16829
+ :evaluation_periods,
16830
+ :group_identifier,
16831
+ :identifier,
16832
+ :metric_name,
16833
+ :name,
16834
+ :period,
16835
+ :statistic,
16836
+ :target_resource_type,
16837
+ :threshold,
16838
+ :treat_missing_data)
16839
+ SENSITIVE = []
16840
+ include Aws::Structure
16841
+ end
16842
+
16843
+ # @!attribute [rw] comparison_operator
16844
+ # The comparison operator used to compare the specified statistic and
16845
+ # the threshold.
16846
+ # @return [String]
16847
+ #
16848
+ # @!attribute [rw] datapoints_to_alarm
16849
+ # The number of datapoints within the evaluation period that must be
16850
+ # breaching to trigger the alarm.
16851
+ # @return [Integer]
16852
+ #
16853
+ # @!attribute [rw] description
16854
+ # A resource's optional description.
16855
+ # @return [String]
16856
+ #
16857
+ # @!attribute [rw] evaluation_periods
16858
+ # The number of periods over which data is compared to the specified
16859
+ # threshold.
16860
+ # @return [Integer]
16861
+ #
16862
+ # @!attribute [rw] group_identifier
16863
+ # A cloudwatch alarm template group's identifier. Can be either be
16864
+ # its id or current name.
16865
+ # @return [String]
16866
+ #
16867
+ # @!attribute [rw] metric_name
16868
+ # The name of the metric associated with the alarm. Must be compatible
16869
+ # with targetResourceType.
16870
+ # @return [String]
16871
+ #
16872
+ # @!attribute [rw] name
16873
+ # A resource's name. Names must be unique within the scope of a
16874
+ # resource type in a specific region.
16875
+ # @return [String]
16876
+ #
16877
+ # @!attribute [rw] period
16878
+ # The period, in seconds, over which the specified statistic is
16879
+ # applied.
16880
+ # @return [Integer]
16881
+ #
16882
+ # @!attribute [rw] statistic
16883
+ # The statistic to apply to the alarm's metric data.
16884
+ # @return [String]
16885
+ #
16886
+ # @!attribute [rw] target_resource_type
16887
+ # The resource type this template should dynamically generate
16888
+ # cloudwatch metric alarms for.
16889
+ # @return [String]
16890
+ #
16891
+ # @!attribute [rw] threshold
16892
+ # The threshold value to compare with the specified statistic.
16893
+ # @return [Float]
16894
+ #
16895
+ # @!attribute [rw] treat_missing_data
16896
+ # Specifies how missing data points are treated when evaluating the
16897
+ # alarm's condition.
16898
+ # @return [String]
16899
+ #
16900
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateCloudWatchAlarmTemplateRequestContent AWS API Documentation
16901
+ #
16902
+ class UpdateCloudWatchAlarmTemplateRequestContent < Struct.new(
16903
+ :comparison_operator,
16904
+ :datapoints_to_alarm,
16905
+ :description,
16906
+ :evaluation_periods,
16907
+ :group_identifier,
16908
+ :metric_name,
16909
+ :name,
16910
+ :period,
16911
+ :statistic,
16912
+ :target_resource_type,
16913
+ :threshold,
16914
+ :treat_missing_data)
16915
+ SENSITIVE = []
16916
+ include Aws::Structure
16917
+ end
16918
+
16919
+ # @!attribute [rw] arn
16920
+ # @return [String]
16921
+ #
16922
+ # @!attribute [rw] comparison_operator
16923
+ # The comparison operator used to compare the specified statistic and
16924
+ # the threshold.
16925
+ # @return [String]
16926
+ #
16927
+ # @!attribute [rw] created_at
16928
+ # @return [Time]
16929
+ #
16930
+ # @!attribute [rw] datapoints_to_alarm
16931
+ # @return [Integer]
16932
+ #
16933
+ # @!attribute [rw] description
16934
+ # @return [String]
16935
+ #
16936
+ # @!attribute [rw] evaluation_periods
16937
+ # @return [Integer]
16938
+ #
16939
+ # @!attribute [rw] group_id
16940
+ # @return [String]
16941
+ #
16942
+ # @!attribute [rw] id
16943
+ # @return [String]
16944
+ #
16945
+ # @!attribute [rw] metric_name
16946
+ # @return [String]
16947
+ #
16948
+ # @!attribute [rw] modified_at
16949
+ # @return [Time]
16950
+ #
16951
+ # @!attribute [rw] name
16952
+ # @return [String]
16953
+ #
16954
+ # @!attribute [rw] period
16955
+ # @return [Integer]
16956
+ #
16957
+ # @!attribute [rw] statistic
16958
+ # The statistic to apply to the alarm's metric data.
16959
+ # @return [String]
16960
+ #
16961
+ # @!attribute [rw] tags
16962
+ # Represents the tags associated with a resource.
16963
+ # @return [Hash<String,String>]
16964
+ #
16965
+ # @!attribute [rw] target_resource_type
16966
+ # The resource type this template should dynamically generate
16967
+ # cloudwatch metric alarms for.
16968
+ # @return [String]
16969
+ #
16970
+ # @!attribute [rw] threshold
16971
+ # @return [Float]
16972
+ #
16973
+ # @!attribute [rw] treat_missing_data
16974
+ # Specifies how missing data points are treated when evaluating the
16975
+ # alarm's condition.
16976
+ # @return [String]
16977
+ #
16978
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateCloudWatchAlarmTemplateResponse AWS API Documentation
16979
+ #
16980
+ class UpdateCloudWatchAlarmTemplateResponse < Struct.new(
16981
+ :arn,
16982
+ :comparison_operator,
16983
+ :created_at,
16984
+ :datapoints_to_alarm,
16985
+ :description,
16986
+ :evaluation_periods,
16987
+ :group_id,
16988
+ :id,
16989
+ :metric_name,
16990
+ :modified_at,
16991
+ :name,
16992
+ :period,
16993
+ :statistic,
16994
+ :tags,
16995
+ :target_resource_type,
16996
+ :threshold,
16997
+ :treat_missing_data)
16998
+ SENSITIVE = []
16999
+ include Aws::Structure
17000
+ end
17001
+
17002
+ # @!attribute [rw] arn
17003
+ # A cloudwatch alarm template's ARN (Amazon Resource Name)
17004
+ # @return [String]
17005
+ #
17006
+ # @!attribute [rw] comparison_operator
17007
+ # The comparison operator used to compare the specified statistic and
17008
+ # the threshold.
17009
+ # @return [String]
17010
+ #
17011
+ # @!attribute [rw] created_at
17012
+ # @return [Time]
17013
+ #
17014
+ # @!attribute [rw] datapoints_to_alarm
17015
+ # The number of datapoints within the evaluation period that must be
17016
+ # breaching to trigger the alarm.
17017
+ # @return [Integer]
17018
+ #
17019
+ # @!attribute [rw] description
17020
+ # A resource's optional description.
17021
+ # @return [String]
17022
+ #
17023
+ # @!attribute [rw] evaluation_periods
17024
+ # The number of periods over which data is compared to the specified
17025
+ # threshold.
17026
+ # @return [Integer]
17027
+ #
17028
+ # @!attribute [rw] group_id
17029
+ # A cloudwatch alarm template group's id. AWS provided template
17030
+ # groups have ids that start with `aws-`
17031
+ # @return [String]
17032
+ #
17033
+ # @!attribute [rw] id
17034
+ # A cloudwatch alarm template's id. AWS provided templates have ids
17035
+ # that start with `aws-`
17036
+ # @return [String]
17037
+ #
17038
+ # @!attribute [rw] metric_name
17039
+ # The name of the metric associated with the alarm. Must be compatible
17040
+ # with targetResourceType.
17041
+ # @return [String]
17042
+ #
17043
+ # @!attribute [rw] modified_at
17044
+ # @return [Time]
17045
+ #
17046
+ # @!attribute [rw] name
17047
+ # A resource's name. Names must be unique within the scope of a
17048
+ # resource type in a specific region.
17049
+ # @return [String]
17050
+ #
17051
+ # @!attribute [rw] period
17052
+ # The period, in seconds, over which the specified statistic is
17053
+ # applied.
17054
+ # @return [Integer]
17055
+ #
17056
+ # @!attribute [rw] statistic
17057
+ # The statistic to apply to the alarm's metric data.
17058
+ # @return [String]
17059
+ #
17060
+ # @!attribute [rw] tags
17061
+ # Represents the tags associated with a resource.
17062
+ # @return [Hash<String,String>]
17063
+ #
17064
+ # @!attribute [rw] target_resource_type
17065
+ # The resource type this template should dynamically generate
17066
+ # cloudwatch metric alarms for.
17067
+ # @return [String]
17068
+ #
17069
+ # @!attribute [rw] threshold
17070
+ # The threshold value to compare with the specified statistic.
17071
+ # @return [Float]
17072
+ #
17073
+ # @!attribute [rw] treat_missing_data
17074
+ # Specifies how missing data points are treated when evaluating the
17075
+ # alarm's condition.
17076
+ # @return [String]
17077
+ #
17078
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateCloudWatchAlarmTemplateResponseContent AWS API Documentation
17079
+ #
17080
+ class UpdateCloudWatchAlarmTemplateResponseContent < Struct.new(
17081
+ :arn,
17082
+ :comparison_operator,
17083
+ :created_at,
17084
+ :datapoints_to_alarm,
17085
+ :description,
17086
+ :evaluation_periods,
17087
+ :group_id,
17088
+ :id,
17089
+ :metric_name,
17090
+ :modified_at,
17091
+ :name,
17092
+ :period,
17093
+ :statistic,
17094
+ :tags,
17095
+ :target_resource_type,
17096
+ :threshold,
17097
+ :treat_missing_data)
17098
+ SENSITIVE = []
17099
+ include Aws::Structure
17100
+ end
17101
+
17102
+ # @!attribute [rw] description
17103
+ # @return [String]
17104
+ #
17105
+ # @!attribute [rw] identifier
17106
+ # @return [String]
17107
+ #
17108
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateEventBridgeRuleTemplateGroupRequest AWS API Documentation
17109
+ #
17110
+ class UpdateEventBridgeRuleTemplateGroupRequest < Struct.new(
17111
+ :description,
17112
+ :identifier)
17113
+ SENSITIVE = []
17114
+ include Aws::Structure
17115
+ end
17116
+
17117
+ # @!attribute [rw] description
17118
+ # A resource's optional description.
17119
+ # @return [String]
17120
+ #
17121
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateEventBridgeRuleTemplateGroupRequestContent AWS API Documentation
17122
+ #
17123
+ class UpdateEventBridgeRuleTemplateGroupRequestContent < Struct.new(
17124
+ :description)
17125
+ SENSITIVE = []
17126
+ include Aws::Structure
17127
+ end
17128
+
17129
+ # @!attribute [rw] arn
17130
+ # @return [String]
17131
+ #
17132
+ # @!attribute [rw] created_at
17133
+ # @return [Time]
17134
+ #
17135
+ # @!attribute [rw] description
17136
+ # @return [String]
17137
+ #
17138
+ # @!attribute [rw] id
17139
+ # @return [String]
17140
+ #
17141
+ # @!attribute [rw] modified_at
17142
+ # @return [Time]
17143
+ #
17144
+ # @!attribute [rw] name
17145
+ # @return [String]
17146
+ #
17147
+ # @!attribute [rw] tags
17148
+ # Represents the tags associated with a resource.
17149
+ # @return [Hash<String,String>]
17150
+ #
17151
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateEventBridgeRuleTemplateGroupResponse AWS API Documentation
17152
+ #
17153
+ class UpdateEventBridgeRuleTemplateGroupResponse < Struct.new(
17154
+ :arn,
17155
+ :created_at,
17156
+ :description,
17157
+ :id,
17158
+ :modified_at,
17159
+ :name,
17160
+ :tags)
17161
+ SENSITIVE = []
17162
+ include Aws::Structure
17163
+ end
17164
+
17165
+ # @!attribute [rw] arn
17166
+ # An eventbridge rule template group's ARN (Amazon Resource Name)
17167
+ # @return [String]
17168
+ #
17169
+ # @!attribute [rw] created_at
17170
+ # @return [Time]
17171
+ #
17172
+ # @!attribute [rw] description
17173
+ # A resource's optional description.
17174
+ # @return [String]
17175
+ #
17176
+ # @!attribute [rw] id
17177
+ # An eventbridge rule template group's id. AWS provided template
17178
+ # groups have ids that start with `aws-`
17179
+ # @return [String]
17180
+ #
17181
+ # @!attribute [rw] modified_at
17182
+ # @return [Time]
17183
+ #
17184
+ # @!attribute [rw] name
17185
+ # A resource's name. Names must be unique within the scope of a
17186
+ # resource type in a specific region.
17187
+ # @return [String]
17188
+ #
17189
+ # @!attribute [rw] tags
17190
+ # Represents the tags associated with a resource.
17191
+ # @return [Hash<String,String>]
17192
+ #
17193
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateEventBridgeRuleTemplateGroupResponseContent AWS API Documentation
17194
+ #
17195
+ class UpdateEventBridgeRuleTemplateGroupResponseContent < Struct.new(
17196
+ :arn,
17197
+ :created_at,
17198
+ :description,
17199
+ :id,
17200
+ :modified_at,
17201
+ :name,
17202
+ :tags)
17203
+ SENSITIVE = []
17204
+ include Aws::Structure
17205
+ end
17206
+
17207
+ # @!attribute [rw] description
17208
+ # @return [String]
17209
+ #
17210
+ # @!attribute [rw] event_targets
17211
+ # @return [Array<Types::EventBridgeRuleTemplateTarget>]
17212
+ #
17213
+ # @!attribute [rw] event_type
17214
+ # The type of event to match with the rule.
17215
+ # @return [String]
17216
+ #
17217
+ # @!attribute [rw] group_identifier
17218
+ # @return [String]
17219
+ #
17220
+ # @!attribute [rw] identifier
17221
+ # @return [String]
17222
+ #
17223
+ # @!attribute [rw] name
17224
+ # @return [String]
17225
+ #
17226
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateEventBridgeRuleTemplateRequest AWS API Documentation
17227
+ #
17228
+ class UpdateEventBridgeRuleTemplateRequest < Struct.new(
17229
+ :description,
17230
+ :event_targets,
17231
+ :event_type,
17232
+ :group_identifier,
17233
+ :identifier,
17234
+ :name)
17235
+ SENSITIVE = []
17236
+ include Aws::Structure
17237
+ end
17238
+
17239
+ # @!attribute [rw] description
17240
+ # A resource's optional description.
17241
+ # @return [String]
17242
+ #
17243
+ # @!attribute [rw] event_targets
17244
+ # @return [Array<Types::EventBridgeRuleTemplateTarget>]
17245
+ #
17246
+ # @!attribute [rw] event_type
17247
+ # The type of event to match with the rule.
17248
+ # @return [String]
17249
+ #
17250
+ # @!attribute [rw] group_identifier
17251
+ # An eventbridge rule template group's identifier. Can be either be
17252
+ # its id or current name.
17253
+ # @return [String]
17254
+ #
17255
+ # @!attribute [rw] name
17256
+ # A resource's name. Names must be unique within the scope of a
17257
+ # resource type in a specific region.
17258
+ # @return [String]
17259
+ #
17260
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateEventBridgeRuleTemplateRequestContent AWS API Documentation
17261
+ #
17262
+ class UpdateEventBridgeRuleTemplateRequestContent < Struct.new(
17263
+ :description,
17264
+ :event_targets,
17265
+ :event_type,
17266
+ :group_identifier,
17267
+ :name)
17268
+ SENSITIVE = []
17269
+ include Aws::Structure
17270
+ end
17271
+
17272
+ # @!attribute [rw] arn
17273
+ # @return [String]
17274
+ #
17275
+ # @!attribute [rw] created_at
17276
+ # @return [Time]
17277
+ #
17278
+ # @!attribute [rw] description
17279
+ # @return [String]
17280
+ #
17281
+ # @!attribute [rw] event_targets
17282
+ # @return [Array<Types::EventBridgeRuleTemplateTarget>]
17283
+ #
17284
+ # @!attribute [rw] event_type
17285
+ # The type of event to match with the rule.
17286
+ # @return [String]
17287
+ #
17288
+ # @!attribute [rw] group_id
17289
+ # @return [String]
17290
+ #
17291
+ # @!attribute [rw] id
17292
+ # @return [String]
17293
+ #
17294
+ # @!attribute [rw] modified_at
17295
+ # @return [Time]
17296
+ #
17297
+ # @!attribute [rw] name
17298
+ # @return [String]
17299
+ #
17300
+ # @!attribute [rw] tags
17301
+ # Represents the tags associated with a resource.
17302
+ # @return [Hash<String,String>]
17303
+ #
17304
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateEventBridgeRuleTemplateResponse AWS API Documentation
17305
+ #
17306
+ class UpdateEventBridgeRuleTemplateResponse < Struct.new(
17307
+ :arn,
17308
+ :created_at,
17309
+ :description,
17310
+ :event_targets,
17311
+ :event_type,
17312
+ :group_id,
17313
+ :id,
17314
+ :modified_at,
17315
+ :name,
17316
+ :tags)
17317
+ SENSITIVE = []
17318
+ include Aws::Structure
17319
+ end
17320
+
17321
+ # @!attribute [rw] arn
17322
+ # An eventbridge rule template's ARN (Amazon Resource Name)
17323
+ # @return [String]
17324
+ #
17325
+ # @!attribute [rw] created_at
17326
+ # @return [Time]
17327
+ #
17328
+ # @!attribute [rw] description
17329
+ # A resource's optional description.
17330
+ # @return [String]
17331
+ #
17332
+ # @!attribute [rw] event_targets
17333
+ # @return [Array<Types::EventBridgeRuleTemplateTarget>]
17334
+ #
17335
+ # @!attribute [rw] event_type
17336
+ # The type of event to match with the rule.
17337
+ # @return [String]
17338
+ #
17339
+ # @!attribute [rw] group_id
17340
+ # An eventbridge rule template group's id. AWS provided template
17341
+ # groups have ids that start with `aws-`
17342
+ # @return [String]
17343
+ #
17344
+ # @!attribute [rw] id
17345
+ # An eventbridge rule template's id. AWS provided templates have ids
17346
+ # that start with `aws-`
17347
+ # @return [String]
17348
+ #
17349
+ # @!attribute [rw] modified_at
17350
+ # @return [Time]
17351
+ #
17352
+ # @!attribute [rw] name
17353
+ # A resource's name. Names must be unique within the scope of a
17354
+ # resource type in a specific region.
17355
+ # @return [String]
17356
+ #
17357
+ # @!attribute [rw] tags
17358
+ # Represents the tags associated with a resource.
17359
+ # @return [Hash<String,String>]
17360
+ #
17361
+ # @see http://docs.aws.amazon.com/goto/WebAPI/medialive-2017-10-14/UpdateEventBridgeRuleTemplateResponseContent AWS API Documentation
17362
+ #
17363
+ class UpdateEventBridgeRuleTemplateResponseContent < Struct.new(
17364
+ :arn,
17365
+ :created_at,
17366
+ :description,
17367
+ :event_targets,
17368
+ :event_type,
17369
+ :group_id,
17370
+ :id,
17371
+ :modified_at,
17372
+ :name,
17373
+ :tags)
17374
+ SENSITIVE = []
17375
+ include Aws::Structure
17376
+ end
17377
+
13510
17378
  end
13511
17379
  end