Class: AWSCDK::AppMesh::CfnVirtualGateway::SubjectAlternativeNamesProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::AppMesh::CfnVirtualGateway::SubjectAlternativeNamesProperty
- 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
-
#match ⇒ AWSCDK::IResolvable, AWSCDK::AppMesh::CfnVirtualGateway::SubjectAlternativeNameMatchersProperty
readonly
An object that represents the criteria for determining a SANs match.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(match:) ⇒ SubjectAlternativeNamesProperty
constructor
A new instance of SubjectAlternativeNamesProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(match:) ⇒ SubjectAlternativeNamesProperty
Returns a new instance of SubjectAlternativeNamesProperty.
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 |
Instance Attribute Details
#match ⇒ AWSCDK::IResolvable, AWSCDK::AppMesh::CfnVirtualGateway::SubjectAlternativeNameMatchersProperty (readonly)
An object that represents the criteria for determining a SANs match.
752 753 754 |
# File 'app_mesh/cfn_virtual_gateway.rb', line 752 def match @match end |
Class Method Details
.jsii_properties ⇒ Object
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_jsii ⇒ Object
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 |