Interface CfnDirectoryConfig.CertificateBasedAuthPropertiesProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnDirectoryConfig.CertificateBasedAuthPropertiesProperty.Jsii$Proxy
Enclosing class:
CfnDirectoryConfig

@Stability(Stable) public static interface CfnDirectoryConfig.CertificateBasedAuthPropertiesProperty extends software.amazon.jsii.JsiiSerializable
The certificate-based authentication properties used to authenticate SAML 2.0 Identity Provider (IdP) user identities to Active Directory domain-joined streaming instances.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.appstream.*;
 CertificateBasedAuthPropertiesProperty certificateBasedAuthPropertiesProperty = CertificateBasedAuthPropertiesProperty.builder()
         .certificateAuthorityArn("certificateAuthorityArn")
         .status("status")
         .build();
 
  • Method Details