interface TlsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.MSK.CfnClusterPropsMixin.TlsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsmsk#CfnClusterPropsMixin_TlsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.msk.CfnClusterPropsMixin.TlsProperty |
Python | aws_cdk.cfn_property_mixins.aws_msk.CfnClusterPropsMixin.TlsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_msk » CfnClusterPropsMixin » TlsProperty |
Details for client authentication using TLS.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-tls.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_msk as msk } from '@aws-cdk/cfn-property-mixins';
const tlsProperty: msk.CfnClusterPropsMixin.TlsProperty = {
certificateAuthorityArnList: ['certificateAuthorityArnList'],
enabled: false,
};
Properties
| Name | Type | Description |
|---|---|---|
| certificate | (string | ICertificate)[] | List of AWS Private CA ARNs. |
| enabled? | boolean | IResolvable | TLS authentication is enabled or not. |
certificateAuthorityArnList?
Type:
(string | ICertificate)[]
(optional)
List of AWS Private CA ARNs.
enabled?
Type:
boolean | IResolvable
(optional)
TLS authentication is enabled or not.

.NET
Go
Java
Python
TypeScript