Class: AWSCDK::AppMesh::CfnVirtualGateway::SubjectAlternativeNamesProperty

Inherits:
Jsii::Struct
  • Object
show all
Defined in:
app_mesh/cfn_virtual_gateway.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:



743
744
745
746
# File 'app_mesh/cfn_virtual_gateway.rb', line 743

def initialize(match:)
  @match = match.is_a?(Hash) ? ::AWSCDK::AppMesh::CfnVirtualGateway::SubjectAlternativeNameMatchersProperty.new(**match.transform_keys(&:to_sym)) : match
  Jsii::Type.check_type(@match, JSON.parse(Base64.strict_decode64("eyJ1bmlvbiI6eyJ0eXBlcyI6W3siZnFuIjoiYXdzLWNkay1saWIuSVJlc29sdmFibGUifSx7ImZxbiI6ImF3cy1jZGstbGliLmF3c19hcHBtZXNoLkNmblZpcnR1YWxHYXRld2F5LlN1YmplY3RBbHRlcm5hdGl2ZU5hbWVNYXRjaGVyc1Byb3BlcnR5In1dfX0=")), "match")
end

Class Method Details

.jsii_propertiesObject



754
755
756
757
758
# File 'app_mesh/cfn_virtual_gateway.rb', line 754

def self.jsii_properties
  {
    :match => "match",
  }
end

Instance Method Details

#to_jsiiObject



760
761
762
763
764
765
766
# File 'app_mesh/cfn_virtual_gateway.rb', line 760

def to_jsii
  result = {}
  result.merge!({
    "match" => @match,
  })
  result.compact
end