Class: AWSCDK::SES::CfnMailManagerIngressPoint::TLSAuthConfigurationProperty

Inherits:
Jsii::Struct
  • Object
show all
Defined in:
ses/cfn_mail_manager_ingress_point.rb

Overview

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

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

Class Method Details

.jsii_propertiesObject



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_jsiiObject



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