MDAA TS Docs
    Preparing search index...

    SAML authentication configuration for OpenSearch Dashboard SSO integration. Requires the IdP entity ID and metadata XML content for SAML 2.0 setup.

    interface SamlAuthenticationConfig {
        idpEntityId: string;
        idpMetadataXml: string;
    }
    Index

    Properties

    idpEntityId: string

    The unique entity ID of the SAML identity provider

    idpMetadataXml: string

    The SAML metadata XML content from the identity provider.

    REQUIRED: For security reasons, provide the metadata XML content directly.

    To fetch metadata from a URL, use a secure method outside of CDK synth:

    curl -s "https://your-idp.com/metadata" > saml-metadata.xml
    

    Then reference it in your configuration.