Skip to content

Delete Crl

iamrolesanywhere_delete_crl R Documentation

Deletes a certificate revocation list (CRL)

Description

Deletes a certificate revocation list (CRL).

Required permissions: rolesanywhere:DeleteCrl.

Usage

iamrolesanywhere_delete_crl(crlId)

Arguments

crlId

[required] The unique identifier of the certificate revocation list (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$delete_crl(
  crlId = "string"
)