Skip to content

Add Trust Store Revocations

elbv2_add_trust_store_revocations R Documentation

Adds the specified revocation file to the specified trust store

Description

Adds the specified revocation file to the specified trust store.

Usage

elbv2_add_trust_store_revocations(TrustStoreArn, RevocationContents)

Arguments

TrustStoreArn

[required] The Amazon Resource Name (ARN) of the trust store.

RevocationContents

The revocation file to add.

Value

A list with the following syntax:

list(
  TrustStoreRevocations = list(
    list(
      TrustStoreArn = "string",
      RevocationId = 123,
      RevocationType = "CRL",
      NumberOfRevokedEntries = 123
    )
  )
)

Request syntax

svc$add_trust_store_revocations(
  TrustStoreArn = "string",
  RevocationContents = list(
    list(
      S3Bucket = "string",
      S3Key = "string",
      S3ObjectVersion = "string",
      RevocationType = "CRL"
    )
  )
)