Show / Hide Table of Contents

Class CfnCluster.TlsProperty

Details for client authentication using TLS.

Inheritance
object
CfnCluster.TlsProperty
Implements
CfnCluster.ITlsProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-tls.html#cfn-msk-cluster-tls-certificateauthorityarnlist

Enabled

TLS authentication is enabled or not.

public object? Enabled { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-tls.html#cfn-msk-cluster-tls-enabled

Type union: either bool or IResolvable

Implements

CfnCluster.ITlsProperty
Back to top Generated by DocFX