Interface SaslAuthProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
SaslAuthProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:42.731Z") @Stability(Experimental) public interface SaslAuthProps extends software.amazon.jsii.JsiiSerializable
(experimental) SASL authentication properties.

Example:

 Vpc vpc;
 Cluster cluster = Cluster.Builder.create(this, "cluster")
         .clusterName("myCluster")
         .kafkaVersion(KafkaVersion.V2_8_1)
         .vpc(vpc)
         .encryptionInTransit(EncryptionInTransitConfig.builder()
                 .clientBroker(ClientBrokerEncryption.TLS)
                 .build())
         .clientAuthentication(ClientAuthentication.sasl(SaslAuthProps.builder()
                 .scram(true)
                 .build()))
         .build();
 
  • Nested Class Summary

    Nested Classes
    Modifier and Type
    Interface
    Description
    static final class 
    A builder for SaslAuthProps
    static final class 
    An implementation for SaslAuthProps
  • Method Summary

    Modifier and Type
    Method
    Description
     
    default Boolean
    (experimental) Enable IAM access control.
    default IKey
    (experimental) KMS Key to encrypt SASL/SCRAM secrets.
    default Boolean
    (experimental) Enable SASL/SCRAM authentication.

    Methods inherited from interface software.amazon.jsii.JsiiSerializable

    $jsii$toJson
  • Method Details

    • getIam

      @Stability(Experimental) @Nullable default Boolean getIam()
      (experimental) Enable IAM access control.

      Default: false

    • getKey

      @Stability(Experimental) @Nullable default IKey getKey()
      (experimental) KMS Key to encrypt SASL/SCRAM secrets.

      You must use a customer master key (CMK) when creating users in secrets manager. You cannot use a Secret with Amazon MSK that uses the default Secrets Manager encryption key.

      Default: - CMK will be created with alias msk/{clusterName}/sasl/scram

    • getScram

      @Stability(Experimental) @Nullable default Boolean getScram()
      (experimental) Enable SASL/SCRAM authentication.

      Default: false

    • builder

      @Stability(Experimental) static SaslAuthProps.Builder builder()
      Returns:
      a SaslAuthProps.Builder of SaslAuthProps