package awsappmesh // An object that represents the Transport Layer Security (TLS) properties for a listener. // // Example: // // The code below shows an example of how to instantiate this type. // // The values are placeholders you should change. // import "github.com/aws/aws-cdk-go/awscdk" // // listenerTlsProperty := &ListenerTlsProperty{ // Certificate: &ListenerTlsCertificateProperty{ // Acm: &ListenerTlsAcmCertificateProperty{ // CertificateArn: jsii.String("certificateArn"), // }, // File: &ListenerTlsFileCertificateProperty{ // CertificateChain: jsii.String("certificateChain"), // PrivateKey: jsii.String("privateKey"), // }, // Sds: &ListenerTlsSdsCertificateProperty{ // SecretName: jsii.String("secretName"), // }, // }, // Mode: jsii.String("mode"), // // // the properties below are optional // Validation: &ListenerTlsValidationContextProperty{ // Trust: &ListenerTlsValidationContextTrustProperty{ // File: &TlsValidationContextFileTrustProperty{ // CertificateChain: jsii.String("certificateChain"), // }, // Sds: &TlsValidationContextSdsTrustProperty{ // SecretName: jsii.String("secretName"), // }, // }, // // // the properties below are optional // SubjectAlternativeNames: &SubjectAlternativeNamesProperty{ // Match: &SubjectAlternativeNameMatchersProperty{ // Exact: []*string{ // jsii.String("exact"), // }, // }, // }, // }, // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualnode-listenertls.html // type CfnVirtualNode_ListenerTlsProperty struct { // A reference to an object that represents a listener's Transport Layer Security (TLS) certificate. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualnode-listenertls.html#cfn-appmesh-virtualnode-listenertls-certificate // Certificate interface{} `field:"required" json:"certificate" yaml:"certificate"` // Specify one of the following modes. // // - ** STRICT – Listener only accepts connections with TLS enabled. // - ** PERMISSIVE – Listener accepts connections with or without TLS enabled. // - ** DISABLED – Listener only accepts connections without TLS. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualnode-listenertls.html#cfn-appmesh-virtualnode-listenertls-mode // Mode *string `field:"required" json:"mode" yaml:"mode"` // A reference to an object that represents a listener's Transport Layer Security (TLS) validation context. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualnode-listenertls.html#cfn-appmesh-virtualnode-listenertls-validation // Validation interface{} `field:"optional" json:"validation" yaml:"validation"` }