Class: AWSCDK::SES::CfnEmailIdentity::DkimAttributesProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::SES::CfnEmailIdentity::DkimAttributesProperty
- Defined in:
- ses/cfn_email_identity.rb
Overview
Used to enable or disable DKIM authentication for an email identity.
Instance Attribute Summary collapse
-
#signing_enabled ⇒ Boolean, ...
readonly
Sets the DKIM signing configuration for the identity.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(signing_enabled: nil) ⇒ DkimAttributesProperty
constructor
A new instance of DkimAttributesProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(signing_enabled: nil) ⇒ DkimAttributesProperty
Returns a new instance of DkimAttributesProperty.
674 675 676 677 |
# File 'ses/cfn_email_identity.rb', line 674 def initialize(signing_enabled: nil) @signing_enabled = signing_enabled Jsii::Type.check_type(@signing_enabled, JSON.parse(Base64.strict_decode64("eyJ1bmlvbiI6eyJ0eXBlcyI6W3sicHJpbWl0aXZlIjoiYm9vbGVhbiJ9LHsiZnFuIjoiYXdzLWNkay1saWIuSVJlc29sdmFibGUifV19fQ==")), "signingEnabled") unless @signing_enabled.nil? end |
Instance Attribute Details
#signing_enabled ⇒ Boolean, ... (readonly)
Sets the DKIM signing configuration for the identity.
When you set this value true , then the messages that are sent from the identity are signed using DKIM. If you set this value to false , your messages are sent without DKIM signing.
685 686 687 |
# File 'ses/cfn_email_identity.rb', line 685 def signing_enabled @signing_enabled end |
Class Method Details
.jsii_properties ⇒ Object
687 688 689 690 691 |
# File 'ses/cfn_email_identity.rb', line 687 def self.jsii_properties { :signing_enabled => "signingEnabled", } end |
Instance Method Details
#to_jsii ⇒ Object
693 694 695 696 697 698 699 |
# File 'ses/cfn_email_identity.rb', line 693 def to_jsii result = {} result.merge!({ "signingEnabled" => @signing_enabled, }) result.compact end |