Class: Aws::IoT::Types::AuditNotificationTarget
- Inherits:
-
Struct
- Object
- Struct
- Aws::IoT::Types::AuditNotificationTarget
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-iot/types.rb
Overview
Note:
When making an API call, you may pass AuditNotificationTarget data as a hash:
{
target_arn: "TargetArn",
role_arn: "RoleArn",
enabled: false,
}
Information about the targets to which audit notifications are sent.
Instance Attribute Summary collapse
-
#enabled ⇒ Boolean
True if notifications to the target are enabled.
-
#role_arn ⇒ String
The ARN of the role that grants permission to send notifications to the target.
-
#target_arn ⇒ String
The ARN of the target (SNS topic) to which audit notifications are sent.
Instance Attribute Details
#enabled ⇒ Boolean
True if notifications to the target are enabled.
775 776 777 778 779 780 |
# File 'lib/aws-sdk-iot/types.rb', line 775 class AuditNotificationTarget < Struct.new( :target_arn, :role_arn, :enabled) include Aws::Structure end |
#role_arn ⇒ String
The ARN of the role that grants permission to send notifications to the target.
775 776 777 778 779 780 |
# File 'lib/aws-sdk-iot/types.rb', line 775 class AuditNotificationTarget < Struct.new( :target_arn, :role_arn, :enabled) include Aws::Structure end |
#target_arn ⇒ String
The ARN of the target (SNS topic) to which audit notifications are sent.
775 776 777 778 779 780 |
# File 'lib/aws-sdk-iot/types.rb', line 775 class AuditNotificationTarget < Struct.new( :target_arn, :role_arn, :enabled) include Aws::Structure end |