Get Database
ssmsap_get_database | R Documentation |
Gets the SAP HANA database of an application registered with AWS Systems Manager for SAP¶
Description¶
Gets the SAP HANA database of an application registered with AWS Systems Manager for SAP.
Usage¶
ssmsap_get_database(ApplicationId, ComponentId, DatabaseId, DatabaseArn)
Arguments¶
ApplicationId |
The ID of the application. |
ComponentId |
The ID of the component. |
DatabaseId |
The ID of the database. |
DatabaseArn |
The Amazon Resource Name (ARN) of the database. |
Value¶
A list with the following syntax:
list(
Database = list(
ApplicationId = "string",
ComponentId = "string",
Credentials = list(
list(
DatabaseName = "string",
CredentialType = "ADMIN",
SecretId = "string"
)
),
DatabaseId = "string",
DatabaseName = "string",
DatabaseType = "SYSTEM"|"TENANT",
Arn = "string",
Status = "RUNNING"|"STARTING"|"STOPPED"|"WARNING"|"UNKNOWN"|"ERROR",
PrimaryHost = "string",
SQLPort = 123,
LastUpdated = as.POSIXct(
"2015-01-01"
),
ConnectedComponentArns = list(
"string"
)
),
Tags = list(
"string"
)
)
Request syntax¶
svc$get_database(
ApplicationId = "string",
ComponentId = "string",
DatabaseId = "string",
DatabaseArn = "string"
)