Module Values.InstanceInfoSource

Information about an on-premises instance.

Sourcetype nonrec t = {
  1. instanceName : InstanceName.t option;
    (*

    The name of the on-premises instance.

    *)
  2. iamSessionArn : IamSessionArn.t option;
    (*

    The ARN of the IAM session associated with the on-premises instance.

    *)
  3. iamUserArn : IamUserArn.t option;
    (*

    The user ARN associated with the on-premises instance.

    *)
  4. instanceArn : InstanceArn.t option;
    (*

    The ARN of the on-premises instance.

    *)
  5. registerTime : Timestamp.t option;
    (*

    The time at which the on-premises instance was registered.

    *)
  6. deregisterTime : Timestamp.t option;
    (*

    If the on-premises instance was deregistered, the time at which the on-premises instance was deregistered.

    *)
  7. tags : TagList.t option;
    (*

    The tags currently associated with the on-premises instance.

    *)
}
Sourceval make : ?instanceName:??? -> ?iamSessionArn:??? -> ?iamUserArn:??? -> ?instanceArn:??? -> ?registerTime:??? -> ?deregisterTime:??? -> ?tags:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of Key.t ]) list ] list | `String of InstanceName.t | `Timestamp of Timestamp.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