Show / Hide Table of Contents

Class CfnVirtualNode.SubjectAlternativeNamesProperty

An object that represents the subject alternative names secured by the certificate.

Inheritance
object
CfnVirtualNode.SubjectAlternativeNamesProperty
Implements
CfnVirtualNode.ISubjectAlternativeNamesProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualnode-subjectalternativenames.html

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualnode-subjectalternativenames.html

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; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualnode-subjectalternativenames.html#cfn-appmesh-virtualnode-subjectalternativenames-match

Type union: either IResolvable or CfnVirtualNode.ISubjectAlternativeNameMatchersProperty

Implements

CfnVirtualNode.ISubjectAlternativeNamesProperty
Back to top Generated by DocFX