Class CfnServerlessCluster.SaslProperty
Details for client authentication using SASL.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.MSK
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnServerlessCluster.SaslProperty : CfnServerlessCluster.ISaslProperty
Syntax (vb)
Public Class CfnServerlessCluster.SaslProperty Implements CfnServerlessCluster.ISaslProperty
Remarks
To turn on SASL, you must also turn on EncryptionInTransit
by setting inCluster
to true. You must set clientBroker
to either TLS
or TLS_PLAINTEXT
. If you choose TLS_PLAINTEXT
, then you must also set unauthenticated
to true.
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 saslProperty = new SaslProperty {
Iam = new IamProperty {
Enabled = false
}
};
Synopsis
Constructors
SaslProperty() | Details for client authentication using SASL. |
Properties
Iam | Details for ClientAuthentication using IAM. |
Constructors
SaslProperty()
Details for client authentication using SASL.
public SaslProperty()
Remarks
To turn on SASL, you must also turn on EncryptionInTransit
by setting inCluster
to true. You must set clientBroker
to either TLS
or TLS_PLAINTEXT
. If you choose TLS_PLAINTEXT
, then you must also set unauthenticated
to true.
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 saslProperty = new SaslProperty {
Iam = new IamProperty {
Enabled = false
}
};
Properties
Iam
Details for ClientAuthentication using IAM.
public object Iam { get; set; }