SubjectAlternativeNamesMatcherConfig

class aws_cdk.aws_appmesh.SubjectAlternativeNamesMatcherConfig(*, subject_alternative_names_match)

Bases: object

All Properties for Subject Alternative Names Matcher for both Client Policy and Listener.

Parameters:

subject_alternative_names_match (Union[SubjectAlternativeNameMatchersProperty, Dict[str, Any]]) – VirtualNode CFN configuration for subject alternative names secured by the certificate.

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import aws_appmesh as appmesh

subject_alternative_names_matcher_config = appmesh.SubjectAlternativeNamesMatcherConfig(
    subject_alternative_names_match=appmesh.CfnVirtualNode.SubjectAlternativeNameMatchersProperty(
        exact=["exact"]
    )
)

Attributes

subject_alternative_names_match

VirtualNode CFN configuration for subject alternative names secured by the certificate.