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.

Describes your IAM instance profile associations.

Note:

For .NET Core this operation is only available in asynchronous form. Please refer to DescribeIamInstanceProfileAssociationsAsync.

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

Syntax

C#
public virtual DescribeIamInstanceProfileAssociationsResponse DescribeIamInstanceProfileAssociations(
         DescribeIamInstanceProfileAssociationsRequest request
)

Parameters

request
Type: Amazon.EC2.Model.DescribeIamInstanceProfileAssociationsRequest

Container for the necessary parameters to execute the DescribeIamInstanceProfileAssociations service method.

Return Value


The response from the DescribeIamInstanceProfileAssociations service method, as returned by EC2.

Examples

This example describes the specified IAM instance profile association.

To describe an IAM instance profile association


var client = new AmazonEC2Client();
var response = client.DescribeIamInstanceProfileAssociations(new DescribeIamInstanceProfileAssociationsRequest 
{
    AssociationIds = new List<string> {
        "iip-assoc-0db249b1f25fa24b8"
    }
});

List<IamInstanceProfileAssociation> iamInstanceProfileAssociations = response.IamInstanceProfileAssociations;

            

Version Information

.NET Framework:
Supported in: 4.5 and newer, 3.5

See Also