Module Values.IamIdentityCenterOptionsInputSource

Configuration settings for enabling and managing IAM Identity Center.

Sourcetype nonrec t = {
  1. enabled : Boolean.t option;
    (*

    Specifies whether IAM Identity Center is enabled or disabled.

    *)
  2. iamIdentityCenterInstanceArn : ARN.t option;
  3. iamRoleForIdentityCenterApplicationArn : RoleArn.t option;
    (*

    The ARN of the IAM role associated with the IAM Identity Center application.

    *)
}
Sourceval make : ?enabled:??? -> ?iamIdentityCenterInstanceArn:??? -> ?iamRoleForIdentityCenterApplicationArn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `String of ARN.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