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.
Describes the specified security groups or all of your security groups.
For .NET Core this operation is only available in asynchronous form. Please refer to DescribeSecurityGroupsAsync.
Namespace: Amazon.EC2
Assembly: AWSSDK.EC2.dll
Version: 3.x.y.z
public virtual DescribeSecurityGroupsResponse DescribeSecurityGroups( DescribeSecurityGroupsRequest request )
Container for the necessary parameters to execute the DescribeSecurityGroups service method.
This example describes the specified security group.
var client = new AmazonEC2Client(); var response = client.DescribeSecurityGroups(new DescribeSecurityGroupsRequest { GroupIds = new List<string> { "sg-903004f8" } });
This example describes the security groups that include the specified tag (Purpose=test).
var client = new AmazonEC2Client(); var response = client.DescribeSecurityGroups(new DescribeSecurityGroupsRequest { Filters = new List<Filter> { new Filter { Name = "tag:Purpose", Values = new List<string> { "test" } } } });
.NET Framework:
Supported in: 4.5 and newer, 3.5