Module Values.FarmSummarySource

The summary of details for a farm.

Sourcetype nonrec t = {
  1. farmId : FarmId.t option;
    (*

    The farm ID.

    *)
  2. displayName : ResourceName.t option;
    (*

    The display name of the farm. This field can store any content. Escape or encode this content before displaying it on a webpage or any other system that might interpret the content of this field.

    *)
  3. kmsKeyArn : KmsKeyArn.t option;
    (*

    The ARN for the KMS key.

    *)
  4. createdAt : CreatedAt.t option;
    (*

    The date and time the resource was created.

    *)
  5. createdBy : CreatedBy.t option;
    (*

    The user or system that created this resource.

    *)
  6. updatedAt : UpdatedAt.t option;
    (*

    The date and time the resource was updated.

    *)
  7. updatedBy : UpdatedBy.t option;
    (*

    The user or system that updated this resource.

    *)
}
Sourceval make : ?farmId:??? -> ?displayName:??? -> ?kmsKeyArn:??? -> ?createdAt:??? -> ?createdBy:??? -> ?updatedAt:??? -> ?updatedBy:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of FarmId.t | `Timestamp of CreatedAt.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