Class: Aws::AutoScaling::Types::DeleteNotificationConfigurationType

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

Overview

Note:

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

{
  auto_scaling_group_name: "ResourceName", # required
  topic_arn: "ResourceName", # required
}

Instance Attribute Summary collapse

Instance Attribute Details

#auto_scaling_group_nameString

The name of the Auto Scaling group.

Returns:

  • (String)


1397
1398
1399
1400
1401
# File 'lib/aws-sdk-autoscaling/types.rb', line 1397

class DeleteNotificationConfigurationType < Struct.new(
  :auto_scaling_group_name,
  :topic_arn)
  include Aws::Structure
end

#topic_arnString

The Amazon Resource Name (ARN) of the Amazon Simple Notification Service (Amazon SNS) topic.

Returns:

  • (String)


1397
1398
1399
1400
1401
# File 'lib/aws-sdk-autoscaling/types.rb', line 1397

class DeleteNotificationConfigurationType < Struct.new(
  :auto_scaling_group_name,
  :topic_arn)
  include Aws::Structure
end