Class: AWSCDK::AppMesh::CfnVirtualGateway::SubjectAlternativeNameMatchersProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::AppMesh::CfnVirtualGateway::SubjectAlternativeNameMatchersProperty
- Defined in:
- app_mesh/cfn_virtual_gateway.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.
710 711 712 713 |
# File 'app_mesh/cfn_virtual_gateway.rb', line 710 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.
719 720 721 |
# File 'app_mesh/cfn_virtual_gateway.rb', line 719 def exact @exact end |
Class Method Details
.jsii_properties ⇒ Object
721 722 723 724 725 |
# File 'app_mesh/cfn_virtual_gateway.rb', line 721 def self.jsii_properties { :exact => "exact", } end |
Instance Method Details
#to_jsii ⇒ Object
727 728 729 730 731 732 733 |
# File 'app_mesh/cfn_virtual_gateway.rb', line 727 def to_jsii result = {} result.merge!({ "exact" => @exact, }) result.compact end |