Update Application Settings
ssmsap_update_application_settings | R Documentation |
Updates the settings of an application registered with AWS Systems Manager for SAP¶
Description¶
Updates the settings of an application registered with AWS Systems Manager for SAP.
Usage¶
ssmsap_update_application_settings(ApplicationId,
CredentialsToAddOrUpdate, CredentialsToRemove, Backint, DatabaseArn)
Arguments¶
ApplicationId |
[required] The ID of the application. |
CredentialsToAddOrUpdate |
The credentials to be added or updated. |
CredentialsToRemove |
The credentials to be removed. |
Backint |
Installation of AWS Backint Agent for SAP HANA. |
DatabaseArn |
The Amazon Resource Name of the SAP HANA database that replaces the current SAP HANA connection with the SAP_ABAP application. |
Value¶
A list with the following syntax:
list(
Message = "string",
OperationIds = list(
"string"
)
)
Request syntax¶
svc$update_application_settings(
ApplicationId = "string",
CredentialsToAddOrUpdate = list(
list(
DatabaseName = "string",
CredentialType = "ADMIN",
SecretId = "string"
)
),
CredentialsToRemove = list(
list(
DatabaseName = "string",
CredentialType = "ADMIN",
SecretId = "string"
)
),
Backint = list(
BackintMode = "AWSBackup",
EnsureNoBackupInProcess = TRUE|FALSE
),
DatabaseArn = "string"
)