Update Crl
| iamrolesanywhere_update_crl | R Documentation |
Updates the certificate revocation list (CRL)¶
Description¶
Updates the certificate revocation list (CRL). A CRL is a list of certificates that have been revoked by the issuing certificate authority (CA). IAM Roles Anywhere validates against the CRL before issuing credentials.
Required permissions: rolesanywhere:UpdateCrl.
Usage¶
iamrolesanywhere_update_crl(crlId, name, crlData)
Arguments¶
crlId |
[required] The unique identifier of the certificate revocation list (CRL). |
name |
The name of the Crl. |
crlData |
The x509 v3 specified certificate revocation list (CRL). |
Value¶
A list with the following syntax:
list(
crl = list(
crlId = "string",
crlArn = "string",
name = "string",
enabled = TRUE|FALSE,
crlData = raw,
trustAnchorArn = "string",
createdAt = as.POSIXct(
"2015-01-01"
),
updatedAt = as.POSIXct(
"2015-01-01"
)
)
)
Request syntax¶
svc$update_crl(
crlId = "string",
name = "string",
crlData = raw
)