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¶
Arguments¶
ApplicationIdThe ID of the application.
ApplicationArnThe Amazon Resource Name (ARN) of the application.
AppRegistryArnThe 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"
)
)