Skip to content

Put Account Configuration

acm_put_account_configuration R Documentation

Adds or modifies account-level configurations in ACM

Description

Adds or modifies account-level configurations in ACM.

The supported configuration option is DaysBeforeExpiry. This option specifies the number of days prior to certificate expiration when ACM starts generating EventBridge events. ACM sends one event per day per certificate until the certificate expires. By default, accounts receive events starting 45 days before certificate expiration.

Usage

acm_put_account_configuration(ExpiryEvents, IdempotencyToken)

Arguments

ExpiryEvents

Specifies expiration events associated with an account.

IdempotencyToken

[required] Customer-chosen string used to distinguish between calls to put_account_configuration. Idempotency tokens time out after one hour. If you call put_account_configuration multiple times with the same unexpired idempotency token, ACM treats it as the same request and returns the original result. If you change the idempotency token for each call, ACM treats each call as a new request.

Value

An empty list.

Request syntax

svc$put_account_configuration(
  ExpiryEvents = list(
    DaysBeforeExpiry = 123
  ),
  IdempotencyToken = "string"
)