Class: AWSCDK::AppMesh::CfnVirtualNode::SubjectAlternativeNameMatchersProperty

Inherits:
Jsii::Struct
  • Object
show all
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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(exact: nil) ⇒ SubjectAlternativeNameMatchersProperty

Returns a new instance of SubjectAlternativeNameMatchersProperty.

Parameters:

  • exact (Array<String>, nil) (defaults to: nil)

    The values sent must match the specified values exactly.



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

#exactArray<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_propertiesObject



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_jsiiObject



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