Class: Aws::CloudWatch::Types::DeleteInsightRulesInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudWatch::Types::DeleteInsightRulesInput
- Defined in:
- gems/aws-sdk-cloudwatch/lib/aws-sdk-cloudwatch/types.rb
Overview
Note:
When making an API call, you may pass DeleteInsightRulesInput data as a hash:
{
rule_names: ["InsightRuleName"], # required
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#rule_names ⇒ Array<String>
An array of the rule names to delete.
Instance Attribute Details
#rule_names ⇒ Array<String>
An array of the rule names to delete. If you need to find out the names of your rules, use DescribeInsightRules.
562 563 564 565 566 |
# File 'gems/aws-sdk-cloudwatch/lib/aws-sdk-cloudwatch/types.rb', line 562 class DeleteInsightRulesInput < Struct.new( :rule_names) SENSITIVE = [] include Aws::Structure end |