Class: AWSCDK::SES::CfnMailManagerIngressPoint::TLSAuthConfigurationProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::SES::CfnMailManagerIngressPoint::TLSAuthConfigurationProperty
- Defined in:
- ses/cfn_mail_manager_ingress_point.rb
Overview
Instance Attribute Summary collapse
- #trust_store ⇒ AWSCDK::IResolvable, AWSCDK::SES::CfnMailManagerIngressPoint::TrustStoreProperty readonly
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(trust_store:) ⇒ TLSAuthConfigurationProperty
constructor
A new instance of TLSAuthConfigurationProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(trust_store:) ⇒ TLSAuthConfigurationProperty
Returns a new instance of TLSAuthConfigurationProperty.
837 838 839 840 |
# File 'ses/cfn_mail_manager_ingress_point.rb', line 837 def initialize(trust_store:) @trust_store = trust_store.is_a?(Hash) ? ::AWSCDK::SES::CfnMailManagerIngressPoint::TrustStoreProperty.new(**trust_store.transform_keys(&:to_sym)) : trust_store Jsii::Type.check_type(@trust_store, JSON.parse(Base64.strict_decode64("eyJ1bmlvbiI6eyJ0eXBlcyI6W3siZnFuIjoiYXdzLWNkay1saWIuSVJlc29sdmFibGUifSx7ImZxbiI6ImF3cy1jZGstbGliLmF3c19zZXMuQ2ZuTWFpbE1hbmFnZXJJbmdyZXNzUG9pbnQuVHJ1c3RTdG9yZVByb3BlcnR5In1dfX0=")), "trustStore") end |
Instance Attribute Details
#trust_store ⇒ AWSCDK::IResolvable, AWSCDK::SES::CfnMailManagerIngressPoint::TrustStoreProperty (readonly)
844 845 846 |
# File 'ses/cfn_mail_manager_ingress_point.rb', line 844 def trust_store @trust_store end |
Class Method Details
.jsii_properties ⇒ Object
846 847 848 849 850 |
# File 'ses/cfn_mail_manager_ingress_point.rb', line 846 def self.jsii_properties { :trust_store => "trustStore", } end |
Instance Method Details
#to_jsii ⇒ Object
852 853 854 855 856 857 858 |
# File 'ses/cfn_mail_manager_ingress_point.rb', line 852 def to_jsii result = {} result.merge!({ "trustStore" => @trust_store, }) result.compact end |