interface ClientPolicyTlsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.AppMesh.CfnVirtualNodePropsMixin.ClientPolicyTlsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsappmesh#CfnVirtualNodePropsMixin_ClientPolicyTlsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.appmesh.CfnVirtualNodePropsMixin.ClientPolicyTlsProperty |
Python | aws_cdk.cfn_property_mixins.aws_appmesh.CfnVirtualNodePropsMixin.ClientPolicyTlsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_appmesh » CfnVirtualNodePropsMixin » ClientPolicyTlsProperty |
A reference to an object that represents a Transport Layer Security (TLS) 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/cfn-property-mixins';
const clientPolicyTlsProperty: appmesh.CfnVirtualNodePropsMixin.ClientPolicyTlsProperty = {
certificate: {
file: {
certificateChain: 'certificateChain',
privateKey: 'privateKey',
},
sds: {
secretName: 'secretName',
},
},
enforce: false,
ports: [123],
validation: {
subjectAlternativeNames: {
match: {
exact: ['exact'],
},
},
trust: {
acm: {
certificateAuthorityArns: ['certificateAuthorityArns'],
},
file: {
certificateChain: 'certificateChain',
},
sds: {
secretName: 'secretName',
},
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| certificate? | IResolvable | Client | A reference to an object that represents a client's TLS certificate. |
| enforce? | boolean | IResolvable | Whether the policy is enforced. |
| ports? | number[] | IResolvable | One or more ports that the policy is enforced for. |
| validation? | IResolvable | Tls | A reference to an object that represents a TLS validation context. |
certificate?
Type:
IResolvable | Client
(optional)
A reference to an object that represents a client's TLS certificate.
enforce?
Type:
boolean | IResolvable
(optional)
Whether the policy is enforced.
The default is True , if a value isn't specified.
ports?
Type:
number[] | IResolvable
(optional)
One or more ports that the policy is enforced for.
validation?
Type:
IResolvable | Tls
(optional)
A reference to an object that represents a TLS validation context.

.NET
Go
Java
Python
TypeScript