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.

This is the response object from the GetApplication operation.

Inheritance Hierarchy

System.Object
  Amazon.Runtime.AmazonWebServiceResponse
    Amazon.AppIntegrationsService.Model.GetApplicationResponse

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

Syntax

C#
public class GetApplicationResponse : AmazonWebServiceResponse

The GetApplicationResponse type exposes the following members

Constructors

NameDescription
Public Method GetApplicationResponse()

Properties

NameTypeDescription
Public Property ApplicationSourceConfig Amazon.AppIntegrationsService.Model.ApplicationSourceConfig

Gets and sets the property ApplicationSourceConfig.

The configuration for where the application should be loaded from.

Public Property Arn System.String

Gets and sets the property Arn.

The Amazon Resource Name (ARN) of the Application.

Public Property ContentLength System.Int64 Inherited from Amazon.Runtime.AmazonWebServiceResponse.
Public Property CreatedTime System.DateTime

Gets and sets the property CreatedTime.

The created time of the Application.

Public Property Description System.String

Gets and sets the property Description.

The description of the application.

Public Property HttpStatusCode System.Net.HttpStatusCode Inherited from Amazon.Runtime.AmazonWebServiceResponse.
Public Property Id System.String

Gets and sets the property Id.

A unique identifier for the Application.

Public Property LastModifiedTime System.DateTime

Gets and sets the property LastModifiedTime.

The last modified time of the Application.

Public Property Name System.String

Gets and sets the property Name.

The name of the application.

Public Property Namespace System.String

Gets and sets the property Namespace.

The namespace of the application.

Public Property Permissions System.Collections.Generic.List<System.String>

Gets and sets the property Permissions.

The configuration of events or requests that the application has access to.

Public Property Publications System.Collections.Generic.List<Amazon.AppIntegrationsService.Model.Publication>

Gets and sets the property Publications.

The events that the application publishes.

Public Property ResponseMetadata Amazon.Runtime.ResponseMetadata Inherited from Amazon.Runtime.AmazonWebServiceResponse.
Public Property Subscriptions System.Collections.Generic.List<Amazon.AppIntegrationsService.Model.Subscription>

Gets and sets the property Subscriptions.

The events that the application subscribes.

Public Property Tags System.Collections.Generic.Dictionary<System.String, System.String>

Gets and sets the property Tags.

The tags used to organize, track, or control access for this resource. For example, { "tags": {"key1":"value1", "key2":"value2"} }.

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