build_query_string
by exiting safely when parameter
is empty.cpp
, and dependency
Rcpp
.xml_build
to allow empty characters from
operations.escape
with new helper function
paws_url_encoder
(1000x improvement).paws_url_decoder
(780x improvement).s3$get_bucket_website
.aws sso login --profile my-profile
.LastModified
from
get_object
.issue
network request function to avoid
CRAN check errors.AWS_DEFAULT_REGION
in addition to
AWS_REGION
.do.call
,
including any user-supplied configuration to the service, e.g. a custom
endpoint.s3_put_bucket_lifecycle_configuration
. Fixes
#438.s3 <- paws::s3(config = list(close_connection = TRUE))
.
Fixes #431.Use path style URLs for S3 when using custom endpoints, (e.g. localhost:9000/mybucket). This is useful when using software like MinIO. When not using custom endpoints, Paws will in general use “virtual hosted” URLs (e.g. mybucket.s3.amazonaws.com) except in special cases.
Use path style URLs for S3 when using the new
s3_force_path_style
option when calling paws::s3(),
e.g.:
<- paws::s3(config = list(
s3 s3_force_path_style = TRUE
))
Add support and a default value for timeout
, how
long to wait in seconds for an acknowledgement of an HTTP request before
failing. Default = 60. This is user configurable by adding arguments to
the service call, e.g.
<- paws::svc(config = list(timeout = 10)) svc
Don’t skip lower case field names for REST location elements. For
example,
lexmodelbuildingservice$create_bot_version(name, checksum)
previously failed due incorrectly skipping the name
field.
mfa_serial
shared configuration file item.AWS_CONFIG_FILE
,
AWS_SHARED_CREDENTIALS_FILE
,
AWS_CREDENTIAL_EXPIRATION
, and
AWS_EC2_METADATA_DISABLED
environment variables. See
https://github.com/paws-r/paws/blob/main/docs/credentials.md
for explanations of all settings.s3$put_object
will now read in files when given file
paths for the Body
parameter. Previously it would accept
only blobs, e.g. from readBin
.paws_error
in addition to their
other classes, e.g. http_400
, error
,
condition
.role_arn
,
credential_source
, and source_profile
.credential_process
.numeric
objects rather than
32-bit integer
objects.s3$select_object_content
. This operation allows you to
query a data file in S3 using SQL."Me voy a casa mañana."
.paws::svc(config = list(credentials = list(profile = "my-profile")))
.
Previously the profile was not used to get credentials.svc <- paws::svc(config = list(region = "us-west-1"))
.new_service
, namely each endpoint should look
like list(endpoint = "foo", global = FALSE)
.Initial release.