Skip to content

Get Application

ssmsap_get_application R Documentation

Gets an application registered with AWS Systems Manager for SAP

Description

Gets an application registered with AWS Systems Manager for SAP. It also returns the components of the application.

Usage

ssmsap_get_application(ApplicationId, ApplicationArn, AppRegistryArn)

Arguments

ApplicationId

The ID of the application.

ApplicationArn

The Amazon Resource Name (ARN) of the application.

AppRegistryArn

The Amazon Resource Name (ARN) of the application registry.

Value

A list with the following syntax:

list(
  Application = list(
    Id = "string",
    Type = "HANA"|"SAP_ABAP",
    Arn = "string",
    AppRegistryArn = "string",
    Status = "ACTIVATED"|"STARTING"|"STOPPED"|"STOPPING"|"FAILED"|"REGISTERING"|"DELETING"|"UNKNOWN",
    DiscoveryStatus = "SUCCESS"|"REGISTRATION_FAILED"|"REFRESH_FAILED"|"REGISTERING"|"DELETING",
    Components = list(
      "string"
    ),
    LastUpdated = as.POSIXct(
      "2015-01-01"
    ),
    StatusMessage = "string",
    AssociatedApplicationArns = list(
      "string"
    )
  ),
  Tags = list(
    "string"
  )
)

Request syntax

svc$get_application(
  ApplicationId = "string",
  ApplicationArn = "string",
  AppRegistryArn = "string"
)