Class: Aws::SecurityHub::Types::UnprocessedAutomationRule
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityHub::Types::UnprocessedAutomationRule
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-securityhub/types.rb
Overview
A list of objects containing ‘RuleArn`, `ErrorCode`, and `ErrorMessage`. This parameter tells you which automation rules the request didn’t process and why.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#error_code ⇒ Integer
The error code associated with the unprocessed automation rule.
-
#error_message ⇒ String
An error message describing why a request didn’t process a specific rule.
-
#rule_arn ⇒ String
The Amazon Resource Name (ARN) for the unprocessed automation rule.
Instance Attribute Details
#error_code ⇒ Integer
The error code associated with the unprocessed automation rule.
30754 30755 30756 30757 30758 30759 30760 |
# File 'lib/aws-sdk-securityhub/types.rb', line 30754 class UnprocessedAutomationRule < Struct.new( :rule_arn, :error_code, :error_message) SENSITIVE = [] include Aws::Structure end |
#error_message ⇒ String
An error message describing why a request didn’t process a specific rule.
30754 30755 30756 30757 30758 30759 30760 |
# File 'lib/aws-sdk-securityhub/types.rb', line 30754 class UnprocessedAutomationRule < Struct.new( :rule_arn, :error_code, :error_message) SENSITIVE = [] include Aws::Structure end |
#rule_arn ⇒ String
The Amazon Resource Name (ARN) for the unprocessed automation rule.
30754 30755 30756 30757 30758 30759 30760 |
# File 'lib/aws-sdk-securityhub/types.rb', line 30754 class UnprocessedAutomationRule < Struct.new( :rule_arn, :error_code, :error_message) SENSITIVE = [] include Aws::Structure end |