Put Default Application Setting
| opensearchservice_put_default_application_setting | R Documentation |
Sets the default application to the application with the specified ARN¶
Description¶
Sets the default application to the application with the specified ARN.
To remove the default application, use the
get_default_application_setting operation to get the current default
and then call the put_default_application_setting with the current
applications ARN and the setAsDefault parameter set to false.
Usage¶
opensearchservice_put_default_application_setting(applicationArn,
setAsDefault)
Arguments¶
applicationArn |
[required] The Amazon Resource Name (ARN) of the domain. See Identifiers for IAM Entities in Using Amazon Web Services Identity and Access Management for more information. |
setAsDefault |
[required] Set to true to set the specified ARN as the default application. Set to false to clear the default application. |
Value¶
A list with the following syntax:
list(
applicationArn = "string"
)
Request syntax¶
svc$put_default_application_setting(
applicationArn = "string",
setAsDefault = TRUE|FALSE
)