Module Values.AssetInstanceSource

An Amazon EC2 instance.

Sourcetype nonrec t = {
  1. instanceId : InstanceId.t option;
    (*

    The ID of the instance.

    *)
  2. instanceType : OutpostInstanceType.t option;
    (*

    The type of instance.

    *)
  3. assetId : AssetId.t option;
    (*

    The ID of the asset. An Outpost asset can be a single server within an Outposts rack or an Outposts server configuration.

    *)
  4. accountId : AccountId.t option;
  5. awsServiceName : AWSServiceName.t option;
    (*

    The Amazon Web Services service name of the instance.

    *)
}
Sourceval make : ?instanceId:??? -> ?instanceType:??? -> ?assetId:??? -> ?accountId:??? -> ?awsServiceName:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of InstanceId.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