Class: AWSCDK::AppMesh::SubjectAlternativeNamesMatcherConfig
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::AppMesh::SubjectAlternativeNamesMatcherConfig
- Defined in:
- app_mesh/subject_alternative_names_matcher_config.rb
Overview
All Properties for Subject Alternative Names Matcher for both Client Policy and Listener.
Instance Attribute Summary collapse
-
#subject_alternative_names_match ⇒ AWSCDK::AppMesh::CfnVirtualNode::SubjectAlternativeNameMatchersProperty
readonly
VirtualNode CFN configuration for subject alternative names secured by the certificate.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(subject_alternative_names_match:) ⇒ SubjectAlternativeNamesMatcherConfig
constructor
A new instance of SubjectAlternativeNamesMatcherConfig.
- #to_jsii ⇒ Object
Constructor Details
#initialize(subject_alternative_names_match:) ⇒ SubjectAlternativeNamesMatcherConfig
Returns a new instance of SubjectAlternativeNamesMatcherConfig.
8 9 10 11 |
# File 'app_mesh/subject_alternative_names_matcher_config.rb', line 8 def initialize(subject_alternative_names_match:) @subject_alternative_names_match = subject_alternative_names_match.is_a?(Hash) ? ::AWSCDK::AppMesh::CfnVirtualNode::SubjectAlternativeNameMatchersProperty.new(**subject_alternative_names_match.transform_keys(&:to_sym)) : subject_alternative_names_match Jsii::Type.check_type(@subject_alternative_names_match, JSON.parse(Base64.strict_decode64("eyJmcW4iOiJhd3MtY2RrLWxpYi5hd3NfYXBwbWVzaC5DZm5WaXJ0dWFsTm9kZS5TdWJqZWN0QWx0ZXJuYXRpdmVOYW1lTWF0Y2hlcnNQcm9wZXJ0eSJ9")), "subjectAlternativeNamesMatch") end |
Instance Attribute Details
#subject_alternative_names_match ⇒ AWSCDK::AppMesh::CfnVirtualNode::SubjectAlternativeNameMatchersProperty (readonly)
VirtualNode CFN configuration for subject alternative names secured by the certificate.
16 17 18 |
# File 'app_mesh/subject_alternative_names_matcher_config.rb', line 16 def subject_alternative_names_match @subject_alternative_names_match end |
Class Method Details
.jsii_properties ⇒ Object
18 19 20 21 22 |
# File 'app_mesh/subject_alternative_names_matcher_config.rb', line 18 def self.jsii_properties { :subject_alternative_names_match => "subjectAlternativeNamesMatch", } end |
Instance Method Details
#to_jsii ⇒ Object
24 25 26 27 28 29 30 |
# File 'app_mesh/subject_alternative_names_matcher_config.rb', line 24 def to_jsii result = {} result.merge!({ "subjectAlternativeNamesMatch" => @subject_alternative_names_match, }) result.compact end |