interface ExpiryEventsConfigurationProperty
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.CertificateManager.CfnAccount.ExpiryEventsConfigurationProperty | 
  Go | github.com/aws/aws-cdk-go/awscdk/v2/awscertificatemanager#CfnAccount_ExpiryEventsConfigurationProperty | 
  Java | software.amazon.awscdk.services.certificatemanager.CfnAccount.ExpiryEventsConfigurationProperty | 
  Python | aws_cdk.aws_certificatemanager.CfnAccount.ExpiryEventsConfigurationProperty | 
  TypeScript  | aws-cdk-lib » aws_certificatemanager » CfnAccount » ExpiryEventsConfigurationProperty | 
Object containing expiration events options associated with an AWS account .
For more information, see ExpiryEventsConfiguration in the API reference.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_certificatemanager as certificatemanager } from 'aws-cdk-lib';
const expiryEventsConfigurationProperty: certificatemanager.CfnAccount.ExpiryEventsConfigurationProperty = {
  daysBeforeExpiry: 123,
};
Properties
| Name | Type | Description | 
|---|---|---|
| days | number | This option specifies the number of days prior to certificate expiration when ACM starts generating EventBridge events. | 
daysBeforeExpiry?
Type:
number
(optional)
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.

 .NET
 Go
 Java
 Python
 TypeScript