CfnAccountProps
- class aws_cdk.aws_certificatemanager.CfnAccountProps(*, expiry_events_configuration)
Bases:
object
Properties for defining a
CfnAccount
.- Parameters:
expiry_events_configuration (
Union
[IResolvable
,ExpiryEventsConfigurationProperty
,Dict
[str
,Any
]]) – Object containing expiration events options associated with an AWS account . For more information, see ExpiryEventsConfiguration in the API reference.- See:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_certificatemanager as certificatemanager cfn_account_props = certificatemanager.CfnAccountProps( expiry_events_configuration=certificatemanager.CfnAccount.ExpiryEventsConfigurationProperty( days_before_expiry=123 ) )
Attributes
- expiry_events_configuration
Object containing expiration events options associated with an AWS account .
For more information, see ExpiryEventsConfiguration in the API reference.