interface TlsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MSK.Mixins.CfnClusterPropsMixin.TlsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmsk/mixins#CfnClusterPropsMixin_TlsProperty |
Java | software.amazon.awscdk.mixins.preview.services.msk.mixins.CfnClusterPropsMixin.TlsProperty |
Python | aws_cdk.mixins_preview.aws_msk.mixins.CfnClusterPropsMixin.TlsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_msk » mixins » 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 { mixins as msk_mixins } from '@aws-cdk/mixins-preview/aws-msk';
const tlsProperty: msk_mixins.CfnClusterPropsMixin.TlsProperty = {
certificateAuthorityArnList: ['certificateAuthorityArnList'],
enabled: false,
};
Properties
| Name | Type | Description |
|---|---|---|
| certificate | string[] | List of AWS Private CA ARNs. |
| enabled? | boolean | IResolvable | TLS authentication is enabled or not. |
certificateAuthorityArnList?
Type:
string[]
(optional)
List of AWS Private CA ARNs.
enabled?
Type:
boolean | IResolvable
(optional)
TLS authentication is enabled or not.

.NET
Go
Java
Python
TypeScript