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 GetApplication operation. This API is in preview release and subject to change.

Get an Application resource.

Inheritance Hierarchy

System.Object
  Amazon.Runtime.AmazonWebServiceRequest
    Amazon.AppIntegrationsService.AmazonAppIntegrationsServiceRequest
      Amazon.AppIntegrationsService.Model.GetApplicationRequest

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

Syntax

C#
public class GetApplicationRequest : AmazonAppIntegrationsServiceRequest
         IAmazonWebServiceRequest

The GetApplicationRequest type exposes the following members

Constructors

NameDescription
Public Method GetApplicationRequest()

Properties

NameTypeDescription
Public Property Arn System.String

Gets and sets the property Arn.

The Amazon Resource Name (ARN) of the Application.

Examples

The following retrives an application.

To get an application


var client = new AmazonAppIntegrationsServiceClient();
var response = client.GetApplication(new GetApplicationRequest 
{
    Arn = "arn:aws:app-integrations:us-west-2:0123456789012:application/98542c53-e8ac-4570-9c85-c6552c8d9c5e"
});

ApplicationSourceConfig applicationSourceConfig = response.ApplicationSourceConfig;
string description = response.Description;
string name = response.Name;
string awsNamespace = response.Namespace;

            

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