Module Values.IdentityCenterConfigurationSource

The IAM Identity Center Configuration accepts the Identity Center instance parameter required to enable trusted identity propagation. This configuration allows identity propagation between integrated services and the Identity Center instance.

Sourcetype nonrec t = {
  1. identityCenterInstanceArn : IdentityCenterInstanceArn.t option;
    (*

    The ARN of the IAM Identity Center instance.

    *)
  2. identityCenterApplicationArn : IdentityCenterApplicationArn.t option;
    (*

    The ARN of the EMR Serverless created IAM Identity Center Application that provides trusted-identity propagation.

    *)
  3. userBackgroundSessionsEnabled : Boolean.t option;
    (*

    Enables user background sessions for this application so Livy sessions can continue running after users log out of their interactive notebook or their Identity Center sessions expire.

    *)
}
Sourceval make : ?identityCenterInstanceArn:??? -> ?identityCenterApplicationArn:??? -> ?userBackgroundSessionsEnabled:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `String of IdentityCenterInstanceArn.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