Class: Aws::FMS::Types::PutNotificationChannelRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-fms/types.rb

Overview

Note:

When making an API call, you may pass PutNotificationChannelRequest data as a hash:

{
  sns_topic_arn: "ResourceArn", # required
  sns_role_name: "ResourceArn", # required
}

Instance Attribute Summary collapse

Instance Attribute Details

#sns_role_nameString

The Amazon Resource Name (ARN) of the IAM role that allows Amazon SNS to record AWS Firewall Manager activity.

Returns:

  • (String)


598
599
600
601
602
# File 'lib/aws-sdk-fms/types.rb', line 598

class PutNotificationChannelRequest < Struct.new(
  :sns_topic_arn,
  :sns_role_name)
  include Aws::Structure
end

#sns_topic_arnString

The Amazon Resource Name (ARN) of the SNS topic that collects notifications from AWS Firewall Manager.

Returns:

  • (String)


598
599
600
601
602
# File 'lib/aws-sdk-fms/types.rb', line 598

class PutNotificationChannelRequest < Struct.new(
  :sns_topic_arn,
  :sns_role_name)
  include Aws::Structure
end