Class: AWSCDK::AppMesh::CfnVirtualNode::SubjectAlternativeNamesProperty

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(match:) ⇒ SubjectAlternativeNamesProperty

Returns a new instance of SubjectAlternativeNamesProperty.

Parameters:



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

Class Method Details

.jsii_propertiesObject



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_jsiiObject



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