Class CfnVirtualNode.SubjectAlternativeNamesProperty
An object that represents the subject alternative names secured by the certificate.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.AppMesh
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnVirtualNode.SubjectAlternativeNamesProperty : CfnVirtualNode.ISubjectAlternativeNamesProperty
Syntax (vb)
Public Class CfnVirtualNode.SubjectAlternativeNamesProperty Implements CfnVirtualNode.ISubjectAlternativeNamesProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.AppMesh;
var subjectAlternativeNamesProperty = new SubjectAlternativeNamesProperty {
Match = new SubjectAlternativeNameMatchersProperty {
Exact = new [] { "exact" }
}
};
Synopsis
Constructors
| SubjectAlternativeNamesProperty() | An object that represents the subject alternative names secured by the certificate. |
Properties
| Match | An object that represents the criteria for determining a SANs match. |
Constructors
SubjectAlternativeNamesProperty()
An object that represents the subject alternative names secured by the certificate.
public SubjectAlternativeNamesProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.AppMesh;
var subjectAlternativeNamesProperty = new SubjectAlternativeNamesProperty {
Match = new SubjectAlternativeNameMatchersProperty {
Exact = new [] { "exact" }
}
};
Properties
Match
An object that represents the criteria for determining a SANs match.
public object Match { get; set; }