check-vector-isAwsS3Uri | R Documentation |
Does the input contain an AWS S3 URI?
isAwsS3Uri(x)
isAnAwsS3Uri(x)
allAreAwsS3Uris(x)
x |
Object. |
This assert check is intended to be simple and does not check to see if the
URL exists (is active). For that, refer to isExistingUrl
instead.
TRUE
on success;
FALSE
on failure, with cause set.
isAwsS3Uri()
: Vectorized.
isAnAwsS3Uri()
: Scalar. Requires a single URI.
allAreAwsS3Uris()
: Scalar. Checks that all strings are URIs.
Updated 2023-11-03.
uris <- c("s3://acidgenomics.com/", "s3://koopa.acidgenomics.com/")
## TRUE ====
isAwsS3Uri(uris)
isAnAwsS3Uri(uris[[1L]])
allAreAwsS3Uris(uris)
## FALSE ====
isAwsS3Uri("xxx")
isAnAwsS3Uri(uris)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.