package awsappmesh // An object that represents a client policy. // // 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" // // virtualGatewayClientPolicyProperty := &VirtualGatewayClientPolicyProperty{ // Tls: &VirtualGatewayClientPolicyTlsProperty{ // Validation: &VirtualGatewayTlsValidationContextProperty{ // Trust: &VirtualGatewayTlsValidationContextTrustProperty{ // Acm: &VirtualGatewayTlsValidationContextAcmTrustProperty{ // CertificateAuthorityArns: []*string{ // jsii.String("certificateAuthorityArns"), // }, // }, // File: &VirtualGatewayTlsValidationContextFileTrustProperty{ // CertificateChain: jsii.String("certificateChain"), // }, // Sds: &VirtualGatewayTlsValidationContextSdsTrustProperty{ // SecretName: jsii.String("secretName"), // }, // }, // // // the properties below are optional // SubjectAlternativeNames: &SubjectAlternativeNamesProperty{ // Match: &SubjectAlternativeNameMatchersProperty{ // Exact: []*string{ // jsii.String("exact"), // }, // }, // }, // }, // // // the properties below are optional // Certificate: &VirtualGatewayClientTlsCertificateProperty{ // File: &VirtualGatewayListenerTlsFileCertificateProperty{ // CertificateChain: jsii.String("certificateChain"), // PrivateKey: jsii.String("privateKey"), // }, // Sds: &VirtualGatewayListenerTlsSdsCertificateProperty{ // SecretName: jsii.String("secretName"), // }, // }, // Enforce: jsii.Boolean(false), // Ports: []interface{}{ // jsii.Number(123), // }, // }, // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualgateway-virtualgatewayclientpolicy.html // type CfnVirtualGateway_VirtualGatewayClientPolicyProperty struct { // A reference to an object that represents a Transport Layer Security (TLS) client policy. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appmesh-virtualgateway-virtualgatewayclientpolicy.html#cfn-appmesh-virtualgateway-virtualgatewayclientpolicy-tls // Tls interface{} `field:"optional" json:"tls" yaml:"tls"` }