Skip to content

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(crlData, crlId, name)

Arguments

crlData

The x509 v3 specified certificate revocation list (CRL).

crlId

[required] The unique identifier of the certificate revocation list (CRL).

name

The name of the Crl.

Value

A list with the following syntax:

list(
  crl = list(
    createdAt = as.POSIXct(
      "2015-01-01"
    ),
    crlArn = "string",
    crlData = raw,
    crlId = "string",
    enabled = TRUE|FALSE,
    name = "string",
    trustAnchorArn = "string",
    updatedAt = as.POSIXct(
      "2015-01-01"
    )
  )
)

Request syntax

svc$update_crl(
  crlData = raw,
  crlId = "string",
  name = "string"
)