MDAA TS Docs
    Preparing search index...

    SAML identity federation configuration for IAM identity provider setup. Specify either an existing provider ARN or a SAML metadata document path to create a new one.

    Use cases: SAML federation with external IdPs; SSO integration; Enterprise authentication

    AWS: IAM SAML identity provider for federated authentication

    Validation: Exactly one of providerArn or samlDoc must be specified

    interface FederationProps {
        providerArn?: string;
        samlDoc?: string;
    }
    Index

    Properties

    providerArn?: string

    ARN of an existing IAM SAML identity provider. Mutually exclusive with samlDoc.

    Use cases: Reusing pre-configured SAML federation

    AWS: IAM SAML provider ARN reference

    Validation: Optional; must be valid IAM SAML provider ARN; mutually exclusive with samlDoc

    samlDoc?: string

    File path to a SAML metadata XML document for creating a new IAM SAML provider. Relative paths should be prefixed with "./". Mutually exclusive with providerArn.

    Use cases: New SAML federation setup; Custom IdP integration

    AWS: IAM SAML provider creation from metadata document

    Validation: Optional; must be valid file path to SAML metadata XML; mutually exclusive with providerArn