Class: AWSCDK::AppMesh::CfnVirtualGateway::SubjectAlternativeNameMatchersProperty

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

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.



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

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



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_jsiiObject



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