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.
example
Use a bare-bones client and the command you need to make an API call.
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 generatingEventBridge
events. ACM sends one event per day per certificate until the certificate expires. By default, accounts receive events starting 45 days before certificate expiration.Use a bare-bones client and the command you need to make an API call.
import { ACMClient, PutAccountConfigurationCommand } from "@aws-sdk/client-acm"; // ES Modules import // const { ACMClient, PutAccountConfigurationCommand } = require("@aws-sdk/client-acm"); // CommonJS import const client = new ACMClient(config); const command = new PutAccountConfigurationCommand(input); const response = await client.send(command);
PutAccountConfigurationCommandInput for command's
input
shape.PutAccountConfigurationCommandOutput for command's
response
shape.config for ACMClient's
config
shape.