Module Values.IdpAuthConfigurationSource

Configuration for external Identity Provider OIDC authentication flow for the Operator App.

Sourcetype nonrec t = {
  1. issuerUrl : String_.t option;
    (*

    The OIDC issuer URL of the external Identity Provider

    *)
  2. clientId : String_.t option;
    (*

    The OIDC client ID for the IdP application

    *)
  3. operatorAppRoleArn : String_.t option;
    (*

    The IAM role end users assume to access AIDevOps APIs

    *)
  4. provider : String_.t option;
    (*

    The Identity Provider name (e.g., Entra, Okta, Google)

    *)
  5. createdAt : SyntheticTimestamp_date_time.t option;
    (*

    The timestamp when the Operator App IdP auth flow was enabled.

    *)
  6. updatedAt : SyntheticTimestamp_date_time.t option;
    (*

    The timestamp when the Operator App IdP auth flow was updated.

    *)
}
Sourceval make : ?issuerUrl:??? -> ?clientId:??? -> ?operatorAppRoleArn:??? -> ?provider:??? -> ?createdAt:??? -> ?updatedAt:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String_.t | `Timestamp of SyntheticTimestamp_date_time.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t