Class: AWSCDK::ODB::CfnCloudExadataInfrastructure::CustomerContactProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::ODB::CfnCloudExadataInfrastructure::CustomerContactProperty
- Defined in:
- odb/cfn_cloud_exadata_infrastructure.rb
Overview
A contact to receive notification from Oracle about maintenance updates for a specific Exadata infrastructure.
Instance Attribute Summary collapse
-
#email ⇒ String?
readonly
The email address of the contact.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(email: nil) ⇒ CustomerContactProperty
constructor
A new instance of CustomerContactProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(email: nil) ⇒ CustomerContactProperty
Returns a new instance of CustomerContactProperty.
812 813 814 815 |
# File 'odb/cfn_cloud_exadata_infrastructure.rb', line 812 def initialize(email: nil) @email = email Jsii::Type.check_type(@email, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "email") unless @email.nil? end |
Instance Attribute Details
#email ⇒ String? (readonly)
The email address of the contact.
821 822 823 |
# File 'odb/cfn_cloud_exadata_infrastructure.rb', line 821 def email @email end |
Class Method Details
.jsii_properties ⇒ Object
823 824 825 826 827 |
# File 'odb/cfn_cloud_exadata_infrastructure.rb', line 823 def self.jsii_properties { :email => "email", } end |
Instance Method Details
#to_jsii ⇒ Object
829 830 831 832 833 834 835 |
# File 'odb/cfn_cloud_exadata_infrastructure.rb', line 829 def to_jsii result = {} result.merge!({ "email" => @email, }) result.compact end |