Module Values.IdentityCenterConfigSource

A structure that describes the values to use for the IAM Identity Center settings when you create or update a web app.

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

    The Amazon Resource Name (ARN) for the IAM Identity Center used for the web app.

    *)
  2. role : Role.t option;
    (*

    The IAM role in IAM Identity Center used for the web app.

    *)
}
Sourceval make : ?instanceArn:??? -> ?role:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `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