Module Values.InstanceMetadataSource

Provides information about the IAM Identity Center instance.

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

    The ARN of the Identity Center instance under which the operation will be executed. For more information about ARNs, see Amazon Resource Names (ARNs) and Amazon Web Services Service Namespaces in the Amazon Web Services General Reference.

    *)
  2. identityStoreId : Id.t option;
    (*

    The identifier of the identity store that is connected to the Identity Center instance.

    *)
  3. ownerAccountId : AccountId.t option;
    (*

    The Amazon Web Services account ID number of the owner of the Identity Center instance.

    *)
  4. name : NameType.t option;
    (*

    The name of the Identity Center instance.

    *)
  5. createdDate : Date.t option;
    (*

    The date and time that the Identity Center instance was created.

    *)
  6. status : InstanceStatus.t option;
    (*

    The current status of this Identity Center instance.

    *)
  7. statusReason : Reason.t option;
    (*

    Provides additional context about the current status of the IAM Identity Center instance. This field is particularly useful when an instance is in a non-ACTIVE state, such as CREATE_FAILED. When an instance creation fails, this field contains information about the cause, which may include issues with KMS key configuration or insufficient permissions.

    *)
}
Sourceval make : ?instanceArn:??? -> ?identityStoreId:??? -> ?ownerAccountId:??? -> ?name:??? -> ?createdDate:??? -> ?status:??? -> ?statusReason:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of InstanceArn.t | `Timestamp of Date.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