Describe Notification Configurations
| autoscaling_describe_notification_configurations | R Documentation |
Gets information about the Amazon SNS notifications that are configured for one or more Auto Scaling groups¶
Description¶
Gets information about the Amazon SNS notifications that are configured for one or more Auto Scaling groups.
Usage¶
Arguments¶
AutoScalingGroupNamesThe name of the Auto Scaling group.
NextTokenThe token for the next set of items to return. (You received this token from a previous call.)
MaxRecordsThe maximum number of items to return with this call. The default value is
50and the maximum value is100.
Value¶
A list with the following syntax:
list(
NotificationConfigurations = list(
list(
AutoScalingGroupName = "string",
TopicARN = "string",
NotificationType = "string"
)
),
NextToken = "string"
)
Request syntax¶
svc$describe_notification_configurations(
AutoScalingGroupNames = list(
"string"
),
NextToken = "string",
MaxRecords = 123
)