Skip to content

Update Trust Store

workspacesweb_update_trust_store R Documentation

Updates the trust store

Description

Updates the trust store.

Usage

workspacesweb_update_trust_store(certificatesToAdd,
  certificatesToDelete, clientToken, trustStoreArn)

Arguments

certificatesToAdd

A list of CA certificates to add to the trust store.

certificatesToDelete

A list of CA certificates to delete from a trust store.

clientToken

A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. Idempotency ensures that an API request completes only once. With an idempotent request, if the original request completes successfully, subsequent retries with the same client token return the result from the original successful request.

If you do not specify a client token, one is automatically generated by the Amazon Web Services SDK.

trustStoreArn

[required] The ARN of the trust store.

Value

A list with the following syntax:

list(
  trustStoreArn = "string"
)

Request syntax

svc$update_trust_store(
  certificatesToAdd = list(
    raw
  ),
  certificatesToDelete = list(
    "string"
  ),
  clientToken = "string",
  trustStoreArn = "string"
)