Class: AWSCDK::AppMesh::CfnVirtualNode::SubjectAlternativeNamesProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::AppMesh::CfnVirtualNode::SubjectAlternativeNamesProperty
- Defined in:
- app_mesh/cfn_virtual_node.rb
Overview
An object that represents the subject alternative names secured by the certificate.
Instance Attribute Summary collapse
-
#match ⇒ AWSCDK::IResolvable, AWSCDK::AppMesh::CfnVirtualNode::SubjectAlternativeNameMatchersProperty
readonly
An object that represents the criteria for determining a SANs match.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(match:) ⇒ SubjectAlternativeNamesProperty
constructor
A new instance of SubjectAlternativeNamesProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(match:) ⇒ SubjectAlternativeNamesProperty
Returns a new instance of SubjectAlternativeNamesProperty.
2092 2093 2094 2095 |
# File 'app_mesh/cfn_virtual_node.rb', line 2092 def initialize(match:) @match = match.is_a?(Hash) ? ::AWSCDK::AppMesh::CfnVirtualNode::SubjectAlternativeNameMatchersProperty.new(**match.transform_keys(&:to_sym)) : match Jsii::Type.check_type(@match, JSON.parse(Base64.strict_decode64("eyJ1bmlvbiI6eyJ0eXBlcyI6W3siZnFuIjoiYXdzLWNkay1saWIuSVJlc29sdmFibGUifSx7ImZxbiI6ImF3cy1jZGstbGliLmF3c19hcHBtZXNoLkNmblZpcnR1YWxOb2RlLlN1YmplY3RBbHRlcm5hdGl2ZU5hbWVNYXRjaGVyc1Byb3BlcnR5In1dfX0=")), "match") end |
Instance Attribute Details
#match ⇒ AWSCDK::IResolvable, AWSCDK::AppMesh::CfnVirtualNode::SubjectAlternativeNameMatchersProperty (readonly)
An object that represents the criteria for determining a SANs match.
2101 2102 2103 |
# File 'app_mesh/cfn_virtual_node.rb', line 2101 def match @match end |
Class Method Details
.jsii_properties ⇒ Object
2103 2104 2105 2106 2107 |
# File 'app_mesh/cfn_virtual_node.rb', line 2103 def self.jsii_properties { :match => "match", } end |
Instance Method Details
#to_jsii ⇒ Object
2109 2110 2111 2112 2113 2114 2115 |
# File 'app_mesh/cfn_virtual_node.rb', line 2109 def to_jsii result = {} result.merge!({ "match" => @match, }) result.compact end |