Class CfnCluster.TlsProperty
Details for client authentication using TLS.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.MSK
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnCluster.TlsProperty : CfnCluster.ITlsProperty
Syntax (vb)
Public Class CfnCluster.TlsProperty Implements CfnCluster.ITlsProperty
Remarks
See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-tls.html
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.MSK;
var tlsProperty = new TlsProperty {
CertificateAuthorityArnList = new [] { "certificateAuthorityArnList" },
Enabled = false
};
Synopsis
Constructors
| TlsProperty() | Details for client authentication using TLS. |
Properties
| CertificateAuthorityArnList | List of AWS Private CA ARNs. |
| Enabled | TLS authentication is enabled or not. |
Constructors
TlsProperty()
Details for client authentication using TLS.
public TlsProperty()
Remarks
See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-tls.html
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.MSK;
var tlsProperty = new TlsProperty {
CertificateAuthorityArnList = new [] { "certificateAuthorityArnList" },
Enabled = false
};
Properties
CertificateAuthorityArnList
List of AWS Private CA ARNs.
public string[]? CertificateAuthorityArnList { get; set; }
Property Value
string[]
Remarks
Enabled
TLS authentication is enabled or not.
public object? Enabled { get; set; }