Class: AWSCDK::CertificateManager::CfnAccountProps

Inherits:
Jsii::Struct
  • Object
show all
Defined in:
certificate_manager/cfn_account_props.rb

Overview

Properties for defining a CfnAccount.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(expiry_events_configuration:) ⇒ CfnAccountProps

Returns a new instance of CfnAccountProps.

Parameters:



10
11
12
13
# File 'certificate_manager/cfn_account_props.rb', line 10

def initialize(expiry_events_configuration:)
  @expiry_events_configuration = expiry_events_configuration.is_a?(Hash) ? ::AWSCDK::CertificateManager::CfnAccount::ExpiryEventsConfigurationProperty.new(**expiry_events_configuration.transform_keys(&:to_sym)) : expiry_events_configuration
  Jsii::Type.check_type(@expiry_events_configuration, JSON.parse(Base64.strict_decode64("eyJ1bmlvbiI6eyJ0eXBlcyI6W3siZnFuIjoiYXdzLWNkay1saWIuSVJlc29sdmFibGUifSx7ImZxbiI6ImF3cy1jZGstbGliLmF3c19jZXJ0aWZpY2F0ZW1hbmFnZXIuQ2ZuQWNjb3VudC5FeHBpcnlFdmVudHNDb25maWd1cmF0aW9uUHJvcGVydHkifV19fQ==")), "expiryEventsConfiguration")
end

Instance Attribute Details

#expiry_events_configurationAWSCDK::IResolvable, AWSCDK::CertificateManager::CfnAccount::ExpiryEventsConfigurationProperty (readonly)

Object containing expiration events options associated with an AWS account .

For more information, see ExpiryEventsConfiguration in the API reference.



21
22
23
# File 'certificate_manager/cfn_account_props.rb', line 21

def expiry_events_configuration
  @expiry_events_configuration
end

Class Method Details

.jsii_propertiesObject



23
24
25
26
27
# File 'certificate_manager/cfn_account_props.rb', line 23

def self.jsii_properties
  {
    :expiry_events_configuration => "expiryEventsConfiguration",
  }
end

Instance Method Details

#to_jsiiObject



29
30
31
32
33
34
35
# File 'certificate_manager/cfn_account_props.rb', line 29

def to_jsii
  result = {}
  result.merge!({
    "expiryEventsConfiguration" => @expiry_events_configuration,
  })
  result.compact
end