Module Values.DescribedIdentityCenterConfigSource

A structure that contains the details of the IAM Identity Center used for your web app. Returned during a call to DescribeWebApp.

Sourcetype nonrec t = {
  1. applicationArn : IdentityCenterApplicationArn.t option;
    (*

    The Amazon Resource Name (ARN) for the IAM Identity Center application: this value is set automatically when you create your web app.

    *)
  2. instanceArn : IdentityCenterInstanceArn.t option;
    (*

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

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

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

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