Class: Aws::SecurityHub::Types::UnprocessedAutomationRule
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityHub::Types::UnprocessedAutomationRule
- Defined in:
- gems/aws-sdk-securityhub/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.
30110 30111 30112 30113 30114 30115 30116 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 30110 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.
30110 30111 30112 30113 30114 30115 30116 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 30110 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.
30110 30111 30112 30113 30114 30115 30116 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 30110 class UnprocessedAutomationRule < Struct.new( :rule_arn, :error_code, :error_message) SENSITIVE = [] include Aws::Structure end |