AWS SDK Version 3 for .NET
API Reference

AWS services or capabilities described in AWS Documentation may vary by region/location. Click Getting Started with Amazon AWS to see specific differences applicable to the China (Beijing) Region.

Container for the parameters to the DescribeNotificationConfigurations operation. Gets information about the Amazon SNS notifications that are configured for one or more Auto Scaling groups.

Inheritance Hierarchy

System.Object
  Amazon.Runtime.AmazonWebServiceRequest
    Amazon.AutoScaling.AmazonAutoScalingRequest
      Amazon.AutoScaling.Model.DescribeNotificationConfigurationsRequest

Namespace: Amazon.AutoScaling.Model
Assembly: AWSSDK.AutoScaling.dll
Version: 3.x.y.z

Syntax

C#
public class DescribeNotificationConfigurationsRequest : AmazonAutoScalingRequest
         IAmazonWebServiceRequest

The DescribeNotificationConfigurationsRequest type exposes the following members

Constructors

Properties

NameTypeDescription
Public Property AutoScalingGroupNames System.Collections.Generic.List<System.String>

Gets and sets the property AutoScalingGroupNames.

The name of the Auto Scaling group.

Public Property MaxRecords System.Int32

Gets and sets the property MaxRecords.

The maximum number of items to return with this call. The default value is 50 and the maximum value is 100.

Public Property NextToken System.String

Gets and sets the property NextToken.

The token for the next set of items to return. (You received this token from a previous call.)

Examples

This example describes the notification configurations for the specified Auto Scaling group.

To describe Auto Scaling notification configurations


var client = new AmazonAutoScalingClient();
var response = client.DescribeNotificationConfigurations(new DescribeNotificationConfigurationsRequest 
{
    AutoScalingGroupNames = new List<string> {
        "my-auto-scaling-group"
    }
});

List<NotificationConfiguration> notificationConfigurations = response.NotificationConfigurations;

            

Version Information

.NET Core App:
Supported in: 3.1

.NET Standard:
Supported in: 2.0

.NET Framework:
Supported in: 4.5, 4.0, 3.5