Class: AWSCDK::AppMesh::CfnVirtualNode::SubjectAlternativeNameMatchersProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::AppMesh::CfnVirtualNode::SubjectAlternativeNameMatchersProperty
- Defined in:
- app_mesh/cfn_virtual_node.rb
Overview
An object that represents the methods by which a subject alternative name on a peer Transport Layer Security (TLS) certificate can be matched.
Instance Attribute Summary collapse
-
#exact ⇒ Array<String>?
readonly
The values sent must match the specified values exactly.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(exact: nil) ⇒ SubjectAlternativeNameMatchersProperty
constructor
A new instance of SubjectAlternativeNameMatchersProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(exact: nil) ⇒ SubjectAlternativeNameMatchersProperty
Returns a new instance of SubjectAlternativeNameMatchersProperty.
2059 2060 2061 2062 |
# File 'app_mesh/cfn_virtual_node.rb', line 2059 def initialize(exact: nil) @exact = exact Jsii::Type.check_type(@exact, JSON.parse(Base64.strict_decode64("eyJjb2xsZWN0aW9uIjp7ImVsZW1lbnR0eXBlIjp7InByaW1pdGl2ZSI6InN0cmluZyJ9LCJraW5kIjoiYXJyYXkifX0=")), "exact") unless @exact.nil? end |
Instance Attribute Details
#exact ⇒ Array<String>? (readonly)
The values sent must match the specified values exactly.
2068 2069 2070 |
# File 'app_mesh/cfn_virtual_node.rb', line 2068 def exact @exact end |
Class Method Details
.jsii_properties ⇒ Object
2070 2071 2072 2073 2074 |
# File 'app_mesh/cfn_virtual_node.rb', line 2070 def self.jsii_properties { :exact => "exact", } end |
Instance Method Details
#to_jsii ⇒ Object
2076 2077 2078 2079 2080 2081 2082 |
# File 'app_mesh/cfn_virtual_node.rb', line 2076 def to_jsii result = {} result.merge!({ "exact" => @exact, }) result.compact end |