aws_set_retry_time {aws.ecx} | R Documentation |
Get or set the package settings
Description
Get or set the package settings
Usage
aws_set_retry_time(x)
aws_set_print_on_error(x)
aws_set_network_timeout(x)
aws_get_retry_time()
aws_get_print_on_error()
aws_get_network_timeout()
Arguments
x |
the value to be set. For the timeout setting, the unit is seconds. |
Value
Setter: The old value Getter: The current value
Examples
## Set the timeout to 10 seconds
aws_set_network_timeout(10)
## Get the timeout setting
aws_get_network_timeout()
## Turn off print on error
aws_set_print_on_error(FALSE)
## Set the retry times to 5
aws_set_retry_time(5)
[Package aws.ecx version 1.0.5 Index]