Interface CfnVirtualNode.SubjectAlternativeNamesProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnVirtualNode.SubjectAlternativeNamesProperty.Jsii$Proxy
Enclosing class:
CfnVirtualNode

@Stability(Stable) public static interface CfnVirtualNode.SubjectAlternativeNamesProperty extends software.amazon.jsii.JsiiSerializable
An object that represents the subject alternative names secured by the certificate.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.appmesh.*;
 SubjectAlternativeNamesProperty subjectAlternativeNamesProperty = SubjectAlternativeNamesProperty.builder()
         .match(SubjectAlternativeNameMatchersProperty.builder()
                 .exact(List.of("exact"))
                 .build())
         .build();
 

See Also: