Class: Aws::ACM::Types::ExpiryEventsConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::ACM::Types::ExpiryEventsConfiguration
- Defined in:
- gems/aws-sdk-acm/lib/aws-sdk-acm/types.rb
Overview
Note:
When making an API call, you may pass ExpiryEventsConfiguration data as a hash:
{
days_before_expiry: 1,
}
Object containing expiration events options associated with an Amazon Web Services account.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#days_before_expiry ⇒ Integer
Specifies the number of days prior to certificate expiration when ACM starts generating
EventBridge
events.
Instance Attribute Details
#days_before_expiry ⇒ Integer
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.
541 542 543 544 545 |
# File 'gems/aws-sdk-acm/lib/aws-sdk-acm/types.rb', line 541 class ExpiryEventsConfiguration < Struct.new( :days_before_expiry) SENSITIVE = [] include Aws::Structure end |