aws-cdk-lib.aws_appmesh.CfnVirtualNode.ClientPolicyProperty

interface ClientPolicyProperty

LanguageType name
.NETAmazon.CDK.AWS.AppMesh.CfnVirtualNode.ClientPolicyProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsappmesh#CfnVirtualNode_ClientPolicyProperty
Javasoftware.amazon.awscdk.services.appmesh.CfnVirtualNode.ClientPolicyProperty
Pythonaws_cdk.aws_appmesh.CfnVirtualNode.ClientPolicyProperty
TypeScript aws-cdk-lib » aws_appmesh » CfnVirtualNode » ClientPolicyProperty

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 { aws_appmesh as appmesh } from 'aws-cdk-lib';
const clientPolicyProperty: appmesh.CfnVirtualNode.ClientPolicyProperty = {
  tls: {
    validation: {
      trust: {
        acm: {
          certificateAuthorityArns: ['certificateAuthorityArns'],
        },
        file: {
          certificateChain: 'certificateChain',
        },
        sds: {
          secretName: 'secretName',
        },
      },

      // the properties below are optional
      subjectAlternativeNames: {
        match: {
          exact: ['exact'],
        },
      },
    },

    // the properties below are optional
    certificate: {
      file: {
        certificateChain: 'certificateChain',
        privateKey: 'privateKey',
      },
      sds: {
        secretName: 'secretName',
      },
    },
    enforce: false,
    ports: [123],
  },
};

Properties

NameTypeDescription
tls?IResolvable | ClientPolicyTlsPropertyA reference to an object that represents a Transport Layer Security (TLS) client policy.

tls?

Type: IResolvable | ClientPolicyTlsProperty (optional)

A reference to an object that represents a Transport Layer Security (TLS) client policy.